// Artisan Support Transactions (local-business-and-artisan-support-app) v1 — Prisma seed
// Synthetic sample data, CC0-1.0. Generated deterministically; re-running the
// generator with the same spec and seed reproduces this file exactly.
//
// Delegates are named after the tables (prisma.transactions), which assumes models
// mapped to those table names. Rename the delegates if your models differ.
import { PrismaClient } from '@prisma/client';

const prisma = new PrismaClient();

async function main() {
    await prisma.transactions.createMany({
        data: [
            { id: 1, customer_name: "Hannah Nguyen", artisan_name: "Paula Wright", transaction_type: "order", transaction_date: new Date("2023-11-03T12:22:28Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 2, customer_name: "Kai Schneider", artisan_name: "Uma Martin", transaction_type: "order", transaction_date: new Date("2022-07-12T16:13:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 3, customer_name: "Ben Kumar", artisan_name: "Jade Becker", transaction_type: "event", transaction_date: new Date("2022-04-17T16:18:13Z"), amount: "157.56", loyalty_status: "new", workshop_attendance: null },
            { id: 4, customer_name: "Mohamed Kowalski", artisan_name: "Ibrahim Cruz", transaction_type: "order", transaction_date: new Date("2022-10-29T17:25:10Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 5, customer_name: "Mila Schneider", artisan_name: "Ivan Smith", transaction_type: "workshop", transaction_date: new Date("2023-11-27T22:16:42Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 6, customer_name: "Maja Fischer", artisan_name: "Maria Walker", transaction_type: "order", transaction_date: new Date("2023-03-18T22:31:36Z"), amount: "52.99", loyalty_status: "new", workshop_attendance: null },
            { id: 7, customer_name: "Deniz Pereira", artisan_name: "Emma Smith", transaction_type: "order", transaction_date: new Date("2022-03-05T18:08:31Z"), amount: "19.39", loyalty_status: "new", workshop_attendance: null },
            { id: 8, customer_name: "Mia Johnson", artisan_name: "Jack Hassan", transaction_type: "order", transaction_date: new Date("2022-12-13T23:48:18Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 9, customer_name: "Isaac Park", artisan_name: "Selin Schmidt", transaction_type: "event", transaction_date: new Date("2023-02-04T18:09:58Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 10, customer_name: "Mei Meyer", artisan_name: "Maya Fischer", transaction_type: "order", transaction_date: new Date("2022-12-13T19:34:10Z"), amount: "116.00", loyalty_status: "new", workshop_attendance: null },
            { id: 11, customer_name: "Ana Weber", artisan_name: "Nadia Schneider", transaction_type: "order", transaction_date: new Date("2022-12-16T12:42:18Z"), amount: "71.30", loyalty_status: "new", workshop_attendance: null },
            { id: 12, customer_name: "James Adams", artisan_name: "Andre Cruz", transaction_type: "event", transaction_date: new Date("2022-05-29T13:40:36Z"), amount: "143.06", loyalty_status: "new", workshop_attendance: null },
            { id: 13, customer_name: "Maria Castro", artisan_name: "Yusuf Young", transaction_type: "event", transaction_date: new Date("2023-05-15T17:07:07Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 14, customer_name: "Laura Schmidt", artisan_name: "Theo Fischer", transaction_type: "order", transaction_date: new Date("2022-07-09T18:52:32Z"), amount: "10.01", loyalty_status: "new", workshop_attendance: null },
            { id: 15, customer_name: "Nadia Wright", artisan_name: "Daniel Flores", transaction_type: "workshop", transaction_date: new Date("2023-02-09T21:07:13Z"), amount: "45.66", loyalty_status: "new", workshop_attendance: false },
            { id: 16, customer_name: "Sven Wagner", artisan_name: "Nadia Tanaka", transaction_type: "order", transaction_date: new Date("2023-09-18T19:25:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 17, customer_name: "Maria Dubois", artisan_name: "Yara Hoffmann", transaction_type: "order", transaction_date: new Date("2023-10-10T20:36:14Z"), amount: "58.36", loyalty_status: "new", workshop_attendance: null },
            { id: 18, customer_name: "Tomas Young", artisan_name: "Ivan Gomez", transaction_type: "workshop", transaction_date: new Date("2022-08-28T08:34:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 19, customer_name: "Nadia Bennett", artisan_name: "Uma Murphy", transaction_type: "workshop", transaction_date: new Date("2022-01-28T21:14:06Z"), amount: "323.10", loyalty_status: "new", workshop_attendance: false },
            { id: 20, customer_name: "Theo Bennett", artisan_name: "Jade Reyes", transaction_type: "order", transaction_date: new Date("2023-02-15T09:36:32Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 21, customer_name: "Mohamed Yilmaz", artisan_name: "Oscar Schneider", transaction_type: "order", transaction_date: new Date("2022-07-25T19:20:51Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 22, customer_name: "Liam Miller", artisan_name: "Felix Wilson", transaction_type: "order", transaction_date: new Date("2022-06-10T11:13:02Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 23, customer_name: "Marco Diaz", artisan_name: "Paula Diaz", transaction_type: "order", transaction_date: new Date("2022-03-27T11:09:08Z"), amount: "48.54", loyalty_status: "new", workshop_attendance: null },
            { id: 24, customer_name: "Priya Novak", artisan_name: "Leo Vargas", transaction_type: "workshop", transaction_date: new Date("2023-07-04T17:50:42Z"), amount: "474.12", loyalty_status: "new", workshop_attendance: false },
            { id: 25, customer_name: "Noah Wagner", artisan_name: "Tariq Moreau", transaction_type: "event", transaction_date: new Date("2023-05-17T14:20:42Z"), amount: "113.36", loyalty_status: "new", workshop_attendance: null },
            { id: 26, customer_name: "Carla Schneider", artisan_name: "Paula Carter", transaction_type: "event", transaction_date: new Date("2022-08-28T21:57:07Z"), amount: "10.02", loyalty_status: "new", workshop_attendance: null },
            { id: 27, customer_name: "Daniel Meyer", artisan_name: "Lucas Bennett", transaction_type: "workshop", transaction_date: new Date("2022-02-05T09:25:10Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 28, customer_name: "Ivan Demir", artisan_name: "Ines Kaya", transaction_type: "workshop", transaction_date: new Date("2022-10-07T20:10:19Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 29, customer_name: "Jonas Schmidt", artisan_name: "Ravi Demir", transaction_type: "order", transaction_date: new Date("2023-06-11T18:02:47Z"), amount: "147.71", loyalty_status: "new", workshop_attendance: null },
            { id: 30, customer_name: "Karim Smith", artisan_name: "Sara Bennett", transaction_type: "workshop", transaction_date: new Date("2023-12-05T08:03:22Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 31, customer_name: "Ethan Larsen", artisan_name: "Ivan Torres", transaction_type: "order", transaction_date: new Date("2023-05-22T09:05:11Z"), amount: "92.05", loyalty_status: "new", workshop_attendance: null },
            { id: 32, customer_name: "Sven Reyes", artisan_name: "Hannah Lopez", transaction_type: "event", transaction_date: new Date("2022-08-11T08:45:47Z"), amount: "106.58", loyalty_status: "new", workshop_attendance: null },
            { id: 33, customer_name: "Daniel Lee", artisan_name: "Maja Tanaka", transaction_type: "order", transaction_date: new Date("2023-12-05T18:09:50Z"), amount: "22.64", loyalty_status: "new", workshop_attendance: null },
            { id: 34, customer_name: "Deniz Garcia", artisan_name: "Hana Fischer", transaction_type: "workshop", transaction_date: new Date("2023-05-16T14:25:11Z"), amount: "243.06", loyalty_status: "new", workshop_attendance: false },
            { id: 35, customer_name: "Hugo Vargas", artisan_name: "Ana Hansen", transaction_type: "order", transaction_date: new Date("2022-10-09T18:41:31Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 36, customer_name: "Paula Andersen", artisan_name: "Alice Oliveira", transaction_type: "order", transaction_date: new Date("2022-10-17T22:30:55Z"), amount: "321.83", loyalty_status: "new", workshop_attendance: null },
            { id: 37, customer_name: "Rosa Weber", artisan_name: "Mei Sousa", transaction_type: "order", transaction_date: new Date("2022-10-08T11:56:18Z"), amount: "103.15", loyalty_status: "new", workshop_attendance: null },
            { id: 38, customer_name: "Isaac Hoffmann", artisan_name: "Ivan Bauer", transaction_type: "order", transaction_date: new Date("2023-06-27T16:11:31Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 39, customer_name: "Arjun Larsen", artisan_name: "Tomas Martin", transaction_type: "order", transaction_date: new Date("2023-09-25T18:55:16Z"), amount: "10.01", loyalty_status: "new", workshop_attendance: null },
            { id: 40, customer_name: "Mei Nguyen", artisan_name: "Mei Brown", transaction_type: "order", transaction_date: new Date("2023-08-03T16:32:23Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 41, customer_name: "Ines Costa", artisan_name: "Daniel Gupta", transaction_type: "order", transaction_date: new Date("2022-07-20T21:37:39Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 42, customer_name: "Lina Miller", artisan_name: "Yusuf Schneider", transaction_type: "workshop", transaction_date: new Date("2022-09-27T10:05:52Z"), amount: "363.18", loyalty_status: "new", workshop_attendance: false },
            { id: 43, customer_name: "Alice Dubois", artisan_name: "Mei Khan", transaction_type: "order", transaction_date: new Date("2022-10-19T13:21:50Z"), amount: "192.40", loyalty_status: "new", workshop_attendance: null },
            { id: 44, customer_name: "Ivan Weber", artisan_name: "Maria Khan", transaction_type: "order", transaction_date: new Date("2023-08-18T18:13:40Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 45, customer_name: "Leo Jensen", artisan_name: "Karim Shah", transaction_type: "order", transaction_date: new Date("2022-08-14T20:09:48Z"), amount: "10.87", loyalty_status: "new", workshop_attendance: null },
            { id: 46, customer_name: "Sven Ahmed", artisan_name: "Ethan Larsen", transaction_type: "event", transaction_date: new Date("2022-03-18T20:16:34Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 47, customer_name: "Andre Becker", artisan_name: "Yusuf Hansen", transaction_type: "order", transaction_date: new Date("2022-02-21T08:59:02Z"), amount: "322.44", loyalty_status: "new", workshop_attendance: null },
            { id: 48, customer_name: "Chen Hoffmann", artisan_name: "Jack Evans", transaction_type: "workshop", transaction_date: new Date("2022-04-28T18:34:42Z"), amount: "20.92", loyalty_status: "new", workshop_attendance: false },
            { id: 49, customer_name: "Amir Meyer", artisan_name: "Tariq Schmidt", transaction_type: "order", transaction_date: new Date("2022-04-30T16:09:14Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 50, customer_name: "Amir Castro", artisan_name: "Lena Kumar", transaction_type: "order", transaction_date: new Date("2022-08-14T09:15:15Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 51, customer_name: "Jonas Schmidt", artisan_name: "Chen Vargas", transaction_type: "workshop", transaction_date: new Date("2022-07-11T20:32:54Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 52, customer_name: "Ivan Carter", artisan_name: "Tariq Khan", transaction_type: "event", transaction_date: new Date("2023-03-09T18:33:14Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 53, customer_name: "Mohamed Hansen", artisan_name: "Jade Andersen", transaction_type: "workshop", transaction_date: new Date("2022-09-11T18:59:37Z"), amount: "155.51", loyalty_status: "new", workshop_attendance: false },
            { id: 54, customer_name: "Sven Andersen", artisan_name: "Grace Evans", transaction_type: "event", transaction_date: new Date("2022-11-26T16:42:28Z"), amount: "23.84", loyalty_status: "new", workshop_attendance: null },
            { id: 55, customer_name: "Ruby Sousa", artisan_name: "Zoe Vargas", transaction_type: "workshop", transaction_date: new Date("2022-10-07T12:07:12Z"), amount: "157.27", loyalty_status: "new", workshop_attendance: false },
            { id: 56, customer_name: "Sam Becker", artisan_name: "Ravi Castro", transaction_type: "workshop", transaction_date: new Date("2022-03-25T09:26:26Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 57, customer_name: "David Novak", artisan_name: "Deniz Martin", transaction_type: "workshop", transaction_date: new Date("2022-10-31T18:32:37Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 58, customer_name: "Marco Evans", artisan_name: "James Larsen", transaction_type: "order", transaction_date: new Date("2022-05-14T13:15:26Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 59, customer_name: "Tariq Clark", artisan_name: "Amir Kumar", transaction_type: "order", transaction_date: new Date("2022-06-09T08:23:09Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 60, customer_name: "Sara Hoffmann", artisan_name: "Omar Wright", transaction_type: "workshop", transaction_date: new Date("2022-02-11T09:44:59Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 61, customer_name: "Yusuf Klein", artisan_name: "Maja Kumar", transaction_type: "order", transaction_date: new Date("2022-02-08T01:35:50Z"), amount: "33.36", loyalty_status: "new", workshop_attendance: null },
            { id: 62, customer_name: "Yara Becker", artisan_name: "Ruby Moreau", transaction_type: "order", transaction_date: new Date("2022-08-18T11:21:11Z"), amount: "293.74", loyalty_status: "new", workshop_attendance: null },
            { id: 63, customer_name: "Mila Baker", artisan_name: "Arjun Kumar", transaction_type: "event", transaction_date: new Date("2022-09-26T17:59:56Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 64, customer_name: "Andre Martin", artisan_name: "Lina Diaz", transaction_type: "order", transaction_date: new Date("2022-01-08T09:39:01Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 65, customer_name: "Maya Hughes", artisan_name: "Omar Dubois", transaction_type: "order", transaction_date: new Date("2022-03-26T20:40:52Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 66, customer_name: "Uma Young", artisan_name: "Paula Clark", transaction_type: "order", transaction_date: new Date("2022-06-12T19:45:39Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 67, customer_name: "Zara Hansen", artisan_name: "Deniz Shah", transaction_type: "order", transaction_date: new Date("2023-02-01T14:13:38Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 68, customer_name: "Tomas Vargas", artisan_name: "David Moreau", transaction_type: "workshop", transaction_date: new Date("2023-09-14T09:22:56Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 69, customer_name: "Tomas Novak", artisan_name: "Hugo Weber", transaction_type: "order", transaction_date: new Date("2023-09-19T21:49:52Z"), amount: "295.15", loyalty_status: "new", workshop_attendance: null },
            { id: 70, customer_name: "Ines Castro", artisan_name: "Julia Weber", transaction_type: "workshop", transaction_date: new Date("2022-05-19T06:44:05Z"), amount: "182.56", loyalty_status: "new", workshop_attendance: true },
            { id: 71, customer_name: "Paula Andersen", artisan_name: "Priya Miller", transaction_type: "event", transaction_date: new Date("2023-12-02T21:22:20Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 72, customer_name: "Olivia Lopez", artisan_name: "Oscar Lee", transaction_type: "workshop", transaction_date: new Date("2023-07-30T13:54:17Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 73, customer_name: "Ben Vargas", artisan_name: "Nadia Larsen", transaction_type: "order", transaction_date: new Date("2022-03-28T08:13:46Z"), amount: "378.78", loyalty_status: "new", workshop_attendance: null },
            { id: 74, customer_name: "Alice Jensen", artisan_name: "Wei Wagner", transaction_type: "order", transaction_date: new Date("2023-09-06T19:29:59Z"), amount: "328.19", loyalty_status: "new", workshop_attendance: null },
            { id: 75, customer_name: "Rosa Adams", artisan_name: "Sven Jansen", transaction_type: "order", transaction_date: new Date("2023-03-09T16:44:54Z"), amount: "285.77", loyalty_status: "new", workshop_attendance: null },
            { id: 76, customer_name: "Omar Oliveira", artisan_name: "Ruby Ali", transaction_type: "order", transaction_date: new Date("2023-02-08T09:43:24Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 77, customer_name: "Daniel Demir", artisan_name: "Paula Shah", transaction_type: "order", transaction_date: new Date("2022-03-09T17:22:40Z"), amount: "461.97", loyalty_status: "new", workshop_attendance: null },
            { id: 78, customer_name: "Mei Fischer", artisan_name: "Andre Cruz", transaction_type: "order", transaction_date: new Date("2022-08-04T17:45:31Z"), amount: "448.45", loyalty_status: "new", workshop_attendance: null },
            { id: 79, customer_name: "Daniel Nguyen", artisan_name: "Nadia Flores", transaction_type: "order", transaction_date: new Date("2022-08-26T10:55:14Z"), amount: "215.23", loyalty_status: "new", workshop_attendance: null },
            { id: 80, customer_name: "Liam Kumar", artisan_name: "Pedro Adams", transaction_type: "order", transaction_date: new Date("2022-09-26T08:03:05Z"), amount: "35.08", loyalty_status: "new", workshop_attendance: null },
            { id: 81, customer_name: "Omar Vargas", artisan_name: "Noah Jansen", transaction_type: "workshop", transaction_date: new Date("2022-04-21T19:34:34Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 82, customer_name: "Oscar Hoffmann", artisan_name: "Noah Schmidt", transaction_type: "order", transaction_date: new Date("2022-05-07T15:05:06Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 83, customer_name: "Priya Rossi", artisan_name: "Chloe Walker", transaction_type: "order", transaction_date: new Date("2022-03-08T13:30:11Z"), amount: "438.35", loyalty_status: "new", workshop_attendance: null },
            { id: 84, customer_name: "Mia Johnson", artisan_name: "Tomas Castro", transaction_type: "event", transaction_date: new Date("2023-05-22T16:04:59Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 85, customer_name: "Deniz Costa", artisan_name: "Victor Bauer", transaction_type: "order", transaction_date: new Date("2022-10-10T06:31:22Z"), amount: "279.17", loyalty_status: "new", workshop_attendance: null },
            { id: 86, customer_name: "Ethan Dubois", artisan_name: "Pedro Wagner", transaction_type: "order", transaction_date: new Date("2023-01-31T12:00:40Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 87, customer_name: "David Yilmaz", artisan_name: "Oscar Khan", transaction_type: "workshop", transaction_date: new Date("2022-03-08T17:30:50Z"), amount: "31.98", loyalty_status: "new", workshop_attendance: true },
            { id: 88, customer_name: "Daniel Johnson", artisan_name: "Yusuf Murphy", transaction_type: "order", transaction_date: new Date("2023-11-17T20:03:26Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 89, customer_name: "Mia Lee", artisan_name: "Hana Rossi", transaction_type: "order", transaction_date: new Date("2022-02-22T08:15:46Z"), amount: "65.58", loyalty_status: "new", workshop_attendance: null },
            { id: 90, customer_name: "Liam Kaya", artisan_name: "Liam Carter", transaction_type: "order", transaction_date: new Date("2022-01-24T18:49:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 91, customer_name: "Maria Brown", artisan_name: "Sam Gomez", transaction_type: "workshop", transaction_date: new Date("2023-08-10T01:25:07Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 92, customer_name: "Carlos Lopez", artisan_name: "Sara Hughes", transaction_type: "order", transaction_date: new Date("2022-08-20T16:34:40Z"), amount: "74.01", loyalty_status: "new", workshop_attendance: null },
            { id: 93, customer_name: "Felix Demir", artisan_name: "Wei Wagner", transaction_type: "order", transaction_date: new Date("2023-07-17T14:43:06Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 94, customer_name: "Tariq Patel", artisan_name: "Oscar Sato", transaction_type: "order", transaction_date: new Date("2022-05-19T09:07:12Z"), amount: "448.03", loyalty_status: "new", workshop_attendance: null },
            { id: 95, customer_name: "Jade Martin", artisan_name: "Elena Martin", transaction_type: "event", transaction_date: new Date("2022-11-04T21:06:43Z"), amount: "311.44", loyalty_status: "new", workshop_attendance: null },
            { id: 96, customer_name: "Tariq Kowalski", artisan_name: "Ibrahim Yilmaz", transaction_type: "order", transaction_date: new Date("2023-07-31T15:11:56Z"), amount: "145.96", loyalty_status: "new", workshop_attendance: null },
            { id: 97, customer_name: "Wei Johnson", artisan_name: "Chen Wagner", transaction_type: "order", transaction_date: new Date("2022-07-14T13:04:15Z"), amount: "11.43", loyalty_status: "new", workshop_attendance: null },
            { id: 98, customer_name: "Anna Fischer", artisan_name: "Felix Kim", transaction_type: "order", transaction_date: new Date("2022-05-17T16:45:51Z"), amount: "483.64", loyalty_status: "new", workshop_attendance: null },
            { id: 99, customer_name: "Rosa Moreau", artisan_name: "Paula Garcia", transaction_type: "order", transaction_date: new Date("2023-11-04T22:33:17Z"), amount: "18.35", loyalty_status: "new", workshop_attendance: null },
            { id: 100, customer_name: "Marco Sousa", artisan_name: "Jonas Novak", transaction_type: "order", transaction_date: new Date("2023-04-07T10:02:29Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 101, customer_name: "Ibrahim Hoffmann", artisan_name: "Chloe Smith", transaction_type: "order", transaction_date: new Date("2022-01-04T11:19:13Z"), amount: "214.41", loyalty_status: "new", workshop_attendance: null },
            { id: 102, customer_name: "Isaac Park", artisan_name: "Nadia Johnson", transaction_type: "workshop", transaction_date: new Date("2023-12-31T13:37:04Z"), amount: "28.13", loyalty_status: "new", workshop_attendance: false },
            { id: 103, customer_name: "Carlos Khan", artisan_name: "Wei Ali", transaction_type: "order", transaction_date: new Date("2022-07-14T10:46:52Z"), amount: "64.33", loyalty_status: "new", workshop_attendance: null },
            { id: 104, customer_name: "Uma Sato", artisan_name: "Nour Meyer", transaction_type: "order", transaction_date: new Date("2023-05-07T21:23:48Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 105, customer_name: "Nour Schneider", artisan_name: "Mateo Walker", transaction_type: "order", transaction_date: new Date("2022-04-10T20:49:42Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 106, customer_name: "Mila Cruz", artisan_name: "Pedro Tanaka", transaction_type: "order", transaction_date: new Date("2023-09-05T18:36:57Z"), amount: "59.45", loyalty_status: "new", workshop_attendance: null },
            { id: 107, customer_name: "Fatima Lopez", artisan_name: "Liam Gomez", transaction_type: "order", transaction_date: new Date("2023-10-30T10:48:13Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 108, customer_name: "Alice Wagner", artisan_name: "Kai Cruz", transaction_type: "order", transaction_date: new Date("2022-04-28T17:55:04Z"), amount: "358.87", loyalty_status: "new", workshop_attendance: null },
            { id: 109, customer_name: "Tariq Bauer", artisan_name: "Karim Wright", transaction_type: "order", transaction_date: new Date("2023-11-11T17:30:43Z"), amount: "220.29", loyalty_status: "new", workshop_attendance: null },
            { id: 110, customer_name: "Lena Ruiz", artisan_name: "Julia Ibrahim", transaction_type: "order", transaction_date: new Date("2022-05-08T13:25:00Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 111, customer_name: "Grace Dubois", artisan_name: "Pedro Bauer", transaction_type: "order", transaction_date: new Date("2023-08-02T06:46:28Z"), amount: "385.02", loyalty_status: "new", workshop_attendance: null },
            { id: 112, customer_name: "Priya Larsen", artisan_name: "Ethan Sousa", transaction_type: "order", transaction_date: new Date("2022-10-27T19:06:28Z"), amount: "118.72", loyalty_status: "new", workshop_attendance: null },
            { id: 113, customer_name: "Theo Bennett", artisan_name: "Sam Baker", transaction_type: "workshop", transaction_date: new Date("2023-01-19T09:43:49Z"), amount: "496.80", loyalty_status: "new", workshop_attendance: true },
            { id: 114, customer_name: "Jonas Larsen", artisan_name: "Sven Gomez", transaction_type: "order", transaction_date: new Date("2022-10-05T21:00:20Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 115, customer_name: "Nadia Davis", artisan_name: "Ruby Ahmed", transaction_type: "order", transaction_date: new Date("2023-05-14T07:59:32Z"), amount: "82.61", loyalty_status: "new", workshop_attendance: null },
            { id: 116, customer_name: "Mei Dubois", artisan_name: "Tariq Johnson", transaction_type: "workshop", transaction_date: new Date("2023-10-26T07:53:25Z"), amount: "33.67", loyalty_status: "new", workshop_attendance: false },
            { id: 117, customer_name: "Ethan Sato", artisan_name: "Hannah Reyes", transaction_type: "order", transaction_date: new Date("2022-03-12T19:34:49Z"), amount: "103.45", loyalty_status: "new", workshop_attendance: null },
            { id: 118, customer_name: "Nour Clark", artisan_name: "Ravi Walker", transaction_type: "order", transaction_date: new Date("2023-04-18T12:08:48Z"), amount: "459.71", loyalty_status: "new", workshop_attendance: null },
            { id: 119, customer_name: "Deniz Miller", artisan_name: "Noah Davis", transaction_type: "event", transaction_date: new Date("2023-02-19T21:07:50Z"), amount: "89.82", loyalty_status: "new", workshop_attendance: null },
            { id: 120, customer_name: "Hugo Walker", artisan_name: "Lena Dubois", transaction_type: "workshop", transaction_date: new Date("2022-04-16T18:50:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 121, customer_name: "Theo Andersen", artisan_name: "Paula Garcia", transaction_type: "workshop", transaction_date: new Date("2022-06-24T09:04:20Z"), amount: "466.38", loyalty_status: "new", workshop_attendance: false },
            { id: 122, customer_name: "Elif Wright", artisan_name: "Ethan Ibrahim", transaction_type: "order", transaction_date: new Date("2022-01-14T07:52:47Z"), amount: "124.30", loyalty_status: "new", workshop_attendance: null },
            { id: 123, customer_name: "Deniz Carter", artisan_name: "Tomas Garcia", transaction_type: "event", transaction_date: new Date("2023-06-06T10:55:08Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 124, customer_name: "Mei Carter", artisan_name: "Ethan Klein", transaction_type: "order", transaction_date: new Date("2022-01-09T15:05:23Z"), amount: "202.25", loyalty_status: "new", workshop_attendance: null },
            { id: 125, customer_name: "Ben Ahmed", artisan_name: "Ravi Wilson", transaction_type: "order", transaction_date: new Date("2023-05-27T19:47:23Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 126, customer_name: "Liam Murphy", artisan_name: "Carlos Weber", transaction_type: "order", transaction_date: new Date("2023-02-12T19:10:24Z"), amount: "20.83", loyalty_status: "new", workshop_attendance: null },
            { id: 127, customer_name: "Mohamed Cruz", artisan_name: "Julia Hansen", transaction_type: "workshop", transaction_date: new Date("2023-04-14T15:49:42Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 128, customer_name: "Nina Hughes", artisan_name: "Olivia Hoffmann", transaction_type: "order", transaction_date: new Date("2023-03-23T16:52:51Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 129, customer_name: "Felix Smith", artisan_name: "Nadia Kowalski", transaction_type: "order", transaction_date: new Date("2022-11-21T17:02:49Z"), amount: "402.93", loyalty_status: "new", workshop_attendance: null },
            { id: 130, customer_name: "Ana Shah", artisan_name: "Hugo Weber", transaction_type: "order", transaction_date: new Date("2023-07-28T15:26:03Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 131, customer_name: "Maya Young", artisan_name: "Mia Miller", transaction_type: "workshop", transaction_date: new Date("2022-05-31T16:22:29Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 132, customer_name: "Zoe Sato", artisan_name: "Ben Martin", transaction_type: "order", transaction_date: new Date("2022-09-15T14:37:53Z"), amount: "22.32", loyalty_status: "new", workshop_attendance: null },
            { id: 133, customer_name: "Emma Lopez", artisan_name: "Ines Patel", transaction_type: "workshop", transaction_date: new Date("2023-12-16T13:42:50Z"), amount: "97.04", loyalty_status: "new", workshop_attendance: false },
            { id: 134, customer_name: "Fatima Nguyen", artisan_name: "Oscar Adams", transaction_type: "order", transaction_date: new Date("2022-11-22T15:50:22Z"), amount: "10.20", loyalty_status: "new", workshop_attendance: null },
            { id: 135, customer_name: "Anna Dubois", artisan_name: "Ana Klein", transaction_type: "order", transaction_date: new Date("2023-10-12T10:39:45Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 136, customer_name: "Zoe Kowalski", artisan_name: "Andre Adams", transaction_type: "order", transaction_date: new Date("2023-11-15T12:41:28Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 137, customer_name: "Grace Davis", artisan_name: "Sofia Evans", transaction_type: "workshop", transaction_date: new Date("2022-09-12T08:55:54Z"), amount: "459.13", loyalty_status: "new", workshop_attendance: true },
            { id: 138, customer_name: "Mohamed Lopez", artisan_name: "Ines Torres", transaction_type: "event", transaction_date: new Date("2022-05-03T20:44:23Z"), amount: "431.27", loyalty_status: "new", workshop_attendance: null },
            { id: 139, customer_name: "Tariq Jansen", artisan_name: "Ethan Cruz", transaction_type: "workshop", transaction_date: new Date("2022-07-04T00:26:53Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 140, customer_name: "Nadia Reyes", artisan_name: "Omar Taylor", transaction_type: "order", transaction_date: new Date("2023-10-03T20:38:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 141, customer_name: "Arjun Smith", artisan_name: "Lucas Garcia", transaction_type: "order", transaction_date: new Date("2022-07-31T09:43:24Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 142, customer_name: "Chen Brown", artisan_name: "Sofia Schneider", transaction_type: "workshop", transaction_date: new Date("2023-10-21T21:34:43Z"), amount: "49.97", loyalty_status: "new", workshop_attendance: false },
            { id: 143, customer_name: "Ibrahim Kumar", artisan_name: "Lena Sousa", transaction_type: "workshop", transaction_date: new Date("2023-06-20T06:02:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 144, customer_name: "Grace Smith", artisan_name: "Sam Jensen", transaction_type: "workshop", transaction_date: new Date("2022-01-22T06:12:39Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 145, customer_name: "Ivan Gomez", artisan_name: "Nina Kumar", transaction_type: "order", transaction_date: new Date("2023-08-22T12:28:50Z"), amount: "20.59", loyalty_status: "new", workshop_attendance: null },
            { id: 146, customer_name: "Ines Bauer", artisan_name: "Maja Park", transaction_type: "order", transaction_date: new Date("2022-03-10T15:23:44Z"), amount: "53.09", loyalty_status: "new", workshop_attendance: null },
            { id: 147, customer_name: "Elif Yilmaz", artisan_name: "Mohamed Ruiz", transaction_type: "order", transaction_date: new Date("2023-01-24T19:50:26Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 148, customer_name: "Rosa Hughes", artisan_name: "Amir Johnson", transaction_type: "order", transaction_date: new Date("2023-10-14T13:12:41Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 149, customer_name: "Alice Almeida", artisan_name: "Julia Vargas", transaction_type: "order", transaction_date: new Date("2023-11-07T07:02:54Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 150, customer_name: "Amir Torres", artisan_name: "Jonas Murphy", transaction_type: "event", transaction_date: new Date("2022-01-21T20:39:51Z"), amount: "306.29", loyalty_status: "new", workshop_attendance: null },
            { id: 151, customer_name: "James Yilmaz", artisan_name: "Anna Almeida", transaction_type: "order", transaction_date: new Date("2022-06-27T19:29:32Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 152, customer_name: "Lena Hassan", artisan_name: "Maya Adams", transaction_type: "order", transaction_date: new Date("2023-10-20T20:27:45Z"), amount: "136.35", loyalty_status: "new", workshop_attendance: null },
            { id: 153, customer_name: "Pedro Baker", artisan_name: "Ben Castro", transaction_type: "order", transaction_date: new Date("2022-08-25T22:17:12Z"), amount: "359.83", loyalty_status: "new", workshop_attendance: null },
            { id: 154, customer_name: "Mila Demir", artisan_name: "Nour Kumar", transaction_type: "workshop", transaction_date: new Date("2023-01-01T12:49:25Z"), amount: "62.89", loyalty_status: "new", workshop_attendance: false },
            { id: 155, customer_name: "Fatima Taylor", artisan_name: "Lina Martin", transaction_type: "workshop", transaction_date: new Date("2023-08-24T20:27:40Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 156, customer_name: "Alice Chen", artisan_name: "Sara Hughes", transaction_type: "order", transaction_date: new Date("2022-10-17T23:36:58Z"), amount: "268.00", loyalty_status: "new", workshop_attendance: null },
            { id: 157, customer_name: "Daniel Davis", artisan_name: "Grace Castro", transaction_type: "workshop", transaction_date: new Date("2022-08-23T21:24:07Z"), amount: "17.20", loyalty_status: "new", workshop_attendance: false },
            { id: 158, customer_name: "Emma Kumar", artisan_name: "Karim Clark", transaction_type: "order", transaction_date: new Date("2022-04-04T09:40:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 159, customer_name: "James Kaya", artisan_name: "Ines Taylor", transaction_type: "event", transaction_date: new Date("2022-12-04T08:25:10Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 160, customer_name: "Nour Diaz", artisan_name: "Andre Larsen", transaction_type: "workshop", transaction_date: new Date("2022-05-11T13:47:24Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 161, customer_name: "James Schmidt", artisan_name: "Rosa Wagner", transaction_type: "workshop", transaction_date: new Date("2023-12-05T10:13:29Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 162, customer_name: "Uma Torres", artisan_name: "Carla Fischer", transaction_type: "workshop", transaction_date: new Date("2022-04-12T20:55:20Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 163, customer_name: "Kai Ruiz", artisan_name: "Jade Yilmaz", transaction_type: "workshop", transaction_date: new Date("2023-07-20T17:23:23Z"), amount: "175.36", loyalty_status: "new", workshop_attendance: false },
            { id: 164, customer_name: "Tomas Hoffmann", artisan_name: "Liam Costa", transaction_type: "workshop", transaction_date: new Date("2022-03-05T18:49:58Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 165, customer_name: "Jade Vargas", artisan_name: "Mohamed Novak", transaction_type: "order", transaction_date: new Date("2022-11-01T12:21:33Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 166, customer_name: "Sam Hughes", artisan_name: "Andre Zhang", transaction_type: "workshop", transaction_date: new Date("2023-07-29T21:09:08Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 167, customer_name: "Hana Jansen", artisan_name: "Selin Hassan", transaction_type: "order", transaction_date: new Date("2022-08-02T08:43:16Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 168, customer_name: "Maya Lee", artisan_name: "Lucas Yilmaz", transaction_type: "order", transaction_date: new Date("2022-08-30T14:04:06Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 169, customer_name: "Marco Demir", artisan_name: "Lucas Kim", transaction_type: "order", transaction_date: new Date("2022-04-10T16:29:06Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 170, customer_name: "Lina Miller", artisan_name: "Maya Kaya", transaction_type: "workshop", transaction_date: new Date("2022-07-14T21:32:44Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 171, customer_name: "Carlos Diaz", artisan_name: "Hana Ruiz", transaction_type: "order", transaction_date: new Date("2023-05-21T09:52:18Z"), amount: "48.36", loyalty_status: "new", workshop_attendance: null },
            { id: 172, customer_name: "Deniz Kumar", artisan_name: "Olivia Schneider", transaction_type: "order", transaction_date: new Date("2023-07-04T13:17:54Z"), amount: "180.52", loyalty_status: "new", workshop_attendance: null },
            { id: 173, customer_name: "Elif Kaya", artisan_name: "Omar Patel", transaction_type: "order", transaction_date: new Date("2023-03-24T10:40:04Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 174, customer_name: "Grace Johnson", artisan_name: "Emma Ruiz", transaction_type: "order", transaction_date: new Date("2022-11-11T17:02:39Z"), amount: "249.69", loyalty_status: "new", workshop_attendance: null },
            { id: 175, customer_name: "Lena Singh", artisan_name: "Oscar Evans", transaction_type: "order", transaction_date: new Date("2023-07-31T22:45:28Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 176, customer_name: "Alice Silva", artisan_name: "Ravi Baker", transaction_type: "order", transaction_date: new Date("2023-06-01T20:49:53Z"), amount: "62.45", loyalty_status: "new", workshop_attendance: null },
            { id: 177, customer_name: "James Chen", artisan_name: "Carlos Nakamura", transaction_type: "order", transaction_date: new Date("2023-10-10T12:10:23Z"), amount: "169.16", loyalty_status: "new", workshop_attendance: null },
            { id: 178, customer_name: "Amir Patel", artisan_name: "Selin Bennett", transaction_type: "event", transaction_date: new Date("2022-07-12T11:54:07Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 179, customer_name: "Sam Mendes", artisan_name: "Amir Patel", transaction_type: "workshop", transaction_date: new Date("2022-05-02T15:55:42Z"), amount: "279.12", loyalty_status: "new", workshop_attendance: false },
            { id: 180, customer_name: "Hannah Meyer", artisan_name: "Hannah Taylor", transaction_type: "order", transaction_date: new Date("2023-10-11T22:35:07Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 181, customer_name: "Tomas Patel", artisan_name: "Chen Vargas", transaction_type: "order", transaction_date: new Date("2023-11-29T12:16:39Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 182, customer_name: "Ivan Fischer", artisan_name: "Noah Almeida", transaction_type: "order", transaction_date: new Date("2022-01-01T09:18:28Z"), amount: "233.80", loyalty_status: "new", workshop_attendance: null },
            { id: 183, customer_name: "Rafael Chen", artisan_name: "Daniel Klein", transaction_type: "order", transaction_date: new Date("2023-09-12T11:03:17Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 184, customer_name: "Julia Singh", artisan_name: "Isaac Carter", transaction_type: "workshop", transaction_date: new Date("2023-02-13T18:47:06Z"), amount: "132.30", loyalty_status: "new", workshop_attendance: true },
            { id: 185, customer_name: "Diego Flores", artisan_name: "Anna Wang", transaction_type: "workshop", transaction_date: new Date("2022-01-14T14:22:15Z"), amount: "97.60", loyalty_status: "new", workshop_attendance: true },
            { id: 186, customer_name: "Olivia Larsen", artisan_name: "Jack Hoffmann", transaction_type: "event", transaction_date: new Date("2023-12-10T13:43:51Z"), amount: "338.45", loyalty_status: "new", workshop_attendance: null },
            { id: 187, customer_name: "Felix Weber", artisan_name: "Priya Taylor", transaction_type: "workshop", transaction_date: new Date("2023-07-20T19:00:35Z"), amount: "159.12", loyalty_status: "new", workshop_attendance: false },
            { id: 188, customer_name: "Rosa Davis", artisan_name: "Isaac Almeida", transaction_type: "order", transaction_date: new Date("2022-04-23T09:59:14Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 189, customer_name: "Mei Hassan", artisan_name: "Julia Wright", transaction_type: "order", transaction_date: new Date("2023-11-10T18:10:51Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 190, customer_name: "Ibrahim Ruiz", artisan_name: "Andre Davis", transaction_type: "order", transaction_date: new Date("2023-10-21T17:28:42Z"), amount: "196.66", loyalty_status: "new", workshop_attendance: null },
            { id: 191, customer_name: "Daniel Castro", artisan_name: "Isaac Reyes", transaction_type: "order", transaction_date: new Date("2022-03-13T08:01:50Z"), amount: "80.67", loyalty_status: "new", workshop_attendance: null },
            { id: 192, customer_name: "Karim Schmidt", artisan_name: "Sven Hansen", transaction_type: "order", transaction_date: new Date("2022-09-12T20:43:06Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 193, customer_name: "Yusuf Wang", artisan_name: "Jonas Yilmaz", transaction_type: "order", transaction_date: new Date("2023-01-11T10:43:35Z"), amount: "226.93", loyalty_status: "new", workshop_attendance: null },
            { id: 194, customer_name: "Diego Almeida", artisan_name: "Mei Almeida", transaction_type: "order", transaction_date: new Date("2022-06-04T14:13:41Z"), amount: "112.35", loyalty_status: "new", workshop_attendance: null },
            { id: 195, customer_name: "Marco Diaz", artisan_name: "Ana Taylor", transaction_type: "order", transaction_date: new Date("2023-03-19T14:12:46Z"), amount: "47.71", loyalty_status: "new", workshop_attendance: null },
            { id: 196, customer_name: "Elif Miller", artisan_name: "Sam Nakamura", transaction_type: "order", transaction_date: new Date("2022-11-20T23:46:27Z"), amount: "435.19", loyalty_status: "new", workshop_attendance: null },
            { id: 197, customer_name: "Kai Chen", artisan_name: "Jade Khan", transaction_type: "workshop", transaction_date: new Date("2023-02-28T14:07:55Z"), amount: "248.99", loyalty_status: "new", workshop_attendance: false },
            { id: 198, customer_name: "James Taylor", artisan_name: "Deniz Vargas", transaction_type: "order", transaction_date: new Date("2023-01-31T21:52:59Z"), amount: "17.56", loyalty_status: "new", workshop_attendance: null },
            { id: 199, customer_name: "Lina Cruz", artisan_name: "Zara Schmidt", transaction_type: "order", transaction_date: new Date("2022-02-27T13:44:07Z"), amount: "206.50", loyalty_status: "new", workshop_attendance: null },
            { id: 200, customer_name: "Tariq Wright", artisan_name: "Leo Hansen", transaction_type: "workshop", transaction_date: new Date("2023-01-29T17:57:24Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 201, customer_name: "Tariq Flores", artisan_name: "Paula Hoffmann", transaction_type: "order", transaction_date: new Date("2023-01-13T06:15:39Z"), amount: "239.26", loyalty_status: "new", workshop_attendance: null },
            { id: 202, customer_name: "Chen Miller", artisan_name: "Anna Young", transaction_type: "workshop", transaction_date: new Date("2022-03-29T11:34:56Z"), amount: "21.50", loyalty_status: "new", workshop_attendance: true },
            { id: 203, customer_name: "Theo Nguyen", artisan_name: "Selin Weber", transaction_type: "order", transaction_date: new Date("2023-06-18T21:41:58Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 204, customer_name: "Yara Diaz", artisan_name: "Oscar Mendes", transaction_type: "workshop", transaction_date: new Date("2023-12-19T06:57:39Z"), amount: "21.95", loyalty_status: "new", workshop_attendance: false },
            { id: 205, customer_name: "Lena Mendes", artisan_name: "Olivia Smith", transaction_type: "order", transaction_date: new Date("2022-01-05T07:20:59Z"), amount: "39.93", loyalty_status: "new", workshop_attendance: null },
            { id: 206, customer_name: "Julia Ahmed", artisan_name: "Mohamed Moreau", transaction_type: "order", transaction_date: new Date("2022-12-09T10:23:58Z"), amount: "13.53", loyalty_status: "new", workshop_attendance: null },
            { id: 207, customer_name: "Amir Tanaka", artisan_name: "Karim Sato", transaction_type: "workshop", transaction_date: new Date("2023-04-11T21:23:15Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 208, customer_name: "Daniel Garcia", artisan_name: "Liam Flores", transaction_type: "order", transaction_date: new Date("2023-04-11T18:29:40Z"), amount: "198.43", loyalty_status: "new", workshop_attendance: null },
            { id: 209, customer_name: "Jonas Schneider", artisan_name: "Carlos Silva", transaction_type: "order", transaction_date: new Date("2022-08-28T18:11:24Z"), amount: "175.73", loyalty_status: "new", workshop_attendance: null },
            { id: 210, customer_name: "Mateo Smith", artisan_name: "Chloe Andersen", transaction_type: "workshop", transaction_date: new Date("2023-09-02T00:00:56Z"), amount: "208.84", loyalty_status: "new", workshop_attendance: false },
            { id: 211, customer_name: "Laura Martin", artisan_name: "Wei Brown", transaction_type: "order", transaction_date: new Date("2023-12-19T13:32:24Z"), amount: "344.32", loyalty_status: "new", workshop_attendance: null },
            { id: 212, customer_name: "Mateo Meyer", artisan_name: "Leo Kumar", transaction_type: "order", transaction_date: new Date("2022-03-13T11:18:36Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 213, customer_name: "Yara Nakamura", artisan_name: "Sara Cruz", transaction_type: "workshop", transaction_date: new Date("2022-06-14T09:25:42Z"), amount: "342.16", loyalty_status: "new", workshop_attendance: false },
            { id: 214, customer_name: "Sofia Lee", artisan_name: "Lena Martin", transaction_type: "order", transaction_date: new Date("2023-07-05T02:50:36Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 215, customer_name: "Karim Murphy", artisan_name: "Selin Kim", transaction_type: "order", transaction_date: new Date("2023-02-02T20:07:35Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 216, customer_name: "Julia Moreau", artisan_name: "Priya Demir", transaction_type: "event", transaction_date: new Date("2022-03-31T17:16:34Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 217, customer_name: "Sam Zhang", artisan_name: "Maya Miller", transaction_type: "order", transaction_date: new Date("2022-10-30T16:01:58Z"), amount: "455.68", loyalty_status: "new", workshop_attendance: null },
            { id: 218, customer_name: "Elif Meyer", artisan_name: "Marco Sato", transaction_type: "event", transaction_date: new Date("2023-01-27T14:02:31Z"), amount: "196.27", loyalty_status: "new", workshop_attendance: null },
            { id: 219, customer_name: "Rosa Rossi", artisan_name: "Lucas Hughes", transaction_type: "order", transaction_date: new Date("2023-06-23T17:56:08Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 220, customer_name: "Tomas Tanaka", artisan_name: "Wei Lee", transaction_type: "order", transaction_date: new Date("2023-07-28T22:40:00Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 221, customer_name: "Andre Martin", artisan_name: "Kai Carter", transaction_type: "order", transaction_date: new Date("2022-01-08T17:58:46Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 222, customer_name: "Mei Murphy", artisan_name: "Elif Chen", transaction_type: "workshop", transaction_date: new Date("2022-04-22T01:11:45Z"), amount: "94.40", loyalty_status: "new", workshop_attendance: true },
            { id: 223, customer_name: "Ivan Patel", artisan_name: "Ibrahim Evans", transaction_type: "workshop", transaction_date: new Date("2023-01-22T18:14:15Z"), amount: "12.34", loyalty_status: "new", workshop_attendance: false },
            { id: 224, customer_name: "Wei Dubois", artisan_name: "Fatima Flores", transaction_type: "order", transaction_date: new Date("2023-02-28T08:59:17Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 225, customer_name: "Theo Almeida", artisan_name: "Zara Hughes", transaction_type: "order", transaction_date: new Date("2023-12-20T21:30:09Z"), amount: "109.73", loyalty_status: "new", workshop_attendance: null },
            { id: 226, customer_name: "Sam Wagner", artisan_name: "Lucas Wilson", transaction_type: "event", transaction_date: new Date("2022-11-19T11:29:45Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 227, customer_name: "Nour Castro", artisan_name: "Laura Kowalski", transaction_type: "order", transaction_date: new Date("2023-12-11T13:19:07Z"), amount: "139.99", loyalty_status: "new", workshop_attendance: null },
            { id: 228, customer_name: "Hannah Hassan", artisan_name: "Liam Tanaka", transaction_type: "order", transaction_date: new Date("2022-08-10T19:46:56Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 229, customer_name: "Alice Ali", artisan_name: "Noah Oliveira", transaction_type: "order", transaction_date: new Date("2022-02-26T17:17:30Z"), amount: "11.17", loyalty_status: "new", workshop_attendance: null },
            { id: 230, customer_name: "Wei Murphy", artisan_name: "Sofia Cruz", transaction_type: "order", transaction_date: new Date("2022-12-08T12:19:11Z"), amount: "202.97", loyalty_status: "new", workshop_attendance: null },
            { id: 231, customer_name: "Elif Chen", artisan_name: "Leo Chen", transaction_type: "event", transaction_date: new Date("2022-07-16T08:10:02Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 232, customer_name: "Hugo Novak", artisan_name: "Daniel Hoffmann", transaction_type: "event", transaction_date: new Date("2022-11-05T14:30:32Z"), amount: "458.44", loyalty_status: "new", workshop_attendance: null },
            { id: 233, customer_name: "Selin Ahmed", artisan_name: "Nadia Nakamura", transaction_type: "workshop", transaction_date: new Date("2022-08-02T19:13:55Z"), amount: "59.40", loyalty_status: "new", workshop_attendance: true },
            { id: 234, customer_name: "Selin Moreau", artisan_name: "Anna Jansen", transaction_type: "workshop", transaction_date: new Date("2023-05-13T16:02:24Z"), amount: "69.31", loyalty_status: "new", workshop_attendance: false },
            { id: 235, customer_name: "Nina Silva", artisan_name: "Fatima Becker", transaction_type: "order", transaction_date: new Date("2023-01-01T21:29:37Z"), amount: "10.25", loyalty_status: "new", workshop_attendance: null },
            { id: 236, customer_name: "Ibrahim Nguyen", artisan_name: "Alice Gomez", transaction_type: "workshop", transaction_date: new Date("2023-07-04T12:14:04Z"), amount: "272.84", loyalty_status: "new", workshop_attendance: false },
            { id: 237, customer_name: "Tomas Mendes", artisan_name: "Daniel Ibrahim", transaction_type: "order", transaction_date: new Date("2023-12-07T18:12:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 238, customer_name: "Pedro Singh", artisan_name: "Nour Brown", transaction_type: "order", transaction_date: new Date("2023-04-08T17:06:39Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 239, customer_name: "Paula Klein", artisan_name: "Nina Taylor", transaction_type: "order", transaction_date: new Date("2022-09-05T10:15:28Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 240, customer_name: "Mei Gomez", artisan_name: "Maja Gomez", transaction_type: "order", transaction_date: new Date("2023-12-20T22:18:52Z"), amount: "17.94", loyalty_status: "new", workshop_attendance: null },
            { id: 241, customer_name: "Maya Wang", artisan_name: "Maja Gomez", transaction_type: "workshop", transaction_date: new Date("2022-10-12T20:16:55Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 242, customer_name: "Rosa Vargas", artisan_name: "Grace Patel", transaction_type: "order", transaction_date: new Date("2023-01-05T15:23:18Z"), amount: "133.56", loyalty_status: "new", workshop_attendance: null },
            { id: 243, customer_name: "Fatima Lee", artisan_name: "Tomas Murphy", transaction_type: "order", transaction_date: new Date("2022-04-02T19:39:08Z"), amount: "31.17", loyalty_status: "new", workshop_attendance: null },
            { id: 244, customer_name: "Omar Kumar", artisan_name: "Daniel Singh", transaction_type: "order", transaction_date: new Date("2022-12-13T13:33:18Z"), amount: "442.97", loyalty_status: "new", workshop_attendance: null },
            { id: 245, customer_name: "Hannah Novak", artisan_name: "Ethan Shah", transaction_type: "event", transaction_date: new Date("2022-01-31T13:36:01Z"), amount: "13.86", loyalty_status: "new", workshop_attendance: null },
            { id: 246, customer_name: "Liam Gomez", artisan_name: "Jack Bennett", transaction_type: "workshop", transaction_date: new Date("2023-02-04T17:24:41Z"), amount: "134.40", loyalty_status: "new", workshop_attendance: false },
            { id: 247, customer_name: "Kai Nguyen", artisan_name: "Jonas Lee", transaction_type: "event", transaction_date: new Date("2022-11-12T11:05:35Z"), amount: "45.55", loyalty_status: "new", workshop_attendance: null },
            { id: 248, customer_name: "Hugo Oliveira", artisan_name: "Ana Ruiz", transaction_type: "order", transaction_date: new Date("2022-12-20T19:09:20Z"), amount: "19.06", loyalty_status: "new", workshop_attendance: null },
            { id: 249, customer_name: "Lucas Kim", artisan_name: "Ibrahim Gupta", transaction_type: "order", transaction_date: new Date("2023-01-20T16:14:00Z"), amount: "55.48", loyalty_status: "new", workshop_attendance: null },
            { id: 250, customer_name: "Theo Silva", artisan_name: "Liam Gomez", transaction_type: "order", transaction_date: new Date("2022-04-15T17:40:48Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 251, customer_name: "Fatima Lopez", artisan_name: "Hana Weber", transaction_type: "order", transaction_date: new Date("2022-07-16T19:32:29Z"), amount: "15.83", loyalty_status: "new", workshop_attendance: null },
            { id: 252, customer_name: "Isaac Shah", artisan_name: "Zara Andersen", transaction_type: "order", transaction_date: new Date("2023-07-26T17:20:51Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 253, customer_name: "David Bauer", artisan_name: "Maria Mendes", transaction_type: "workshop", transaction_date: new Date("2022-05-02T05:24:55Z"), amount: "26.94", loyalty_status: "new", workshop_attendance: true },
            { id: 254, customer_name: "Nina Dubois", artisan_name: "Elif Nakamura", transaction_type: "event", transaction_date: new Date("2022-02-20T13:54:00Z"), amount: "144.61", loyalty_status: "new", workshop_attendance: null },
            { id: 255, customer_name: "Hannah Carter", artisan_name: "Tariq Gupta", transaction_type: "order", transaction_date: new Date("2023-08-07T09:06:19Z"), amount: "78.89", loyalty_status: "new", workshop_attendance: null },
            { id: 256, customer_name: "Zara Kumar", artisan_name: "Zoe Flores", transaction_type: "workshop", transaction_date: new Date("2022-02-10T08:25:38Z"), amount: "48.31", loyalty_status: "new", workshop_attendance: false },
            { id: 257, customer_name: "Hannah Ruiz", artisan_name: "Karim Sato", transaction_type: "workshop", transaction_date: new Date("2022-02-12T19:23:01Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 258, customer_name: "Arjun Torres", artisan_name: "Ana Costa", transaction_type: "order", transaction_date: new Date("2023-09-01T08:37:07Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 259, customer_name: "Nour Hughes", artisan_name: "Mia Wright", transaction_type: "order", transaction_date: new Date("2023-01-22T09:50:45Z"), amount: "342.62", loyalty_status: "new", workshop_attendance: null },
            { id: 260, customer_name: "Jack Garcia", artisan_name: "Laura Martin", transaction_type: "order", transaction_date: new Date("2023-09-30T15:54:36Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 261, customer_name: "Liam Adams", artisan_name: "Diego Wright", transaction_type: "workshop", transaction_date: new Date("2022-11-06T14:14:25Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 262, customer_name: "Selin Reyes", artisan_name: "Elena Ali", transaction_type: "event", transaction_date: new Date("2023-05-09T19:16:24Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 263, customer_name: "Rafael Flores", artisan_name: "Felix Nakamura", transaction_type: "workshop", transaction_date: new Date("2023-05-06T20:16:12Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 264, customer_name: "Rosa Ibrahim", artisan_name: "Jonas Larsen", transaction_type: "order", transaction_date: new Date("2023-12-02T08:04:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 265, customer_name: "Selin Hassan", artisan_name: "Rafael Bennett", transaction_type: "event", transaction_date: new Date("2022-10-24T20:08:09Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 266, customer_name: "Hannah Diaz", artisan_name: "Pedro Lopez", transaction_type: "workshop", transaction_date: new Date("2022-09-28T23:18:47Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 267, customer_name: "Uma Baker", artisan_name: "Marco Murphy", transaction_type: "order", transaction_date: new Date("2022-03-24T16:58:46Z"), amount: "262.41", loyalty_status: "new", workshop_attendance: null },
            { id: 268, customer_name: "Yara Evans", artisan_name: "Leo Kaya", transaction_type: "order", transaction_date: new Date("2023-06-07T13:56:58Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 269, customer_name: "Felix Klein", artisan_name: "Arjun Wagner", transaction_type: "order", transaction_date: new Date("2022-08-31T16:19:39Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 270, customer_name: "Ana Rossi", artisan_name: "Sofia Miller", transaction_type: "workshop", transaction_date: new Date("2023-08-28T09:35:40Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 271, customer_name: "Isaac Davis", artisan_name: "Felix Miller", transaction_type: "order", transaction_date: new Date("2023-12-13T18:55:08Z"), amount: "21.68", loyalty_status: "new", workshop_attendance: null },
            { id: 272, customer_name: "Hugo Wright", artisan_name: "Grace Torres", transaction_type: "event", transaction_date: new Date("2022-06-26T09:03:14Z"), amount: "12.96", loyalty_status: "new", workshop_attendance: null },
            { id: 273, customer_name: "Sven Wright", artisan_name: "Zoe Hughes", transaction_type: "order", transaction_date: new Date("2022-10-10T16:08:34Z"), amount: "155.48", loyalty_status: "new", workshop_attendance: null },
            { id: 274, customer_name: "Grace Ahmed", artisan_name: "Ivan Taylor", transaction_type: "order", transaction_date: new Date("2023-09-12T15:38:57Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 275, customer_name: "Ethan Pereira", artisan_name: "Hana Wilson", transaction_type: "event", transaction_date: new Date("2023-07-10T20:46:16Z"), amount: "107.71", loyalty_status: "new", workshop_attendance: null },
            { id: 276, customer_name: "Ethan Hughes", artisan_name: "Ravi Kumar", transaction_type: "workshop", transaction_date: new Date("2022-09-01T20:05:58Z"), amount: "47.12", loyalty_status: "new", workshop_attendance: false },
            { id: 277, customer_name: "Uma Ahmed", artisan_name: "Lucas Hoffmann", transaction_type: "order", transaction_date: new Date("2023-05-25T10:50:58Z"), amount: "250.92", loyalty_status: "new", workshop_attendance: null },
            { id: 278, customer_name: "Daniel Fischer", artisan_name: "Daniel Wilson", transaction_type: "order", transaction_date: new Date("2023-04-28T23:38:12Z"), amount: "30.83", loyalty_status: "new", workshop_attendance: null },
            { id: 279, customer_name: "Wei Johnson", artisan_name: "Fatima Ibrahim", transaction_type: "order", transaction_date: new Date("2023-05-31T17:59:29Z"), amount: "124.47", loyalty_status: "new", workshop_attendance: null },
            { id: 280, customer_name: "Sara Kim", artisan_name: "Arjun Demir", transaction_type: "workshop", transaction_date: new Date("2023-01-02T22:04:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 281, customer_name: "Grace Young", artisan_name: "Ravi Yilmaz", transaction_type: "order", transaction_date: new Date("2022-10-09T18:10:45Z"), amount: "312.37", loyalty_status: "new", workshop_attendance: null },
            { id: 282, customer_name: "Nadia Gomez", artisan_name: "Liam Tanaka", transaction_type: "order", transaction_date: new Date("2023-08-12T14:56:38Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 283, customer_name: "Ines Brown", artisan_name: "Jonas Mendes", transaction_type: "order", transaction_date: new Date("2023-07-10T09:54:37Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 284, customer_name: "Jack Nakamura", artisan_name: "Ines Kowalski", transaction_type: "order", transaction_date: new Date("2023-09-15T15:18:13Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 285, customer_name: "Emma Johnson", artisan_name: "Paula Singh", transaction_type: "workshop", transaction_date: new Date("2023-05-14T21:00:49Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 286, customer_name: "Mia Wang", artisan_name: "Yara Andersen", transaction_type: "workshop", transaction_date: new Date("2023-04-16T19:33:12Z"), amount: "227.01", loyalty_status: "new", workshop_attendance: false },
            { id: 287, customer_name: "Sven Andersen", artisan_name: "Ethan Patel", transaction_type: "order", transaction_date: new Date("2023-12-26T15:51:35Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 288, customer_name: "James Fischer", artisan_name: "Leo Khan", transaction_type: "order", transaction_date: new Date("2022-09-22T16:44:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 289, customer_name: "Zara Torres", artisan_name: "Jonas Wang", transaction_type: "order", transaction_date: new Date("2022-03-08T22:27:47Z"), amount: "157.39", loyalty_status: "new", workshop_attendance: null },
            { id: 290, customer_name: "Zoe Shah", artisan_name: "Elena Gomez", transaction_type: "order", transaction_date: new Date("2023-09-22T18:41:19Z"), amount: "403.48", loyalty_status: "new", workshop_attendance: null },
            { id: 291, customer_name: "Laura Cruz", artisan_name: "Mei Wilson", transaction_type: "order", transaction_date: new Date("2022-08-01T00:30:12Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 292, customer_name: "Carla Ahmed", artisan_name: "Chen Brown", transaction_type: "workshop", transaction_date: new Date("2023-09-09T19:41:14Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 293, customer_name: "Zara Patel", artisan_name: "Oscar Taylor", transaction_type: "order", transaction_date: new Date("2022-02-11T00:22:04Z"), amount: "10.36", loyalty_status: "new", workshop_attendance: null },
            { id: 294, customer_name: "Mateo Rossi", artisan_name: "Laura Wright", transaction_type: "event", transaction_date: new Date("2022-12-18T08:10:16Z"), amount: "291.35", loyalty_status: "new", workshop_attendance: null },
            { id: 295, customer_name: "Ibrahim Kumar", artisan_name: "Alice Nguyen", transaction_type: "workshop", transaction_date: new Date("2022-12-22T11:47:20Z"), amount: "30.19", loyalty_status: "new", workshop_attendance: true },
            { id: 296, customer_name: "Maria Park", artisan_name: "Maja Garcia", transaction_type: "order", transaction_date: new Date("2022-04-08T09:39:58Z"), amount: "331.51", loyalty_status: "new", workshop_attendance: null },
            { id: 297, customer_name: "Pedro Wagner", artisan_name: "Sofia Vargas", transaction_type: "event", transaction_date: new Date("2023-06-21T12:44:48Z"), amount: "27.05", loyalty_status: "new", workshop_attendance: null },
            { id: 298, customer_name: "Anna Jansen", artisan_name: "Tariq Brown", transaction_type: "order", transaction_date: new Date("2022-10-10T16:53:29Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 299, customer_name: "Ibrahim Ruiz", artisan_name: "Ivan Novak", transaction_type: "order", transaction_date: new Date("2022-07-23T18:22:50Z"), amount: "53.21", loyalty_status: "new", workshop_attendance: null },
            { id: 300, customer_name: "Nour Walker", artisan_name: "Ravi Yilmaz", transaction_type: "order", transaction_date: new Date("2022-04-25T15:42:34Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 301, customer_name: "Anna Bennett", artisan_name: "Tomas Garcia", transaction_type: "order", transaction_date: new Date("2023-10-31T01:22:47Z"), amount: "82.71", loyalty_status: "new", workshop_attendance: null },
            { id: 302, customer_name: "Victor Brown", artisan_name: "Deniz Smith", transaction_type: "workshop", transaction_date: new Date("2023-12-18T21:45:13Z"), amount: "485.68", loyalty_status: "new", workshop_attendance: true },
            { id: 303, customer_name: "Hugo Lopez", artisan_name: "Omar Clark", transaction_type: "order", transaction_date: new Date("2023-10-14T13:57:12Z"), amount: "11.01", loyalty_status: "new", workshop_attendance: null },
            { id: 304, customer_name: "Mohamed Park", artisan_name: "David Lopez", transaction_type: "order", transaction_date: new Date("2022-11-02T13:03:50Z"), amount: "12.02", loyalty_status: "new", workshop_attendance: null },
            { id: 305, customer_name: "Zara Andersen", artisan_name: "Grace Silva", transaction_type: "order", transaction_date: new Date("2023-05-19T19:31:59Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 306, customer_name: "Ravi Gomez", artisan_name: "Chen Ruiz", transaction_type: "order", transaction_date: new Date("2023-11-07T13:45:44Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 307, customer_name: "Jonas Moreau", artisan_name: "Fatima Park", transaction_type: "order", transaction_date: new Date("2023-01-21T14:56:06Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 308, customer_name: "Lena Dubois", artisan_name: "Chloe Wright", transaction_type: "workshop", transaction_date: new Date("2023-11-18T16:13:45Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 309, customer_name: "Kai Larsen", artisan_name: "Hana Dubois", transaction_type: "order", transaction_date: new Date("2023-09-27T20:07:35Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 310, customer_name: "Lena Wang", artisan_name: "Alice Walker", transaction_type: "order", transaction_date: new Date("2022-12-27T00:43:38Z"), amount: "183.78", loyalty_status: "new", workshop_attendance: null },
            { id: 311, customer_name: "Ivan Becker", artisan_name: "Hana Jensen", transaction_type: "order", transaction_date: new Date("2023-05-09T15:53:52Z"), amount: "232.88", loyalty_status: "new", workshop_attendance: null },
            { id: 312, customer_name: "Lucas Ahmed", artisan_name: "Jade Hassan", transaction_type: "order", transaction_date: new Date("2022-12-18T14:00:06Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 313, customer_name: "Elena Khan", artisan_name: "Elena Pereira", transaction_type: "workshop", transaction_date: new Date("2022-03-29T11:21:41Z"), amount: "71.43", loyalty_status: "new", workshop_attendance: false },
            { id: 314, customer_name: "Chen Castro", artisan_name: "Maria Ahmed", transaction_type: "order", transaction_date: new Date("2022-07-03T11:27:44Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 315, customer_name: "Selin Chen", artisan_name: "Ivan Wang", transaction_type: "order", transaction_date: new Date("2022-12-13T13:50:58Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 316, customer_name: "Victor Khan", artisan_name: "Isaac Wang", transaction_type: "order", transaction_date: new Date("2023-02-20T00:50:45Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 317, customer_name: "Maja Reyes", artisan_name: "Sam Costa", transaction_type: "order", transaction_date: new Date("2022-01-10T20:25:45Z"), amount: "35.17", loyalty_status: "new", workshop_attendance: null },
            { id: 318, customer_name: "Zara Carter", artisan_name: "Victor Davis", transaction_type: "workshop", transaction_date: new Date("2022-12-28T13:46:35Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 319, customer_name: "Jade Wang", artisan_name: "James Hassan", transaction_type: "workshop", transaction_date: new Date("2022-03-28T07:44:47Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 320, customer_name: "Kai Silva", artisan_name: "Fatima Schmidt", transaction_type: "workshop", transaction_date: new Date("2022-04-28T08:23:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 321, customer_name: "Arjun Moreau", artisan_name: "Noah Dubois", transaction_type: "workshop", transaction_date: new Date("2022-06-06T17:51:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 322, customer_name: "Sofia Gupta", artisan_name: "Liam Kowalski", transaction_type: "order", transaction_date: new Date("2023-02-08T07:21:24Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 323, customer_name: "Victor Park", artisan_name: "Chloe Wagner", transaction_type: "workshop", transaction_date: new Date("2023-08-28T09:05:19Z"), amount: "191.15", loyalty_status: "new", workshop_attendance: false },
            { id: 324, customer_name: "Rafael Demir", artisan_name: "Nour Patel", transaction_type: "order", transaction_date: new Date("2023-07-06T14:42:37Z"), amount: "469.92", loyalty_status: "new", workshop_attendance: null },
            { id: 325, customer_name: "Karim Mendes", artisan_name: "Zara Baker", transaction_type: "order", transaction_date: new Date("2023-05-14T21:19:02Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 326, customer_name: "Hana Schneider", artisan_name: "Jack Reyes", transaction_type: "order", transaction_date: new Date("2022-05-12T12:20:50Z"), amount: "241.24", loyalty_status: "new", workshop_attendance: null },
            { id: 327, customer_name: "Grace Kumar", artisan_name: "Ivan Larsen", transaction_type: "order", transaction_date: new Date("2022-09-11T20:41:31Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 328, customer_name: "Uma Andersen", artisan_name: "Mia Larsen", transaction_type: "workshop", transaction_date: new Date("2023-12-23T07:25:34Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 329, customer_name: "Oscar Walker", artisan_name: "Nour Evans", transaction_type: "order", transaction_date: new Date("2023-09-28T12:04:13Z"), amount: "101.18", loyalty_status: "new", workshop_attendance: null },
            { id: 330, customer_name: "Omar Garcia", artisan_name: "Sam Schneider", transaction_type: "workshop", transaction_date: new Date("2022-10-06T22:11:35Z"), amount: "354.68", loyalty_status: "new", workshop_attendance: false },
            { id: 331, customer_name: "Felix Silva", artisan_name: "Sara Pereira", transaction_type: "workshop", transaction_date: new Date("2022-04-04T12:31:09Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 332, customer_name: "Deniz Moreau", artisan_name: "Ben Pereira", transaction_type: "order", transaction_date: new Date("2023-09-03T09:09:30Z"), amount: "398.22", loyalty_status: "new", workshop_attendance: null },
            { id: 333, customer_name: "Fatima Ahmed", artisan_name: "Mei Tanaka", transaction_type: "order", transaction_date: new Date("2023-03-08T06:39:15Z"), amount: "38.75", loyalty_status: "new", workshop_attendance: null },
            { id: 334, customer_name: "Carla Johnson", artisan_name: "David Young", transaction_type: "order", transaction_date: new Date("2023-07-21T13:53:10Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 335, customer_name: "Lucas Park", artisan_name: "Rafael Cruz", transaction_type: "order", transaction_date: new Date("2022-07-08T13:24:40Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 336, customer_name: "Nadia Miller", artisan_name: "Nadia Lopez", transaction_type: "order", transaction_date: new Date("2022-06-25T09:51:46Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 337, customer_name: "Arjun Kumar", artisan_name: "Mila Martin", transaction_type: "order", transaction_date: new Date("2023-12-23T11:30:25Z"), amount: "454.29", loyalty_status: "new", workshop_attendance: null },
            { id: 338, customer_name: "Nour Young", artisan_name: "Sven Chen", transaction_type: "order", transaction_date: new Date("2023-01-30T17:34:29Z"), amount: "92.76", loyalty_status: "new", workshop_attendance: null },
            { id: 339, customer_name: "Elif Weber", artisan_name: "Zoe Larsen", transaction_type: "order", transaction_date: new Date("2022-06-16T12:28:58Z"), amount: "243.95", loyalty_status: "new", workshop_attendance: null },
            { id: 340, customer_name: "Rosa Ahmed", artisan_name: "Mohamed Jensen", transaction_type: "order", transaction_date: new Date("2022-02-12T19:42:12Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 341, customer_name: "Deniz Tanaka", artisan_name: "Liam Kowalski", transaction_type: "order", transaction_date: new Date("2022-06-07T19:37:41Z"), amount: "450.29", loyalty_status: "new", workshop_attendance: null },
            { id: 342, customer_name: "Sven Moreau", artisan_name: "Sofia Chen", transaction_type: "order", transaction_date: new Date("2023-03-05T11:51:58Z"), amount: "41.36", loyalty_status: "new", workshop_attendance: null },
            { id: 343, customer_name: "Paula Adams", artisan_name: "Noah Ibrahim", transaction_type: "order", transaction_date: new Date("2022-11-23T15:22:12Z"), amount: "19.27", loyalty_status: "new", workshop_attendance: null },
            { id: 344, customer_name: "Mohamed Diaz", artisan_name: "Sara Tanaka", transaction_type: "order", transaction_date: new Date("2023-03-28T17:43:15Z"), amount: "256.90", loyalty_status: "new", workshop_attendance: null },
            { id: 345, customer_name: "Nour Ahmed", artisan_name: "Carlos Schneider", transaction_type: "order", transaction_date: new Date("2023-08-05T20:31:33Z"), amount: "262.23", loyalty_status: "new", workshop_attendance: null },
            { id: 346, customer_name: "Hugo Diaz", artisan_name: "Nour Adams", transaction_type: "event", transaction_date: new Date("2022-04-26T14:52:48Z"), amount: "280.29", loyalty_status: "new", workshop_attendance: null },
            { id: 347, customer_name: "Carla Chen", artisan_name: "Victor Cruz", transaction_type: "order", transaction_date: new Date("2022-03-05T10:47:44Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 348, customer_name: "Sam Evans", artisan_name: "Emma Silva", transaction_type: "order", transaction_date: new Date("2022-09-01T16:00:49Z"), amount: "439.14", loyalty_status: "new", workshop_attendance: null },
            { id: 349, customer_name: "Mei Fischer", artisan_name: "Hana Cruz", transaction_type: "order", transaction_date: new Date("2022-03-24T22:40:12Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 350, customer_name: "Nina Moreau", artisan_name: "Rosa Zhang", transaction_type: "event", transaction_date: new Date("2022-03-31T22:53:08Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 351, customer_name: "David Vargas", artisan_name: "Sven Ruiz", transaction_type: "order", transaction_date: new Date("2023-06-24T18:07:23Z"), amount: "347.64", loyalty_status: "new", workshop_attendance: null },
            { id: 352, customer_name: "Leo Nakamura", artisan_name: "Ivan Andersen", transaction_type: "order", transaction_date: new Date("2022-04-07T16:07:55Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 353, customer_name: "Liam Flores", artisan_name: "Selin Demir", transaction_type: "workshop", transaction_date: new Date("2023-04-15T17:56:40Z"), amount: null, loyalty_status: "frequent", workshop_attendance: true },
            { id: 354, customer_name: "Olivia Becker", artisan_name: "Ruby Gupta", transaction_type: "order", transaction_date: new Date("2023-01-26T13:55:01Z"), amount: "451.34", loyalty_status: "new", workshop_attendance: null },
            { id: 355, customer_name: "Kai Taylor", artisan_name: "Andre Klein", transaction_type: "workshop", transaction_date: new Date("2022-05-10T18:50:47Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 356, customer_name: "Alice Schmidt", artisan_name: "David Davis", transaction_type: "workshop", transaction_date: new Date("2022-03-07T12:15:43Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 357, customer_name: "Theo Shah", artisan_name: "Rosa Mendes", transaction_type: "order", transaction_date: new Date("2023-10-08T15:45:15Z"), amount: "261.80", loyalty_status: "new", workshop_attendance: null },
            { id: 358, customer_name: "Pedro Gomez", artisan_name: "Nour Martin", transaction_type: "order", transaction_date: new Date("2023-04-13T11:50:42Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 359, customer_name: "Felix Diaz", artisan_name: "Mila Costa", transaction_type: "order", transaction_date: new Date("2023-06-03T20:15:58Z"), amount: "25.98", loyalty_status: "new", workshop_attendance: null },
            { id: 360, customer_name: "Nina Walker", artisan_name: "Kai Tanaka", transaction_type: "order", transaction_date: new Date("2023-01-24T09:04:13Z"), amount: "280.82", loyalty_status: "new", workshop_attendance: null },
            { id: 361, customer_name: "Hannah Sousa", artisan_name: "Maja Bauer", transaction_type: "order", transaction_date: new Date("2022-02-13T19:51:02Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 362, customer_name: "Priya Demir", artisan_name: "Tariq Kumar", transaction_type: "event", transaction_date: new Date("2022-01-10T17:35:41Z"), amount: "53.51", loyalty_status: "new", workshop_attendance: null },
            { id: 363, customer_name: "Maja Costa", artisan_name: "Rafael Cruz", transaction_type: "workshop", transaction_date: new Date("2022-07-12T11:26:33Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 364, customer_name: "Mateo Cruz", artisan_name: "Amir Costa", transaction_type: "order", transaction_date: new Date("2022-02-19T10:23:15Z"), amount: "11.72", loyalty_status: "new", workshop_attendance: null },
            { id: 365, customer_name: "Nadia Jensen", artisan_name: "Daniel Torres", transaction_type: "workshop", transaction_date: new Date("2022-05-15T14:57:02Z"), amount: "53.36", loyalty_status: "new", workshop_attendance: false },
            { id: 366, customer_name: "Ivan Young", artisan_name: "Grace Park", transaction_type: "workshop", transaction_date: new Date("2023-12-31T10:34:49Z"), amount: "367.80", loyalty_status: "new", workshop_attendance: false },
            { id: 367, customer_name: "Priya Andersen", artisan_name: "Maria Taylor", transaction_type: "order", transaction_date: new Date("2022-01-14T19:48:30Z"), amount: "15.29", loyalty_status: "new", workshop_attendance: null },
            { id: 368, customer_name: "Sara Diaz", artisan_name: "Lucas Bennett", transaction_type: "order", transaction_date: new Date("2022-08-06T14:42:43Z"), amount: "183.56", loyalty_status: "new", workshop_attendance: null },
            { id: 369, customer_name: "Sven Wright", artisan_name: "Sofia Hansen", transaction_type: "workshop", transaction_date: new Date("2022-10-13T12:31:48Z"), amount: "113.75", loyalty_status: "new", workshop_attendance: false },
            { id: 370, customer_name: "Zara Kim", artisan_name: "Tariq Ali", transaction_type: "workshop", transaction_date: new Date("2022-06-10T13:10:15Z"), amount: "275.95", loyalty_status: "new", workshop_attendance: false },
            { id: 371, customer_name: "Priya Wright", artisan_name: "Daniel Larsen", transaction_type: "event", transaction_date: new Date("2022-11-10T08:12:36Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 372, customer_name: "Mei Yilmaz", artisan_name: "Karim Klein", transaction_type: "event", transaction_date: new Date("2023-08-04T19:11:36Z"), amount: "132.97", loyalty_status: "new", workshop_attendance: null },
            { id: 373, customer_name: "Maja Torres", artisan_name: "Chen Park", transaction_type: "order", transaction_date: new Date("2022-02-06T20:29:43Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 374, customer_name: "Tariq Bauer", artisan_name: "David Kim", transaction_type: "workshop", transaction_date: new Date("2023-07-27T08:47:51Z"), amount: "133.22", loyalty_status: "new", workshop_attendance: false },
            { id: 375, customer_name: "Amir Davis", artisan_name: "Amir Martin", transaction_type: "order", transaction_date: new Date("2022-06-15T06:10:08Z"), amount: "20.00", loyalty_status: "new", workshop_attendance: null },
            { id: 376, customer_name: "Ivan Wilson", artisan_name: "Ethan Flores", transaction_type: "order", transaction_date: new Date("2023-04-07T19:47:58Z"), amount: "12.73", loyalty_status: "new", workshop_attendance: null },
            { id: 377, customer_name: "Amir Wagner", artisan_name: "Omar Weber", transaction_type: "order", transaction_date: new Date("2022-07-27T22:23:15Z"), amount: "12.39", loyalty_status: "new", workshop_attendance: null },
            { id: 378, customer_name: "Sofia Kowalski", artisan_name: "Yara Oliveira", transaction_type: "order", transaction_date: new Date("2022-08-31T19:32:12Z"), amount: "426.14", loyalty_status: "new", workshop_attendance: null },
            { id: 379, customer_name: "Grace Davis", artisan_name: "Chloe Wilson", transaction_type: "order", transaction_date: new Date("2023-08-20T23:25:47Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 380, customer_name: "Grace Reyes", artisan_name: "Lena Patel", transaction_type: "order", transaction_date: new Date("2022-03-19T20:00:34Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 381, customer_name: "Paula Castro", artisan_name: "Priya Yilmaz", transaction_type: "order", transaction_date: new Date("2023-05-12T17:42:07Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 382, customer_name: "Paula Garcia", artisan_name: "Kai Gomez", transaction_type: "order", transaction_date: new Date("2022-10-29T08:34:21Z"), amount: "78.05", loyalty_status: "new", workshop_attendance: null },
            { id: 383, customer_name: "Daniel Novak", artisan_name: "Victor Singh", transaction_type: "order", transaction_date: new Date("2022-10-27T11:10:28Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 384, customer_name: "Sara Carter", artisan_name: "Zoe Pereira", transaction_type: "order", transaction_date: new Date("2023-05-18T13:02:54Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 385, customer_name: "Andre Brown", artisan_name: "Ana Sousa", transaction_type: "order", transaction_date: new Date("2022-10-29T12:14:45Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 386, customer_name: "Mia Jensen", artisan_name: "Kai Smith", transaction_type: "order", transaction_date: new Date("2023-12-07T11:32:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 387, customer_name: "Nadia Evans", artisan_name: "Liam Garcia", transaction_type: "order", transaction_date: new Date("2023-02-17T21:21:40Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 388, customer_name: "Zoe Kaya", artisan_name: "Olivia Sato", transaction_type: "order", transaction_date: new Date("2023-07-23T09:35:13Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 389, customer_name: "Daniel Nakamura", artisan_name: "Victor Larsen", transaction_type: "order", transaction_date: new Date("2023-07-02T20:22:06Z"), amount: "11.23", loyalty_status: "new", workshop_attendance: null },
            { id: 390, customer_name: "Ben Ali", artisan_name: "Elif Hassan", transaction_type: "order", transaction_date: new Date("2023-12-11T08:35:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 391, customer_name: "Ines Kaya", artisan_name: "Chen Baker", transaction_type: "workshop", transaction_date: new Date("2023-08-11T09:04:17Z"), amount: "20.14", loyalty_status: "new", workshop_attendance: false },
            { id: 392, customer_name: "Sam Carter", artisan_name: "Zara Hassan", transaction_type: "order", transaction_date: new Date("2022-06-22T21:11:51Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 393, customer_name: "Diego Hoffmann", artisan_name: "Maja Cruz", transaction_type: "order", transaction_date: new Date("2022-05-28T17:21:42Z"), amount: "101.83", loyalty_status: "new", workshop_attendance: null },
            { id: 394, customer_name: "Oscar Singh", artisan_name: "Selin Sousa", transaction_type: "order", transaction_date: new Date("2022-07-26T11:06:03Z"), amount: "381.86", loyalty_status: "new", workshop_attendance: null },
            { id: 395, customer_name: "Nina Khan", artisan_name: "Theo Wang", transaction_type: "order", transaction_date: new Date("2022-10-03T14:19:31Z"), amount: "41.57", loyalty_status: "new", workshop_attendance: null },
            { id: 396, customer_name: "Nour Weber", artisan_name: "Elena Moreau", transaction_type: "order", transaction_date: new Date("2022-04-08T13:27:48Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 397, customer_name: "Alice Martin", artisan_name: "Lina Nguyen", transaction_type: "order", transaction_date: new Date("2023-05-26T17:27:53Z"), amount: "18.20", loyalty_status: "new", workshop_attendance: null },
            { id: 398, customer_name: "Isaac Garcia", artisan_name: "Elena Sato", transaction_type: "event", transaction_date: new Date("2022-02-27T11:53:34Z"), amount: "217.47", loyalty_status: "new", workshop_attendance: null },
            { id: 399, customer_name: "Sven Singh", artisan_name: "Chen Ahmed", transaction_type: "order", transaction_date: new Date("2023-05-24T23:12:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 400, customer_name: "Nina Diaz", artisan_name: "Nina Flores", transaction_type: "order", transaction_date: new Date("2023-01-23T11:47:51Z"), amount: "221.93", loyalty_status: "new", workshop_attendance: null },
            { id: 401, customer_name: "Carlos Andersen", artisan_name: "Arjun Patel", transaction_type: "event", transaction_date: new Date("2022-08-31T20:23:36Z"), amount: "231.13", loyalty_status: "new", workshop_attendance: null },
            { id: 402, customer_name: "Felix Taylor", artisan_name: "Rafael Gomez", transaction_type: "order", transaction_date: new Date("2023-11-02T11:28:52Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 403, customer_name: "Olivia Lopez", artisan_name: "Tomas Gupta", transaction_type: "order", transaction_date: new Date("2022-10-09T12:38:15Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 404, customer_name: "Hana Kumar", artisan_name: "Elena Brown", transaction_type: "order", transaction_date: new Date("2023-05-03T20:44:18Z"), amount: "331.93", loyalty_status: "new", workshop_attendance: null },
            { id: 405, customer_name: "Paula Silva", artisan_name: "Sara Nakamura", transaction_type: "order", transaction_date: new Date("2022-06-19T18:42:01Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 406, customer_name: "Jonas Johnson", artisan_name: "Julia Yilmaz", transaction_type: "order", transaction_date: new Date("2022-09-23T21:13:42Z"), amount: "431.77", loyalty_status: "new", workshop_attendance: null },
            { id: 407, customer_name: "Hugo Tanaka", artisan_name: "Carlos Singh", transaction_type: "order", transaction_date: new Date("2023-01-20T18:16:48Z"), amount: "129.26", loyalty_status: "new", workshop_attendance: null },
            { id: 408, customer_name: "Nadia Garcia", artisan_name: "Zoe Andersen", transaction_type: "order", transaction_date: new Date("2023-07-06T08:03:52Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 409, customer_name: "Lina Hassan", artisan_name: "Elena Johnson", transaction_type: "order", transaction_date: new Date("2023-08-19T18:17:26Z"), amount: "419.11", loyalty_status: "new", workshop_attendance: null },
            { id: 410, customer_name: "Hana Pereira", artisan_name: "Zoe Wright", transaction_type: "event", transaction_date: new Date("2022-09-05T13:46:08Z"), amount: "52.08", loyalty_status: "new", workshop_attendance: null },
            { id: 411, customer_name: "Mateo Torres", artisan_name: "Mei Ahmed", transaction_type: "order", transaction_date: new Date("2023-10-17T08:39:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 412, customer_name: "Ravi Kim", artisan_name: "Carla Ahmed", transaction_type: "order", transaction_date: new Date("2023-06-03T08:39:12Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 413, customer_name: "Noah Hansen", artisan_name: "Rafael Young", transaction_type: "order", transaction_date: new Date("2023-03-14T01:23:45Z"), amount: "385.98", loyalty_status: "new", workshop_attendance: null },
            { id: 414, customer_name: "Noah Jansen", artisan_name: "Uma Diaz", transaction_type: "event", transaction_date: new Date("2022-09-26T19:46:55Z"), amount: "55.83", loyalty_status: "new", workshop_attendance: null },
            { id: 415, customer_name: "Elif Zhang", artisan_name: "Jack Martin", transaction_type: "workshop", transaction_date: new Date("2022-11-09T23:15:14Z"), amount: "131.78", loyalty_status: "new", workshop_attendance: false },
            { id: 416, customer_name: "Felix Wilson", artisan_name: "Selin Sato", transaction_type: "event", transaction_date: new Date("2023-06-06T19:49:37Z"), amount: "23.66", loyalty_status: "new", workshop_attendance: null },
            { id: 417, customer_name: "Maria Martin", artisan_name: "Ana Becker", transaction_type: "event", transaction_date: new Date("2023-07-31T19:38:39Z"), amount: "236.53", loyalty_status: "new", workshop_attendance: null },
            { id: 418, customer_name: "Daniel Tanaka", artisan_name: "Yara Taylor", transaction_type: "order", transaction_date: new Date("2022-02-26T01:22:23Z"), amount: "56.80", loyalty_status: "new", workshop_attendance: null },
            { id: 419, customer_name: "Sofia Fischer", artisan_name: "Omar Kumar", transaction_type: "workshop", transaction_date: new Date("2022-02-19T14:46:41Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 420, customer_name: "Mateo Bauer", artisan_name: "Uma Schneider", transaction_type: "order", transaction_date: new Date("2022-01-22T19:18:02Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 421, customer_name: "Oscar Jansen", artisan_name: "Ethan Castro", transaction_type: "workshop", transaction_date: new Date("2022-11-14T13:13:54Z"), amount: "92.20", loyalty_status: "new", workshop_attendance: false },
            { id: 422, customer_name: "Yara Chen", artisan_name: "Daniel Almeida", transaction_type: "workshop", transaction_date: new Date("2022-05-14T20:23:47Z"), amount: "326.33", loyalty_status: "new", workshop_attendance: false },
            { id: 423, customer_name: "Carlos Diaz", artisan_name: "Lucas Tanaka", transaction_type: "order", transaction_date: new Date("2023-06-27T19:17:59Z"), amount: "36.58", loyalty_status: "new", workshop_attendance: null },
            { id: 424, customer_name: "Sven Diaz", artisan_name: "James Vargas", transaction_type: "order", transaction_date: new Date("2022-07-25T20:21:13Z"), amount: "318.73", loyalty_status: "new", workshop_attendance: null },
            { id: 425, customer_name: "Pedro Bennett", artisan_name: "Rosa Dubois", transaction_type: "workshop", transaction_date: new Date("2023-06-04T22:09:31Z"), amount: "235.11", loyalty_status: "new", workshop_attendance: true },
            { id: 426, customer_name: "David Jansen", artisan_name: "Hana Sousa", transaction_type: "event", transaction_date: new Date("2023-05-15T10:01:51Z"), amount: "224.18", loyalty_status: "new", workshop_attendance: null },
            { id: 427, customer_name: "Uma Brown", artisan_name: "Chen Clark", transaction_type: "workshop", transaction_date: new Date("2023-04-29T09:49:23Z"), amount: "387.36", loyalty_status: "new", workshop_attendance: false },
            { id: 428, customer_name: "Ivan Lee", artisan_name: "Ruby Lee", transaction_type: "order", transaction_date: new Date("2023-06-03T14:40:05Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 429, customer_name: "Karim Schmidt", artisan_name: "Selin Pereira", transaction_type: "order", transaction_date: new Date("2023-08-04T22:22:06Z"), amount: "264.02", loyalty_status: "new", workshop_attendance: null },
            { id: 430, customer_name: "Chen Hughes", artisan_name: "Jack Ahmed", transaction_type: "order", transaction_date: new Date("2023-05-17T17:26:06Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 431, customer_name: "Nadia Ruiz", artisan_name: "Chloe Novak", transaction_type: "workshop", transaction_date: new Date("2022-08-15T18:17:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 432, customer_name: "Olivia Wagner", artisan_name: "Jade Gomez", transaction_type: "workshop", transaction_date: new Date("2022-02-12T17:59:53Z"), amount: "15.70", loyalty_status: "new", workshop_attendance: false },
            { id: 433, customer_name: "Sofia Wilson", artisan_name: "Hugo Dubois", transaction_type: "order", transaction_date: new Date("2022-08-06T23:32:27Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 434, customer_name: "Hannah Kowalski", artisan_name: "Zara Almeida", transaction_type: "order", transaction_date: new Date("2023-08-30T15:23:27Z"), amount: "13.61", loyalty_status: "new", workshop_attendance: null },
            { id: 435, customer_name: "Yara Hansen", artisan_name: "Omar Hughes", transaction_type: "workshop", transaction_date: new Date("2023-01-01T15:51:43Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 436, customer_name: "Selin Khan", artisan_name: "Uma Wagner", transaction_type: "event", transaction_date: new Date("2022-02-03T16:06:06Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 437, customer_name: "Uma Hansen", artisan_name: "Ethan Zhang", transaction_type: "order", transaction_date: new Date("2022-12-05T21:31:44Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 438, customer_name: "Sara Rossi", artisan_name: "Diego Taylor", transaction_type: "order", transaction_date: new Date("2022-12-04T07:52:46Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 439, customer_name: "Leo Ahmed", artisan_name: "Nina Almeida", transaction_type: "order", transaction_date: new Date("2023-07-14T12:11:54Z"), amount: "430.41", loyalty_status: "new", workshop_attendance: null },
            { id: 440, customer_name: "Ivan Rossi", artisan_name: "Felix Kaya", transaction_type: "order", transaction_date: new Date("2023-04-18T07:39:48Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 441, customer_name: "Ben Walker", artisan_name: "Nina Ahmed", transaction_type: "order", transaction_date: new Date("2022-01-02T15:16:51Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 442, customer_name: "Oscar Vargas", artisan_name: "Carla Bennett", transaction_type: "order", transaction_date: new Date("2022-05-28T09:02:11Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 443, customer_name: "Ines Hoffmann", artisan_name: "Andre Martin", transaction_type: "workshop", transaction_date: new Date("2022-10-23T20:38:57Z"), amount: "393.15", loyalty_status: "new", workshop_attendance: false },
            { id: 444, customer_name: "Emma Nakamura", artisan_name: "Zara Wilson", transaction_type: "order", transaction_date: new Date("2022-03-08T16:28:50Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 445, customer_name: "Elif Lopez", artisan_name: "Amir Kim", transaction_type: "workshop", transaction_date: new Date("2022-07-16T13:06:05Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 446, customer_name: "Ines Sousa", artisan_name: "Nadia Demir", transaction_type: "order", transaction_date: new Date("2023-08-31T09:07:43Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 447, customer_name: "Sam Gomez", artisan_name: "Laura Cruz", transaction_type: "workshop", transaction_date: new Date("2022-04-09T16:05:54Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 448, customer_name: "Mia Torres", artisan_name: "Diego Zhang", transaction_type: "workshop", transaction_date: new Date("2023-09-26T11:24:22Z"), amount: "376.88", loyalty_status: "new", workshop_attendance: false },
            { id: 449, customer_name: "Tomas Kaya", artisan_name: "Jonas Ali", transaction_type: "order", transaction_date: new Date("2023-02-10T11:37:04Z"), amount: "157.08", loyalty_status: "new", workshop_attendance: null },
            { id: 450, customer_name: "Laura Jensen", artisan_name: "Daniel Tanaka", transaction_type: "workshop", transaction_date: new Date("2023-12-14T19:02:34Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 451, customer_name: "Daniel Hassan", artisan_name: "Daniel Hassan", transaction_type: "order", transaction_date: new Date("2023-08-11T20:07:32Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 452, customer_name: "Kai Wang", artisan_name: "James Bennett", transaction_type: "order", transaction_date: new Date("2022-03-07T06:30:27Z"), amount: "442.59", loyalty_status: "new", workshop_attendance: null },
            { id: 453, customer_name: "Nina Reyes", artisan_name: "Lina Vargas", transaction_type: "order", transaction_date: new Date("2023-11-15T20:43:14Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 454, customer_name: "Emma Sousa", artisan_name: "Ethan Kim", transaction_type: "workshop", transaction_date: new Date("2023-05-28T23:02:55Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 455, customer_name: "Julia Murphy", artisan_name: "Yara Zhang", transaction_type: "order", transaction_date: new Date("2022-10-05T14:55:13Z"), amount: "130.61", loyalty_status: "new", workshop_attendance: null },
            { id: 456, customer_name: "Noah Ahmed", artisan_name: "Alice Ali", transaction_type: "order", transaction_date: new Date("2022-07-23T17:17:41Z"), amount: "14.84", loyalty_status: "new", workshop_attendance: null },
            { id: 457, customer_name: "Hannah Klein", artisan_name: "Tomas Johnson", transaction_type: "order", transaction_date: new Date("2022-05-25T10:02:46Z"), amount: "183.17", loyalty_status: "new", workshop_attendance: null },
            { id: 458, customer_name: "Amir Taylor", artisan_name: "Maya Smith", transaction_type: "order", transaction_date: new Date("2023-03-24T08:57:34Z"), amount: "359.07", loyalty_status: "new", workshop_attendance: null },
            { id: 459, customer_name: "Lucas Silva", artisan_name: "Ben Jensen", transaction_type: "order", transaction_date: new Date("2023-11-14T10:29:39Z"), amount: "67.09", loyalty_status: "new", workshop_attendance: null },
            { id: 460, customer_name: "Ben Novak", artisan_name: "Sofia Adams", transaction_type: "workshop", transaction_date: new Date("2023-04-30T20:11:31Z"), amount: "381.09", loyalty_status: "new", workshop_attendance: false },
            { id: 461, customer_name: "Priya Fischer", artisan_name: "Tariq Reyes", transaction_type: "order", transaction_date: new Date("2023-02-14T15:28:55Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 462, customer_name: "James Flores", artisan_name: "Arjun Adams", transaction_type: "event", transaction_date: new Date("2022-12-10T19:39:56Z"), amount: "471.86", loyalty_status: "new", workshop_attendance: null },
            { id: 463, customer_name: "Maria Mendes", artisan_name: "Pedro Hughes", transaction_type: "order", transaction_date: new Date("2023-05-08T09:01:35Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 464, customer_name: "Mateo Garcia", artisan_name: "Karim Hughes", transaction_type: "event", transaction_date: new Date("2022-04-07T09:53:46Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 465, customer_name: "Laura Ali", artisan_name: "Pedro Meyer", transaction_type: "workshop", transaction_date: new Date("2023-12-14T22:44:02Z"), amount: "41.24", loyalty_status: "new", workshop_attendance: false },
            { id: 466, customer_name: "Noah Castro", artisan_name: "Jonas Wilson", transaction_type: "order", transaction_date: new Date("2023-11-01T10:09:54Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 467, customer_name: "Mohamed Park", artisan_name: "Zara Garcia", transaction_type: "workshop", transaction_date: new Date("2023-03-06T08:08:11Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 468, customer_name: "Grace Castro", artisan_name: "Ivan Schmidt", transaction_type: "workshop", transaction_date: new Date("2022-07-17T22:33:20Z"), amount: null, loyalty_status: "frequent", workshop_attendance: false },
            { id: 469, customer_name: "Leo Yilmaz", artisan_name: "Alice Hansen", transaction_type: "event", transaction_date: new Date("2023-12-18T03:58:45Z"), amount: "49.14", loyalty_status: "new", workshop_attendance: null },
            { id: 470, customer_name: "Zoe Shah", artisan_name: "Maria Klein", transaction_type: "workshop", transaction_date: new Date("2023-10-23T18:50:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: true },
            { id: 471, customer_name: "Mateo Sousa", artisan_name: "Sofia Young", transaction_type: "order", transaction_date: new Date("2022-09-14T12:14:57Z"), amount: "458.82", loyalty_status: "new", workshop_attendance: null },
            { id: 472, customer_name: "Karim Chen", artisan_name: "Mila Kaya", transaction_type: "order", transaction_date: new Date("2022-08-13T06:34:47Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 473, customer_name: "Elif Wilson", artisan_name: "Alice Gupta", transaction_type: "event", transaction_date: new Date("2023-11-20T14:29:22Z"), amount: "256.58", loyalty_status: "new", workshop_attendance: null },
            { id: 474, customer_name: "Nina Mendes", artisan_name: "Sofia Andersen", transaction_type: "event", transaction_date: new Date("2022-09-20T14:29:58Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 475, customer_name: "Priya Tanaka", artisan_name: "Grace Torres", transaction_type: "workshop", transaction_date: new Date("2023-08-08T19:56:46Z"), amount: "63.98", loyalty_status: "new", workshop_attendance: true },
            { id: 476, customer_name: "Laura Pereira", artisan_name: "Hannah Jansen", transaction_type: "order", transaction_date: new Date("2023-11-11T11:55:13Z"), amount: "236.60", loyalty_status: "new", workshop_attendance: null },
            { id: 477, customer_name: "Victor Martin", artisan_name: "Theo Tanaka", transaction_type: "workshop", transaction_date: new Date("2023-06-22T22:52:07Z"), amount: "302.91", loyalty_status: "new", workshop_attendance: true },
            { id: 478, customer_name: "Victor Bauer", artisan_name: "Uma Tanaka", transaction_type: "event", transaction_date: new Date("2023-05-07T12:18:15Z"), amount: "174.91", loyalty_status: "new", workshop_attendance: null },
            { id: 479, customer_name: "Mia Jensen", artisan_name: "Tomas Lopez", transaction_type: "order", transaction_date: new Date("2023-11-27T19:20:46Z"), amount: "84.55", loyalty_status: "new", workshop_attendance: null },
            { id: 480, customer_name: "Priya Kaya", artisan_name: "Carlos Bennett", transaction_type: "order", transaction_date: new Date("2023-05-05T13:13:59Z"), amount: null, loyalty_status: "frequent", workshop_attendance: null },
            { id: 481, customer_name: "Amir Bauer", artisan_name: "Ana Almeida", transaction_type: "event", transaction_date: new Date("2023-03-12T09:33:16Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 482, customer_name: "Andre Hoffmann", artisan_name: "Ravi Wang", transaction_type: "order", transaction_date: new Date("2022-09-03T19:17:54Z"), amount: "107.09", loyalty_status: "new", workshop_attendance: null },
            { id: 483, customer_name: "Arjun Klein", artisan_name: "Yusuf Bauer", transaction_type: "workshop", transaction_date: new Date("2022-07-15T07:20:59Z"), amount: "32.06", loyalty_status: "new", workshop_attendance: false },
            { id: 484, customer_name: "Isaac Clark", artisan_name: "Elena Garcia", transaction_type: "workshop", transaction_date: new Date("2023-10-18T11:54:01Z"), amount: "463.18", loyalty_status: "new", workshop_attendance: false },
            { id: 485, customer_name: "Lina Young", artisan_name: "Carlos Jansen", transaction_type: "order", transaction_date: new Date("2022-05-13T13:08:37Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 486, customer_name: "Ruby Brown", artisan_name: "Jade Hassan", transaction_type: "order", transaction_date: new Date("2022-12-01T19:54:56Z"), amount: "17.38", loyalty_status: "new", workshop_attendance: null },
            { id: 487, customer_name: "Tariq Bauer", artisan_name: "Alice Nakamura", transaction_type: "workshop", transaction_date: new Date("2023-08-27T07:32:07Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 488, customer_name: "Amir Schneider", artisan_name: "Sara Smith", transaction_type: "order", transaction_date: new Date("2022-05-24T12:26:48Z"), amount: "286.53", loyalty_status: "new", workshop_attendance: null },
            { id: 489, customer_name: "Mia Davis", artisan_name: "Anna Torres", transaction_type: "order", transaction_date: new Date("2022-09-16T09:36:36Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 490, customer_name: "Sven Lopez", artisan_name: "Maya Almeida", transaction_type: "workshop", transaction_date: new Date("2022-01-03T22:25:28Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
            { id: 491, customer_name: "Fatima Hassan", artisan_name: "Alice Davis", transaction_type: "order", transaction_date: new Date("2023-03-26T09:42:39Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 492, customer_name: "Pedro Carter", artisan_name: "Nadia Garcia", transaction_type: "order", transaction_date: new Date("2022-12-03T22:21:05Z"), amount: "62.29", loyalty_status: "new", workshop_attendance: null },
            { id: 493, customer_name: "Laura Ibrahim", artisan_name: "Leo Baker", transaction_type: "order", transaction_date: new Date("2022-10-10T23:02:01Z"), amount: "87.31", loyalty_status: "new", workshop_attendance: null },
            { id: 494, customer_name: "Olivia Young", artisan_name: "Ravi Kim", transaction_type: "order", transaction_date: new Date("2023-10-26T08:44:11Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 495, customer_name: "Sara Castro", artisan_name: "Carla Larsen", transaction_type: "order", transaction_date: new Date("2023-05-28T20:03:50Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 496, customer_name: "Uma Walker", artisan_name: "Paula Schneider", transaction_type: "order", transaction_date: new Date("2022-08-13T18:20:04Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 497, customer_name: "Lucas Nakamura", artisan_name: "Mei Hansen", transaction_type: "order", transaction_date: new Date("2022-02-16T11:15:36Z"), amount: null, loyalty_status: "loyal", workshop_attendance: null },
            { id: 498, customer_name: "Karim Smith", artisan_name: "Diego Davis", transaction_type: "order", transaction_date: new Date("2022-02-16T17:06:03Z"), amount: "62.16", loyalty_status: "new", workshop_attendance: null },
            { id: 499, customer_name: "Mohamed Castro", artisan_name: "Nina Sousa", transaction_type: "workshop", transaction_date: new Date("2023-08-22T21:43:25Z"), amount: "10.71", loyalty_status: "new", workshop_attendance: false },
            { id: 500, customer_name: "Ana Evans", artisan_name: "Carlos Bennett", transaction_type: "workshop", transaction_date: new Date("2022-06-16T20:36:25Z"), amount: null, loyalty_status: "loyal", workshop_attendance: false },
        ],
    });
}

main()
    .then(() => prisma.$disconnect())
    .catch(async error => {
        console.error(error);
        await prisma.$disconnect();
        process.exit(1);
    });
