// Support Interaction Metrics (community-help-and-support-platform) 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.issue_categories), 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.issue_categories.createMany({
        data: [
            { id: 1, category_name: "refund security", description: "No response from the supplier, so the shipment was rescheduled.", priority_level: "Medium", average_resolution_time: "30.23" },
            { id: 2, category_name: "subscription billing access", description: "The reviewer reported a minor issue; the invoice was confirmed.", priority_level: "Medium", average_resolution_time: "12.58" },
            { id: 3, category_name: "upgrade account technical", description: "The payment was rejected — duplicate case, no further action.", priority_level: "Low", average_resolution_time: "16.35" },
            { id: 4, category_name: "account feature support", description: "The transfer was refunded — urgent case, no further action.", priority_level: "High", average_resolution_time: "24.91" },
            { id: 5, category_name: "subscription", description: "No response from an operator, so the refund was closed.", priority_level: "Low", average_resolution_time: "19.88" },
            { id: 6, category_name: "error notification downtime", description: "The supplier reported a partial issue; the refund was updated.", priority_level: "Medium", average_resolution_time: "35.55" },
            { id: 7, category_name: "access", description: "The team reported a standard issue; the payment was rejected.", priority_level: "High", average_resolution_time: "20.98" },
            { id: 8, category_name: "upgrade", description: "The supplier confirmed the details and the request was resolved.", priority_level: "Low", average_resolution_time: "36.59" },
            { id: 9, category_name: "feature", description: "The customer asked for a change and the payment was escalated.", priority_level: "Low", average_resolution_time: "35.09" },
            { id: 10, category_name: "refund support", description: "The team reported an unusual issue; the order was completed.", priority_level: "Medium", average_resolution_time: "35.19" },
            { id: 11, category_name: "report support", description: "No response from the team, so the delivery was approved.", priority_level: "Medium", average_resolution_time: "25.59" },
            { id: 12, category_name: "configuration access", description: "The account owner reported a late issue; the request was reopened.", priority_level: "Low", average_resolution_time: "17.25" },
            { id: 13, category_name: "compatibility configuration account", description: "The account was rejected — manual case, no further action.", priority_level: "Medium", average_resolution_time: "26.77" },
            { id: 14, category_name: "refund performance downtime", description: "The reviewer asked for a change and the item was reopened.", priority_level: "High", average_resolution_time: "24.17" },
            { id: 15, category_name: "payment", description: "The transfer was reviewed — incomplete case, no further action.", priority_level: "Low", average_resolution_time: "23.75" },
            { id: 16, category_name: "billing", description: null, priority_level: "Medium", average_resolution_time: "29.13" },
            { id: 17, category_name: "service refund downtime", description: "The refund was replaced — late case, no further action.", priority_level: "Medium", average_resolution_time: "24.51" },
            { id: 18, category_name: "security performance subscription", description: "The customer confirmed the details and the refund was refunded.", priority_level: "Low", average_resolution_time: "15.40" },
            { id: 19, category_name: "subscription", description: "The reviewer confirmed the details and the appointment was closed.", priority_level: "Low", average_resolution_time: "25.18" },
            { id: 20, category_name: "feature error payment", description: "The courier asked for a change and the invoice was updated.", priority_level: "Low", average_resolution_time: "15.89" },
        ],
    });
    await prisma.users.createMany({
        data: [
            { id: 1, full_name: "Carlos Shah", email: "carlos.shah@example.org", joined_at: new Date("2023-06-10T15:52:08Z") },
            { id: 2, full_name: "Oscar Wang", email: "oscar.wang@example.net", joined_at: new Date("2023-11-20T11:32:48Z") },
            { id: 3, full_name: "Ben Hoffmann", email: "ben.hoffmann@example.org", joined_at: new Date("2023-07-02T11:38:10Z") },
            { id: 4, full_name: "Wei Kowalski", email: "wei.kowalski@example.com", joined_at: new Date("2023-05-20T22:43:15Z") },
            { id: 5, full_name: "Tomas Wagner", email: "tomas.wagner@example.com", joined_at: new Date("2023-03-30T17:45:46Z") },
            { id: 6, full_name: "Wei Tanaka", email: null, joined_at: new Date("2023-10-19T01:58:36Z") },
            { id: 7, full_name: "Hannah Lee", email: null, joined_at: new Date("2023-09-15T17:33:27Z") },
            { id: 8, full_name: "Jonas Meyer", email: "jonas.meyer@example.net", joined_at: new Date("2023-01-21T21:04:36Z") },
            { id: 9, full_name: "Chloe Sousa", email: "chloe.sousa@example.org", joined_at: new Date("2023-11-18T15:00:18Z") },
            { id: 10, full_name: "Ethan Hansen", email: null, joined_at: new Date("2023-10-01T06:49:53Z") },
            { id: 11, full_name: "Lina Mendes", email: "lina.mendes@example.org", joined_at: new Date("2023-02-19T16:33:32Z") },
            { id: 12, full_name: "Ines Kim", email: "ines.kim@example.com", joined_at: new Date("2023-01-07T23:22:56Z") },
            { id: 13, full_name: "Rosa Miller", email: null, joined_at: new Date("2023-10-29T11:29:43Z") },
            { id: 14, full_name: "Carlos Costa", email: "carlos.costa@example.net", joined_at: new Date("2023-12-01T02:52:51Z") },
            { id: 15, full_name: "Ruby Oliveira", email: "ruby.oliveira@example.net", joined_at: new Date("2023-01-08T08:55:17Z") },
            { id: 16, full_name: "Hugo Diaz", email: "hugo.diaz@example.org", joined_at: new Date("2023-08-28T22:56:35Z") },
            { id: 17, full_name: "Arjun Lopez", email: "arjun.lopez@example.net", joined_at: new Date("2023-02-26T15:29:05Z") },
            { id: 18, full_name: "David Ali", email: "david.ali@example.net", joined_at: new Date("2023-10-15T06:19:27Z") },
            { id: 19, full_name: "Victor Pereira", email: "victor.pereira@example.org", joined_at: new Date("2023-12-31T02:36:17Z") },
            { id: 20, full_name: "Priya Cruz", email: "priya.cruz@example.org", joined_at: new Date("2023-08-13T17:41:46Z") },
            { id: 21, full_name: "Nour Mendes", email: "nour.mendes@example.com", joined_at: new Date("2023-07-15T04:47:27Z") },
            { id: 22, full_name: "Tomas Gupta", email: "tomas.gupta@example.org", joined_at: new Date("2023-12-22T16:37:39Z") },
            { id: 23, full_name: "Alice Walker", email: "alice.walker@example.com", joined_at: new Date("2023-07-29T02:57:32Z") },
            { id: 24, full_name: "Sam Garcia", email: "sam.garcia@example.org", joined_at: new Date("2023-02-02T00:14:12Z") },
            { id: 25, full_name: "Jade Ruiz", email: "jade.ruiz@example.com", joined_at: new Date("2023-11-23T23:40:30Z") },
            { id: 26, full_name: "Zoe Larsen", email: "zoe.larsen@example.net", joined_at: new Date("2023-11-10T11:38:32Z") },
            { id: 27, full_name: "Ben Costa", email: "ben.costa@example.net", joined_at: new Date("2023-04-17T11:53:19Z") },
            { id: 28, full_name: "Ruby Hughes", email: "ruby.hughes@example.org", joined_at: new Date("2023-05-09T05:45:56Z") },
            { id: 29, full_name: "Yusuf Kaya", email: "yusuf.kaya@example.org", joined_at: new Date("2023-05-24T09:46:36Z") },
            { id: 30, full_name: "Rafael Evans", email: "rafael.evans@example.net", joined_at: new Date("2023-11-14T15:41:53Z") },
            { id: 31, full_name: "Priya Tanaka", email: null, joined_at: new Date("2023-12-01T05:03:03Z") },
            { id: 32, full_name: "Olivia Taylor", email: "olivia.taylor@example.com", joined_at: new Date("2023-07-21T09:59:43Z") },
            { id: 33, full_name: "Mohamed Meyer", email: "mohamed.meyer@example.com", joined_at: new Date("2023-06-28T00:44:16Z") },
            { id: 34, full_name: "Daniel Pereira", email: "daniel.pereira@example.org", joined_at: new Date("2023-03-24T19:22:23Z") },
            { id: 35, full_name: "Leo Schneider", email: "leo.schneider@example.com", joined_at: new Date("2023-07-07T02:21:42Z") },
            { id: 36, full_name: "Emma Brown", email: "emma.brown@example.org", joined_at: new Date("2023-08-22T20:52:18Z") },
            { id: 37, full_name: "Maya Davis", email: "maya.davis@example.net", joined_at: new Date("2023-12-16T17:17:24Z") },
            { id: 38, full_name: "Elena Singh", email: "elena.singh@example.net", joined_at: new Date("2023-05-12T22:20:56Z") },
            { id: 39, full_name: "Rosa Sato", email: "rosa.sato@example.org", joined_at: new Date("2023-06-11T05:02:41Z") },
            { id: 40, full_name: "Elif Carter", email: "elif.carter@example.org", joined_at: new Date("2023-04-27T12:15:45Z") },
            { id: 41, full_name: "Yusuf Ruiz", email: "yusuf.ruiz@example.org", joined_at: new Date("2023-11-15T19:34:42Z") },
            { id: 42, full_name: "Ines Carter", email: "ines.carter@example.com", joined_at: new Date("2023-08-10T04:00:39Z") },
            { id: 43, full_name: "Oscar Klein", email: "oscar.klein@example.com", joined_at: new Date("2023-07-28T05:19:59Z") },
            { id: 44, full_name: "Noah Diaz", email: "noah.diaz@example.net", joined_at: new Date("2023-05-29T09:48:22Z") },
            { id: 45, full_name: null, email: null, joined_at: new Date("2023-06-17T19:10:53Z") },
            { id: 46, full_name: "Mateo Larsen", email: "mateo.larsen@example.net", joined_at: new Date("2023-01-14T22:52:28Z") },
            { id: 47, full_name: null, email: null, joined_at: new Date("2023-08-29T14:32:58Z") },
            { id: 48, full_name: "Mei Walker", email: "mei.walker@example.com", joined_at: new Date("2023-11-30T02:13:37Z") },
            { id: 49, full_name: "Karim Jensen", email: "karim.jensen@example.net", joined_at: new Date("2023-09-25T01:39:26Z") },
            { id: 50, full_name: "Mei Hoffmann", email: "mei.hoffmann@example.com", joined_at: new Date("2023-03-02T12:58:50Z") },
            { id: 51, full_name: "Daniel Wagner", email: "daniel.wagner@example.net", joined_at: new Date("2023-11-04T15:19:57Z") },
            { id: 52, full_name: "Rosa Kowalski", email: "rosa.kowalski@example.net", joined_at: new Date("2023-01-28T19:35:18Z") },
            { id: 53, full_name: null, email: null, joined_at: new Date("2023-05-17T02:54:54Z") },
            { id: 54, full_name: "Carlos Ibrahim", email: "carlos.ibrahim@example.org", joined_at: new Date("2023-07-04T15:15:31Z") },
            { id: 55, full_name: "Pedro Wagner", email: "pedro.wagner@example.org", joined_at: new Date("2023-12-06T00:36:46Z") },
            { id: 56, full_name: "Maria Rossi", email: "maria.rossi@example.com", joined_at: new Date("2023-10-06T01:37:44Z") },
            { id: 57, full_name: "Zara Diaz", email: "zara.diaz@example.org", joined_at: new Date("2023-08-30T18:58:46Z") },
            { id: 58, full_name: "Fatima Bennett", email: null, joined_at: new Date("2023-10-04T21:05:50Z") },
            { id: 59, full_name: "Andre Gomez", email: null, joined_at: new Date("2023-07-05T20:29:47Z") },
            { id: 60, full_name: null, email: null, joined_at: new Date("2023-09-02T13:52:26Z") },
            { id: 61, full_name: "Yusuf Oliveira", email: "yusuf.oliveira@example.com", joined_at: new Date("2023-10-24T00:22:16Z") },
            { id: 62, full_name: null, email: null, joined_at: new Date("2023-10-31T21:29:28Z") },
            { id: 63, full_name: "Jonas Ahmed", email: "jonas.ahmed@example.com", joined_at: new Date("2023-11-14T20:25:29Z") },
            { id: 64, full_name: "Ruby Wilson", email: "ruby.wilson@example.org", joined_at: new Date("2023-08-05T21:46:36Z") },
            { id: 65, full_name: "Felix Meyer", email: "felix.meyer@example.com", joined_at: new Date("2023-10-15T02:51:59Z") },
            { id: 66, full_name: "Kai Kim", email: "kai.kim@example.org", joined_at: new Date("2023-10-30T00:35:57Z") },
            { id: 67, full_name: "Chloe Jensen", email: "chloe.jensen@example.org", joined_at: new Date("2023-03-28T16:06:17Z") },
            { id: 68, full_name: null, email: null, joined_at: new Date("2023-01-12T11:57:08Z") },
            { id: 69, full_name: "Mei Kowalski", email: null, joined_at: new Date("2023-02-21T05:04:33Z") },
            { id: 70, full_name: "Sam Clark", email: "sam.clark@example.com", joined_at: new Date("2023-04-05T19:29:31Z") },
            { id: 71, full_name: "Mila Almeida", email: "mila.almeida@example.net", joined_at: new Date("2023-05-11T21:23:11Z") },
            { id: 72, full_name: "Emma Johnson", email: "emma.johnson@example.com", joined_at: new Date("2023-05-01T16:54:25Z") },
            { id: 73, full_name: "Mei Shah", email: "mei.shah@example.org", joined_at: new Date("2023-06-24T12:15:20Z") },
            { id: 74, full_name: "Ruby Ruiz", email: "ruby.ruiz@example.org", joined_at: new Date("2023-10-19T05:58:00Z") },
            { id: 75, full_name: "Yara Baker", email: "yara.baker@example.net", joined_at: new Date("2023-09-12T15:38:25Z") },
            { id: 76, full_name: "Mei Taylor", email: "mei.taylor@example.net", joined_at: new Date("2023-08-12T23:52:05Z") },
            { id: 77, full_name: "Ethan Carter", email: "ethan.carter@example.net", joined_at: new Date("2023-09-09T21:39:45Z") },
            { id: 78, full_name: "Olivia Ruiz", email: "olivia.ruiz@example.net", joined_at: new Date("2023-09-12T09:41:13Z") },
            { id: 79, full_name: "Tomas Baker", email: null, joined_at: new Date("2023-07-03T05:04:16Z") },
            { id: 80, full_name: "Uma Reyes", email: "uma.reyes@example.net", joined_at: new Date("2023-12-22T19:41:13Z") },
            { id: 81, full_name: "Lena Weber", email: "lena.weber@example.org", joined_at: new Date("2023-10-30T18:26:50Z") },
            { id: 82, full_name: "Yara Evans", email: "yara.evans@example.com", joined_at: new Date("2023-12-03T05:14:35Z") },
            { id: 83, full_name: "Ana Meyer", email: "ana.meyer@example.com", joined_at: new Date("2023-11-12T17:10:44Z") },
            { id: 84, full_name: "Chloe Novak", email: "chloe.novak@example.com", joined_at: new Date("2023-11-01T18:47:40Z") },
            { id: 85, full_name: "Elena Schmidt", email: "elena.schmidt@example.com", joined_at: new Date("2023-12-27T19:24:14Z") },
            { id: 86, full_name: "Rosa Young", email: "rosa.young@example.org", joined_at: new Date("2023-03-24T14:58:31Z") },
            { id: 87, full_name: "Carla Almeida", email: "carla.almeida@example.net", joined_at: new Date("2023-05-16T17:17:40Z") },
            { id: 88, full_name: "Elena Hansen", email: "elena.hansen@example.com", joined_at: new Date("2023-04-22T22:40:43Z") },
            { id: 89, full_name: "Elena Ruiz", email: "elena.ruiz@example.com", joined_at: new Date("2023-11-04T03:26:16Z") },
            { id: 90, full_name: "David Castro", email: "david.castro@example.net", joined_at: new Date("2023-12-06T06:56:57Z") },
            { id: 91, full_name: "Chloe Gomez", email: "chloe.gomez@example.org", joined_at: new Date("2023-07-23T02:59:27Z") },
            { id: 92, full_name: "Theo Rossi", email: "theo.rossi@example.org", joined_at: new Date("2023-11-21T16:28:42Z") },
            { id: 93, full_name: "Marco Shah", email: null, joined_at: new Date("2023-02-13T01:46:33Z") },
            { id: 94, full_name: "Rosa Dubois", email: "rosa.dubois@example.com", joined_at: new Date("2023-04-17T13:01:27Z") },
            { id: 95, full_name: "Kai Chen", email: "kai.chen@example.com", joined_at: new Date("2023-12-28T17:18:20Z") },
            { id: 96, full_name: "Uma Becker", email: "uma.becker@example.com", joined_at: new Date("2023-04-10T09:03:22Z") },
            { id: 97, full_name: "Chen Dubois", email: "chen.dubois@example.net", joined_at: new Date("2023-07-21T02:37:09Z") },
            { id: 98, full_name: "Laura Garcia", email: "laura.garcia@example.org", joined_at: new Date("2023-06-27T10:28:20Z") },
            { id: 99, full_name: null, email: null, joined_at: new Date("2023-10-09T10:08:09Z") },
            { id: 100, full_name: "Paula Young", email: "paula.young@example.net", joined_at: new Date("2023-11-02T14:54:22Z") },
            { id: 101, full_name: "Jonas Hoffmann", email: "jonas.hoffmann@example.com", joined_at: new Date("2023-11-23T06:18:09Z") },
            { id: 102, full_name: "Ivan Fischer", email: null, joined_at: new Date("2023-08-15T06:43:25Z") },
            { id: 103, full_name: "Hugo Demir", email: "hugo.demir@example.net", joined_at: new Date("2023-03-08T17:28:24Z") },
            { id: 104, full_name: "Mohamed Wagner", email: "mohamed.wagner@example.com", joined_at: new Date("2023-09-20T14:34:38Z") },
            { id: 105, full_name: null, email: null, joined_at: new Date("2023-08-13T03:34:15Z") },
            { id: 106, full_name: "Mila Kumar", email: "mila.kumar@example.net", joined_at: new Date("2023-12-21T16:58:02Z") },
            { id: 107, full_name: "Sven Andersen", email: "sven.andersen@example.net", joined_at: new Date("2023-03-14T00:33:31Z") },
            { id: 108, full_name: "Maria Martin", email: "maria.martin@example.net", joined_at: new Date("2023-10-06T19:58:18Z") },
            { id: 109, full_name: null, email: null, joined_at: new Date("2023-10-08T12:56:07Z") },
            { id: 110, full_name: "Mateo Schmidt", email: "mateo.schmidt@example.net", joined_at: new Date("2023-07-05T15:16:58Z") },
            { id: 111, full_name: "Maria Moreau", email: "maria.moreau@example.org", joined_at: new Date("2023-10-25T14:17:24Z") },
            { id: 112, full_name: "Zoe Becker", email: "zoe.becker@example.net", joined_at: new Date("2023-05-16T16:45:48Z") },
            { id: 113, full_name: "Ruby Chen", email: "ruby.chen@example.net", joined_at: new Date("2023-12-26T23:00:04Z") },
            { id: 114, full_name: "Elena Rossi", email: "elena.rossi@example.org", joined_at: new Date("2023-06-04T17:38:45Z") },
            { id: 115, full_name: "Wei Shah", email: null, joined_at: new Date("2023-11-21T23:09:17Z") },
            { id: 116, full_name: "Victor Ahmed", email: "victor.ahmed@example.com", joined_at: new Date("2023-07-05T05:15:03Z") },
            { id: 117, full_name: "Chloe Kim", email: null, joined_at: new Date("2023-02-23T20:16:42Z") },
            { id: 118, full_name: "Jade Lopez", email: "jade.lopez@example.com", joined_at: new Date("2023-12-01T10:00:28Z") },
            { id: 119, full_name: "Selin Shah", email: "selin.shah@example.net", joined_at: new Date("2023-11-08T22:16:35Z") },
            { id: 120, full_name: "Theo Wright", email: "theo.wright@example.com", joined_at: new Date("2023-01-03T14:43:58Z") },
            { id: 121, full_name: "Marco Larsen", email: "marco.larsen@example.net", joined_at: new Date("2023-09-21T11:08:24Z") },
            { id: 122, full_name: "Ibrahim Gomez", email: "ibrahim.gomez@example.org", joined_at: new Date("2023-05-06T18:37:16Z") },
            { id: 123, full_name: "Arjun Jensen", email: "arjun.jensen@example.net", joined_at: new Date("2023-11-18T21:22:46Z") },
            { id: 124, full_name: "Nadia Pereira", email: "nadia.pereira@example.org", joined_at: new Date("2023-10-13T14:47:22Z") },
            { id: 125, full_name: "David Wagner", email: "david.wagner@example.com", joined_at: new Date("2023-02-04T18:33:32Z") },
            { id: 126, full_name: "Omar Flores", email: "omar.flores@example.com", joined_at: new Date("2023-09-05T02:36:00Z") },
            { id: 127, full_name: "Ana Chen", email: "ana.chen@example.org", joined_at: new Date("2023-04-09T19:28:25Z") },
            { id: 128, full_name: "Jonas Becker", email: "jonas.becker@example.com", joined_at: new Date("2023-11-28T17:22:56Z") },
            { id: 129, full_name: "Elena Fischer", email: "elena.fischer@example.net", joined_at: new Date("2023-07-21T01:50:00Z") },
            { id: 130, full_name: "Isaac Novak", email: "isaac.novak@example.com", joined_at: new Date("2023-12-24T17:42:53Z") },
            { id: 131, full_name: "Sven Bennett", email: "sven.bennett@example.org", joined_at: new Date("2023-12-01T05:20:02Z") },
            { id: 132, full_name: "Rafael Hassan", email: "rafael.hassan@example.com", joined_at: new Date("2023-11-17T00:02:56Z") },
            { id: 133, full_name: "Tomas Lopez", email: "tomas.lopez@example.org", joined_at: new Date("2023-10-10T10:22:11Z") },
            { id: 134, full_name: "Ibrahim Flores", email: "ibrahim.flores@example.net", joined_at: new Date("2023-09-30T08:03:07Z") },
            { id: 135, full_name: "Carla Kim", email: "carla.kim@example.com", joined_at: new Date("2023-07-22T11:50:31Z") },
            { id: 136, full_name: "Karim Vargas", email: "karim.vargas@example.org", joined_at: new Date("2023-12-29T15:41:01Z") },
            { id: 137, full_name: "Mohamed Tanaka", email: "mohamed.tanaka@example.com", joined_at: new Date("2023-09-14T06:29:52Z") },
            { id: 138, full_name: "Uma Miller", email: "uma.miller@example.org", joined_at: new Date("2023-09-24T01:13:17Z") },
            { id: 139, full_name: "Emma Lee", email: "emma.lee@example.org", joined_at: new Date("2023-04-05T08:32:45Z") },
            { id: 140, full_name: "Mei Wilson", email: null, joined_at: new Date("2023-12-17T14:09:08Z") },
            { id: 141, full_name: "Karim Walker", email: "karim.walker@example.org", joined_at: new Date("2023-11-14T13:42:29Z") },
            { id: 142, full_name: "Felix Davis", email: "felix.davis@example.com", joined_at: new Date("2023-10-05T03:24:22Z") },
            { id: 143, full_name: "Fatima Hassan", email: "fatima.hassan@example.net", joined_at: new Date("2023-07-17T08:49:28Z") },
            { id: 144, full_name: "Ravi Patel", email: "ravi.patel@example.com", joined_at: new Date("2023-07-12T15:15:00Z") },
            { id: 145, full_name: "Jade Reyes", email: "jade.reyes@example.com", joined_at: new Date("2023-12-24T03:20:44Z") },
            { id: 146, full_name: "Zoe Bennett", email: "zoe.bennett@example.net", joined_at: new Date("2023-12-17T07:06:30Z") },
            { id: 147, full_name: null, email: null, joined_at: new Date("2023-08-01T06:44:25Z") },
            { id: 148, full_name: "Sara Davis", email: "sara.davis@example.net", joined_at: new Date("2023-11-14T13:54:59Z") },
            { id: 149, full_name: "Maria Demir", email: "maria.demir@example.net", joined_at: new Date("2023-12-26T14:37:06Z") },
            { id: 150, full_name: "Elena Hansen", email: "elena.hansen@example.net", joined_at: new Date("2023-12-28T15:10:35Z") },
        ],
    });
    await prisma.support_requests.createMany({
        data: [
            { id: 1, user_id: 81, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 2, user_id: 33, issue_type: "Billing", created_at: null, status: "Closed" },
            { id: 3, user_id: 132, issue_type: "Technical", created_at: new Date("2023-03-16T07:35:12Z"), status: "Closed" },
            { id: 4, user_id: 118, issue_type: "Billing", created_at: new Date("2023-05-28T15:49:42Z"), status: "Resolved" },
            { id: 5, user_id: 54, issue_type: "Account", created_at: new Date("2023-09-24T17:45:52Z"), status: "Closed" },
            { id: 6, user_id: 141, issue_type: "Billing", created_at: new Date("2023-06-24T15:03:47Z"), status: "Resolved" },
            { id: 7, user_id: 58, issue_type: "Account", created_at: new Date("2023-08-08T12:39:58Z"), status: "Open" },
            { id: 8, user_id: 119, issue_type: "Technical", created_at: new Date("2023-03-28T08:57:13Z"), status: "Closed" },
            { id: 9, user_id: 6, issue_type: "General Inquiry", created_at: new Date("2023-05-20T17:46:43Z"), status: "Resolved" },
            { id: 10, user_id: 104, issue_type: "General Inquiry", created_at: new Date("2023-06-22T16:12:54Z"), status: "Open" },
            { id: 11, user_id: 53, issue_type: "Billing", created_at: new Date("2023-07-02T09:54:45Z"), status: "Resolved" },
            { id: 12, user_id: 82, issue_type: "Billing", created_at: new Date("2023-08-05T18:59:48Z"), status: "Resolved" },
            { id: 13, user_id: 100, issue_type: "Technical", created_at: new Date("2023-06-21T14:59:03Z"), status: "Resolved" },
            { id: 14, user_id: 4, issue_type: "General Inquiry", created_at: new Date("2023-06-24T11:54:18Z"), status: "Resolved" },
            { id: 15, user_id: 122, issue_type: "Technical", created_at: new Date("2023-11-18T15:29:52Z"), status: "Closed" },
            { id: 16, user_id: 10, issue_type: "Technical", created_at: new Date("2023-03-17T08:20:32Z"), status: "Resolved" },
            { id: 17, user_id: 25, issue_type: "General Inquiry", created_at: new Date("2023-01-05T09:48:16Z"), status: "Closed" },
            { id: 18, user_id: 129, issue_type: "Technical", created_at: new Date("2023-09-18T15:40:54Z"), status: "Closed" },
            { id: 19, user_id: 90, issue_type: "Technical", created_at: new Date("2023-09-05T17:28:35Z"), status: "Closed" },
            { id: 20, user_id: 94, issue_type: "Technical", created_at: new Date("2023-11-08T12:50:25Z"), status: "Resolved" },
            { id: 21, user_id: 108, issue_type: "Billing", created_at: new Date("2023-10-01T11:22:52Z"), status: "Open" },
            { id: 22, user_id: 39, issue_type: "General Inquiry", created_at: null, status: "Closed" },
            { id: 23, user_id: 130, issue_type: "Technical", created_at: new Date("2023-01-10T15:58:40Z"), status: "Resolved" },
            { id: 24, user_id: 50, issue_type: "General Inquiry", created_at: new Date("2023-01-03T07:35:36Z"), status: "Open" },
            { id: 25, user_id: 9, issue_type: "Technical", created_at: new Date("2023-08-29T14:53:58Z"), status: "Closed" },
            { id: 26, user_id: 105, issue_type: "General Inquiry", created_at: new Date("2023-08-16T16:35:12Z"), status: "Closed" },
            { id: 27, user_id: 98, issue_type: "Technical", created_at: new Date("2023-03-11T18:51:40Z"), status: "Open" },
            { id: 28, user_id: 141, issue_type: "Account", created_at: new Date("2023-02-27T10:27:28Z"), status: "Resolved" },
            { id: 29, user_id: 129, issue_type: "Technical", created_at: new Date("2023-07-25T13:32:08Z"), status: "Open" },
            { id: 30, user_id: 1, issue_type: "Technical", created_at: new Date("2023-04-10T17:46:59Z"), status: "Closed" },
            { id: 31, user_id: 68, issue_type: "Technical", created_at: new Date("2023-09-02T14:47:47Z"), status: "Resolved" },
            { id: 32, user_id: 134, issue_type: "Technical", created_at: new Date("2023-06-08T14:58:55Z"), status: "Open" },
            { id: 33, user_id: 53, issue_type: "General Inquiry", created_at: new Date("2023-03-12T04:28:19Z"), status: "Closed" },
            { id: 34, user_id: 141, issue_type: "Billing", created_at: new Date("2023-02-22T21:31:30Z"), status: "Resolved" },
            { id: 35, user_id: 90, issue_type: "Account", created_at: new Date("2023-11-12T15:35:26Z"), status: "Closed" },
            { id: 36, user_id: 78, issue_type: "Technical", created_at: new Date("2023-03-02T16:23:26Z"), status: "Resolved" },
            { id: 37, user_id: 132, issue_type: "Billing", created_at: new Date("2023-05-28T10:09:26Z"), status: "Closed" },
            { id: 38, user_id: 114, issue_type: "Technical", created_at: new Date("2023-10-24T11:19:41Z"), status: "Resolved" },
            { id: 39, user_id: 39, issue_type: "Account", created_at: new Date("2023-05-20T10:13:43Z"), status: "Open" },
            { id: 40, user_id: 56, issue_type: "Billing", created_at: new Date("2023-10-19T15:43:19Z"), status: "Resolved" },
            { id: 41, user_id: 16, issue_type: "Technical", created_at: new Date("2023-07-13T17:02:52Z"), status: "Resolved" },
            { id: 42, user_id: 125, issue_type: "Technical", created_at: new Date("2023-07-06T11:36:03Z"), status: "Open" },
            { id: 43, user_id: 52, issue_type: "Technical", created_at: new Date("2023-03-10T12:13:54Z"), status: "Closed" },
            { id: 44, user_id: 96, issue_type: "Technical", created_at: new Date("2023-08-05T17:20:57Z"), status: "Closed" },
            { id: 45, user_id: 55, issue_type: "Technical", created_at: new Date("2023-01-14T15:16:27Z"), status: "Resolved" },
            { id: 46, user_id: 48, issue_type: "Technical", created_at: new Date("2023-03-30T16:30:34Z"), status: "Resolved" },
            { id: 47, user_id: 125, issue_type: "Technical", created_at: new Date("2023-04-24T15:55:14Z"), status: "Resolved" },
            { id: 48, user_id: 58, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 49, user_id: 118, issue_type: "Technical", created_at: new Date("2023-12-01T14:35:38Z"), status: "Closed" },
            { id: 50, user_id: 39, issue_type: "Account", created_at: new Date("2023-05-29T16:40:35Z"), status: "Resolved" },
            { id: 51, user_id: 5, issue_type: "Billing", created_at: new Date("2023-04-18T09:22:29Z"), status: "Closed" },
            { id: 52, user_id: 25, issue_type: "Account", created_at: new Date("2023-09-19T18:51:46Z"), status: "Resolved" },
            { id: 53, user_id: 48, issue_type: "Billing", created_at: new Date("2023-03-25T12:06:30Z"), status: "Closed" },
            { id: 54, user_id: 123, issue_type: "Technical", created_at: new Date("2023-01-06T11:00:19Z"), status: "Closed" },
            { id: 55, user_id: 119, issue_type: "Technical", created_at: new Date("2023-03-08T14:56:09Z"), status: "Closed" },
            { id: 56, user_id: 67, issue_type: "Technical", created_at: new Date("2023-09-27T16:11:31Z"), status: "Closed" },
            { id: 57, user_id: 39, issue_type: "Technical", created_at: new Date("2023-10-02T11:12:38Z"), status: "Closed" },
            { id: 58, user_id: 122, issue_type: "Account", created_at: new Date("2023-09-03T11:38:35Z"), status: "Closed" },
            { id: 59, user_id: 106, issue_type: "Technical", created_at: new Date("2023-08-18T11:10:49Z"), status: "Resolved" },
            { id: 60, user_id: 56, issue_type: "Technical", created_at: new Date("2023-08-04T06:47:24Z"), status: "Closed" },
            { id: 61, user_id: 91, issue_type: "Technical", created_at: new Date("2023-10-20T16:27:13Z"), status: "Closed" },
            { id: 62, user_id: 30, issue_type: "Technical", created_at: new Date("2023-09-13T09:40:41Z"), status: "Closed" },
            { id: 63, user_id: 138, issue_type: "Technical", created_at: new Date("2023-06-25T10:00:55Z"), status: "Resolved" },
            { id: 64, user_id: 102, issue_type: "Technical", created_at: new Date("2023-09-20T22:29:37Z"), status: "Closed" },
            { id: 65, user_id: 20, issue_type: "Account", created_at: null, status: "Open" },
            { id: 66, user_id: 128, issue_type: "General Inquiry", created_at: new Date("2023-06-08T12:26:27Z"), status: "Open" },
            { id: 67, user_id: 77, issue_type: "Technical", created_at: null, status: "Closed" },
            { id: 68, user_id: 147, issue_type: "Technical", created_at: new Date("2023-03-12T16:57:36Z"), status: "Closed" },
            { id: 69, user_id: 112, issue_type: "Billing", created_at: new Date("2023-05-28T15:06:52Z"), status: "Open" },
            { id: 70, user_id: 140, issue_type: "Technical", created_at: new Date("2023-04-26T12:19:01Z"), status: "Resolved" },
            { id: 71, user_id: 23, issue_type: "Technical", created_at: new Date("2023-03-28T15:30:18Z"), status: "Closed" },
            { id: 72, user_id: 102, issue_type: "Billing", created_at: null, status: "Resolved" },
            { id: 73, user_id: 116, issue_type: "Account", created_at: new Date("2023-10-19T16:54:37Z"), status: "Closed" },
            { id: 74, user_id: 107, issue_type: "Technical", created_at: new Date("2023-07-31T10:38:46Z"), status: "Closed" },
            { id: 75, user_id: 117, issue_type: "Billing", created_at: new Date("2023-02-09T12:15:27Z"), status: "Resolved" },
            { id: 76, user_id: 85, issue_type: "Technical", created_at: new Date("2023-10-21T13:42:34Z"), status: "Resolved" },
            { id: 77, user_id: 28, issue_type: "Technical", created_at: null, status: "Open" },
            { id: 78, user_id: 56, issue_type: "Billing", created_at: null, status: "Closed" },
            { id: 79, user_id: 48, issue_type: "Billing", created_at: new Date("2023-12-26T10:36:25Z"), status: "Resolved" },
            { id: 80, user_id: 67, issue_type: "Technical", created_at: new Date("2023-10-02T08:03:29Z"), status: "Closed" },
            { id: 81, user_id: 131, issue_type: "Technical", created_at: new Date("2023-01-02T11:03:48Z"), status: "Resolved" },
            { id: 82, user_id: 71, issue_type: "Technical", created_at: new Date("2023-08-06T17:25:34Z"), status: "Closed" },
            { id: 83, user_id: 36, issue_type: "Technical", created_at: null, status: "Open" },
            { id: 84, user_id: 65, issue_type: "Technical", created_at: new Date("2023-09-14T15:15:36Z"), status: "Open" },
            { id: 85, user_id: 136, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 86, user_id: 10, issue_type: "Technical", created_at: new Date("2023-06-25T11:40:04Z"), status: "Closed" },
            { id: 87, user_id: 89, issue_type: "Billing", created_at: new Date("2023-12-13T20:19:49Z"), status: "Open" },
            { id: 88, user_id: 51, issue_type: "Account", created_at: new Date("2023-04-24T08:07:38Z"), status: "Closed" },
            { id: 89, user_id: 136, issue_type: "Technical", created_at: new Date("2023-01-24T13:05:40Z"), status: "Closed" },
            { id: 90, user_id: 96, issue_type: "General Inquiry", created_at: new Date("2023-07-03T11:41:55Z"), status: "Closed" },
            { id: 91, user_id: 130, issue_type: "General Inquiry", created_at: new Date("2023-11-12T11:31:18Z"), status: "Resolved" },
            { id: 92, user_id: 112, issue_type: "Billing", created_at: new Date("2023-09-28T10:12:00Z"), status: "Resolved" },
            { id: 93, user_id: 26, issue_type: "General Inquiry", created_at: new Date("2023-04-23T16:42:03Z"), status: "Resolved" },
            { id: 94, user_id: 69, issue_type: "Technical", created_at: new Date("2023-07-01T06:42:42Z"), status: "Resolved" },
            { id: 95, user_id: 90, issue_type: "Technical", created_at: new Date("2023-02-28T13:40:59Z"), status: "Resolved" },
            { id: 96, user_id: 127, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 97, user_id: 24, issue_type: "General Inquiry", created_at: new Date("2023-06-29T15:42:47Z"), status: "Closed" },
            { id: 98, user_id: 30, issue_type: "Account", created_at: new Date("2023-04-26T10:11:27Z"), status: "Closed" },
            { id: 99, user_id: 57, issue_type: "Technical", created_at: new Date("2023-11-24T14:37:00Z"), status: "Resolved" },
            { id: 100, user_id: 38, issue_type: "Billing", created_at: new Date("2023-12-30T20:19:55Z"), status: "Resolved" },
            { id: 101, user_id: 110, issue_type: "Billing", created_at: new Date("2023-05-14T05:30:55Z"), status: "Closed" },
            { id: 102, user_id: 143, issue_type: "Technical", created_at: new Date("2023-08-07T12:44:01Z"), status: "Closed" },
            { id: 103, user_id: 11, issue_type: "Technical", created_at: null, status: "Closed" },
            { id: 104, user_id: 52, issue_type: "Billing", created_at: new Date("2023-03-15T13:43:39Z"), status: "Resolved" },
            { id: 105, user_id: 125, issue_type: "Technical", created_at: new Date("2023-11-24T10:23:48Z"), status: "Closed" },
            { id: 106, user_id: 97, issue_type: "Technical", created_at: new Date("2023-01-27T17:10:10Z"), status: "Closed" },
            { id: 107, user_id: 124, issue_type: "Technical", created_at: new Date("2023-10-18T14:14:07Z"), status: "Resolved" },
            { id: 108, user_id: 116, issue_type: "Billing", created_at: new Date("2023-01-25T10:28:27Z"), status: "Closed" },
            { id: 109, user_id: 68, issue_type: "Technical", created_at: new Date("2023-01-04T16:08:25Z"), status: "Resolved" },
            { id: 110, user_id: 80, issue_type: "Technical", created_at: new Date("2023-08-28T19:36:28Z"), status: "Resolved" },
            { id: 111, user_id: 42, issue_type: "Technical", created_at: new Date("2023-07-13T12:20:45Z"), status: "Open" },
            { id: 112, user_id: 33, issue_type: "Technical", created_at: new Date("2023-01-22T14:37:57Z"), status: "Open" },
            { id: 113, user_id: 51, issue_type: "Technical", created_at: new Date("2023-01-02T08:01:14Z"), status: "Closed" },
            { id: 114, user_id: 20, issue_type: "Billing", created_at: new Date("2023-10-11T14:59:42Z"), status: "Closed" },
            { id: 115, user_id: 78, issue_type: "Billing", created_at: null, status: "Closed" },
            { id: 116, user_id: 34, issue_type: "Billing", created_at: new Date("2023-06-27T15:13:42Z"), status: "Closed" },
            { id: 117, user_id: 75, issue_type: "General Inquiry", created_at: new Date("2023-12-04T18:10:19Z"), status: "Resolved" },
            { id: 118, user_id: 74, issue_type: "Account", created_at: new Date("2023-04-29T16:36:12Z"), status: "Resolved" },
            { id: 119, user_id: 97, issue_type: "Billing", created_at: new Date("2023-02-07T15:42:48Z"), status: "Resolved" },
            { id: 120, user_id: 150, issue_type: "General Inquiry", created_at: new Date("2023-12-23T15:42:17Z"), status: "Open" },
            { id: 121, user_id: 140, issue_type: "Billing", created_at: null, status: "Resolved" },
            { id: 122, user_id: 64, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 123, user_id: 20, issue_type: "Technical", created_at: new Date("2023-01-19T14:45:22Z"), status: "Resolved" },
            { id: 124, user_id: 101, issue_type: "General Inquiry", created_at: new Date("2023-12-11T19:29:15Z"), status: "Closed" },
            { id: 125, user_id: 83, issue_type: "Technical", created_at: new Date("2023-03-25T10:38:38Z"), status: "Closed" },
            { id: 126, user_id: 67, issue_type: "Billing", created_at: new Date("2023-11-30T08:30:03Z"), status: "Closed" },
            { id: 127, user_id: 134, issue_type: "Technical", created_at: new Date("2023-05-29T10:54:53Z"), status: "Closed" },
            { id: 128, user_id: 131, issue_type: "Technical", created_at: null, status: "Closed" },
            { id: 129, user_id: 74, issue_type: "Technical", created_at: new Date("2023-01-03T15:36:07Z"), status: "Open" },
            { id: 130, user_id: 12, issue_type: "Billing", created_at: null, status: "Resolved" },
            { id: 131, user_id: 47, issue_type: "Account", created_at: new Date("2023-01-09T16:16:04Z"), status: "Open" },
            { id: 132, user_id: 115, issue_type: "Technical", created_at: new Date("2023-09-15T16:21:23Z"), status: "Resolved" },
            { id: 133, user_id: 71, issue_type: "Technical", created_at: new Date("2023-04-01T10:02:53Z"), status: "Resolved" },
            { id: 134, user_id: 107, issue_type: "Technical", created_at: new Date("2023-07-25T10:47:39Z"), status: "Open" },
            { id: 135, user_id: 79, issue_type: "Technical", created_at: new Date("2023-11-16T09:37:54Z"), status: "Resolved" },
            { id: 136, user_id: 120, issue_type: "General Inquiry", created_at: new Date("2023-07-01T15:46:10Z"), status: "Resolved" },
            { id: 137, user_id: 116, issue_type: "Account", created_at: new Date("2023-11-19T16:36:08Z"), status: "Open" },
            { id: 138, user_id: 138, issue_type: "Technical", created_at: new Date("2023-03-23T10:26:08Z"), status: "Closed" },
            { id: 139, user_id: 50, issue_type: "Technical", created_at: new Date("2023-03-21T11:28:30Z"), status: "Resolved" },
            { id: 140, user_id: 13, issue_type: "Technical", created_at: new Date("2023-05-30T09:17:25Z"), status: "Resolved" },
            { id: 141, user_id: 51, issue_type: "Billing", created_at: new Date("2023-09-14T14:29:12Z"), status: "Resolved" },
            { id: 142, user_id: 19, issue_type: "Technical", created_at: new Date("2023-06-02T17:40:34Z"), status: "Closed" },
            { id: 143, user_id: 69, issue_type: "Account", created_at: new Date("2023-10-12T08:26:18Z"), status: "Resolved" },
            { id: 144, user_id: 20, issue_type: "Billing", created_at: new Date("2023-12-24T10:25:50Z"), status: "Closed" },
            { id: 145, user_id: 50, issue_type: "Technical", created_at: new Date("2023-10-22T03:59:00Z"), status: "Open" },
            { id: 146, user_id: 18, issue_type: "Billing", created_at: new Date("2023-07-31T13:15:41Z"), status: "Closed" },
            { id: 147, user_id: 35, issue_type: "Technical", created_at: new Date("2023-05-27T13:03:33Z"), status: "Closed" },
            { id: 148, user_id: 129, issue_type: "Billing", created_at: new Date("2023-08-18T22:12:23Z"), status: "Closed" },
            { id: 149, user_id: 85, issue_type: "Technical", created_at: new Date("2023-01-15T09:59:32Z"), status: "Closed" },
            { id: 150, user_id: 123, issue_type: "Account", created_at: new Date("2023-07-07T08:39:34Z"), status: "Open" },
            { id: 151, user_id: 133, issue_type: "Technical", created_at: new Date("2023-02-18T08:45:34Z"), status: "Closed" },
            { id: 152, user_id: 60, issue_type: "General Inquiry", created_at: new Date("2023-05-07T10:11:04Z"), status: "Resolved" },
            { id: 153, user_id: 20, issue_type: "Technical", created_at: new Date("2023-06-04T13:41:43Z"), status: "Open" },
            { id: 154, user_id: 68, issue_type: "Technical", created_at: new Date("2023-11-09T05:55:10Z"), status: "Open" },
            { id: 155, user_id: 12, issue_type: "Technical", created_at: new Date("2023-03-02T09:54:24Z"), status: "Closed" },
            { id: 156, user_id: 87, issue_type: "Billing", created_at: null, status: "Closed" },
            { id: 157, user_id: 67, issue_type: "Billing", created_at: null, status: "Closed" },
            { id: 158, user_id: 135, issue_type: "Account", created_at: new Date("2023-11-05T16:33:03Z"), status: "Resolved" },
            { id: 159, user_id: 30, issue_type: "Technical", created_at: new Date("2023-07-18T08:18:41Z"), status: "Open" },
            { id: 160, user_id: 78, issue_type: "Technical", created_at: new Date("2023-06-05T10:27:52Z"), status: "Open" },
            { id: 161, user_id: 39, issue_type: "Billing", created_at: new Date("2023-12-17T12:18:46Z"), status: "Closed" },
            { id: 162, user_id: 76, issue_type: "Billing", created_at: null, status: "Closed" },
            { id: 163, user_id: 84, issue_type: "General Inquiry", created_at: new Date("2023-08-19T11:26:41Z"), status: "Closed" },
            { id: 164, user_id: 46, issue_type: "Billing", created_at: new Date("2023-03-07T07:10:48Z"), status: "Resolved" },
            { id: 165, user_id: 146, issue_type: "Technical", created_at: new Date("2023-06-17T11:21:15Z"), status: "Closed" },
            { id: 166, user_id: 84, issue_type: "Technical", created_at: null, status: "Open" },
            { id: 167, user_id: 82, issue_type: "Billing", created_at: new Date("2023-07-28T16:47:37Z"), status: "Open" },
            { id: 168, user_id: 12, issue_type: "Billing", created_at: new Date("2023-04-14T12:00:05Z"), status: "Resolved" },
            { id: 169, user_id: 38, issue_type: "Technical", created_at: new Date("2023-06-14T10:00:48Z"), status: "Resolved" },
            { id: 170, user_id: 116, issue_type: "Billing", created_at: new Date("2023-07-18T12:30:14Z"), status: "Closed" },
            { id: 171, user_id: 23, issue_type: "Technical", created_at: new Date("2023-11-19T17:38:51Z"), status: "Open" },
            { id: 172, user_id: 69, issue_type: "Technical", created_at: new Date("2023-08-31T13:31:08Z"), status: "Closed" },
            { id: 173, user_id: 14, issue_type: "Technical", created_at: new Date("2023-01-07T21:38:33Z"), status: "Resolved" },
            { id: 174, user_id: 128, issue_type: "Technical", created_at: new Date("2023-07-06T09:31:10Z"), status: "Open" },
            { id: 175, user_id: 71, issue_type: "Billing", created_at: new Date("2023-03-12T08:18:08Z"), status: "Open" },
            { id: 176, user_id: 148, issue_type: "Technical", created_at: new Date("2023-05-28T18:52:00Z"), status: "Open" },
            { id: 177, user_id: 139, issue_type: "Technical", created_at: new Date("2023-10-28T10:44:09Z"), status: "Closed" },
            { id: 178, user_id: 27, issue_type: "Technical", created_at: new Date("2023-02-10T16:09:19Z"), status: "Resolved" },
            { id: 179, user_id: 23, issue_type: "Technical", created_at: new Date("2023-05-08T10:11:19Z"), status: "Open" },
            { id: 180, user_id: 66, issue_type: "Account", created_at: new Date("2023-10-22T16:41:55Z"), status: "Open" },
            { id: 181, user_id: 91, issue_type: "Technical", created_at: new Date("2023-01-16T10:12:09Z"), status: "Closed" },
            { id: 182, user_id: 10, issue_type: "Technical", created_at: new Date("2023-09-16T16:25:50Z"), status: "Closed" },
            { id: 183, user_id: 111, issue_type: "Account", created_at: new Date("2023-10-22T09:12:16Z"), status: "Open" },
            { id: 184, user_id: 109, issue_type: "Technical", created_at: new Date("2023-08-24T17:26:46Z"), status: "Closed" },
            { id: 185, user_id: 81, issue_type: "Account", created_at: new Date("2023-10-17T14:10:47Z"), status: "Closed" },
            { id: 186, user_id: 17, issue_type: "General Inquiry", created_at: null, status: "Open" },
            { id: 187, user_id: 130, issue_type: "General Inquiry", created_at: new Date("2023-09-18T12:08:46Z"), status: "Resolved" },
            { id: 188, user_id: 29, issue_type: "Technical", created_at: new Date("2023-04-30T20:24:43Z"), status: "Closed" },
            { id: 189, user_id: 124, issue_type: "Account", created_at: new Date("2023-11-02T17:41:28Z"), status: "Closed" },
            { id: 190, user_id: 141, issue_type: "Account", created_at: new Date("2023-02-27T22:05:38Z"), status: "Resolved" },
            { id: 191, user_id: 116, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 192, user_id: 96, issue_type: "Technical", created_at: new Date("2023-03-21T09:29:16Z"), status: "Closed" },
            { id: 193, user_id: 38, issue_type: "Billing", created_at: new Date("2023-03-08T13:41:39Z"), status: "Closed" },
            { id: 194, user_id: 3, issue_type: "Technical", created_at: new Date("2023-06-11T17:09:02Z"), status: "Open" },
            { id: 195, user_id: 38, issue_type: "Technical", created_at: new Date("2023-07-22T09:16:25Z"), status: "Closed" },
            { id: 196, user_id: 79, issue_type: "Technical", created_at: new Date("2023-03-20T16:18:16Z"), status: "Closed" },
            { id: 197, user_id: 77, issue_type: "General Inquiry", created_at: new Date("2023-10-23T10:04:42Z"), status: "Closed" },
            { id: 198, user_id: 59, issue_type: "Billing", created_at: null, status: "Resolved" },
            { id: 199, user_id: 42, issue_type: "Technical", created_at: null, status: "Resolved" },
            { id: 200, user_id: 98, issue_type: "Technical", created_at: new Date("2023-09-28T17:20:02Z"), status: "Resolved" },
        ],
    });
    await prisma.user_engagement.createMany({
        data: [
            { id: 1, user_id: 27, requests_count: 4, responses_count: 0, last_active: new Date("2023-03-19T19:01:20Z") },
            { id: 2, user_id: 90, requests_count: 35, responses_count: 25, last_active: new Date("2023-02-10T16:01:59Z") },
            { id: 3, user_id: 133, requests_count: 24, responses_count: 26, last_active: null },
            { id: 4, user_id: 129, requests_count: 41, responses_count: 66, last_active: new Date("2023-10-27T03:14:41Z") },
            { id: 5, user_id: 147, requests_count: 35, responses_count: 37, last_active: new Date("2023-11-09T05:08:57Z") },
            { id: 6, user_id: 107, requests_count: 8, responses_count: 28, last_active: new Date("2023-11-14T03:04:22Z") },
            { id: 7, user_id: 51, requests_count: 4, responses_count: 2, last_active: new Date("2023-08-14T07:57:16Z") },
            { id: 8, user_id: 77, requests_count: 60, responses_count: 78, last_active: new Date("2023-01-01T12:30:17Z") },
            { id: 9, user_id: 68, requests_count: 34, responses_count: 45, last_active: new Date("2023-07-09T13:25:46Z") },
            { id: 10, user_id: 142, requests_count: 60, responses_count: 67, last_active: new Date("2023-05-23T05:39:33Z") },
            { id: 11, user_id: 104, requests_count: 3, responses_count: 5, last_active: new Date("2023-03-25T17:46:56Z") },
            { id: 12, user_id: 11, requests_count: 68, responses_count: 89, last_active: new Date("2023-02-16T17:28:18Z") },
            { id: 13, user_id: 8, requests_count: 55, responses_count: 35, last_active: new Date("2023-02-11T15:31:38Z") },
            { id: 14, user_id: 126, requests_count: 61, responses_count: 6, last_active: new Date("2023-08-13T01:08:51Z") },
            { id: 15, user_id: 125, requests_count: 24, responses_count: 44, last_active: new Date("2023-10-26T06:05:06Z") },
            { id: 16, user_id: 132, requests_count: 66, responses_count: 51, last_active: new Date("2023-02-06T10:39:27Z") },
            { id: 17, user_id: 42, requests_count: 16, responses_count: 2, last_active: null },
            { id: 18, user_id: 109, requests_count: 68, responses_count: 75, last_active: new Date("2023-10-22T15:47:44Z") },
            { id: 19, user_id: 27, requests_count: 32, responses_count: 32, last_active: new Date("2023-11-06T22:06:55Z") },
            { id: 20, user_id: 31, requests_count: 86, responses_count: 39, last_active: new Date("2023-01-07T14:26:42Z") },
            { id: 21, user_id: 127, requests_count: 1, responses_count: 27, last_active: new Date("2023-10-12T22:12:22Z") },
            { id: 22, user_id: 126, requests_count: 69, responses_count: 7, last_active: new Date("2023-01-29T07:03:01Z") },
            { id: 23, user_id: 139, requests_count: 15, responses_count: 0, last_active: new Date("2023-09-07T00:35:31Z") },
            { id: 24, user_id: 130, requests_count: 14, responses_count: 2, last_active: new Date("2023-11-09T07:56:45Z") },
            { id: 25, user_id: 78, requests_count: 0, responses_count: 25, last_active: new Date("2023-08-30T08:17:18Z") },
            { id: 26, user_id: 56, requests_count: 10, responses_count: 45, last_active: new Date("2023-07-03T01:58:59Z") },
            { id: 27, user_id: 33, requests_count: 25, responses_count: 0, last_active: new Date("2023-05-19T18:57:31Z") },
            { id: 28, user_id: 98, requests_count: 60, responses_count: 54, last_active: new Date("2023-11-05T08:39:29Z") },
            { id: 29, user_id: 105, requests_count: 20, responses_count: 16, last_active: new Date("2023-03-29T20:55:29Z") },
            { id: 30, user_id: 84, requests_count: 10, responses_count: 84, last_active: new Date("2023-05-10T03:01:09Z") },
            { id: 31, user_id: 74, requests_count: 62, responses_count: 31, last_active: new Date("2023-02-01T22:14:18Z") },
            { id: 32, user_id: 37, requests_count: 19, responses_count: 1, last_active: new Date("2023-12-31T01:06:26Z") },
            { id: 33, user_id: 139, requests_count: 22, responses_count: 12, last_active: new Date("2023-02-09T04:38:38Z") },
            { id: 34, user_id: 5, requests_count: 71, responses_count: 81, last_active: new Date("2023-02-01T00:07:01Z") },
            { id: 35, user_id: 134, requests_count: 0, responses_count: 18, last_active: new Date("2023-02-21T06:25:16Z") },
            { id: 36, user_id: 92, requests_count: 52, responses_count: 51, last_active: null },
            { id: 37, user_id: 135, requests_count: 8, responses_count: 81, last_active: new Date("2023-08-19T11:46:35Z") },
            { id: 38, user_id: 43, requests_count: 24, responses_count: 1, last_active: null },
            { id: 39, user_id: 36, requests_count: 0, responses_count: 88, last_active: new Date("2023-12-22T17:31:28Z") },
            { id: 40, user_id: 138, requests_count: 39, responses_count: 67, last_active: new Date("2023-07-25T19:51:07Z") },
            { id: 41, user_id: 5, requests_count: 75, responses_count: 26, last_active: new Date("2023-03-05T13:25:13Z") },
            { id: 42, user_id: 130, requests_count: 26, responses_count: 57, last_active: null },
            { id: 43, user_id: 131, requests_count: 46, responses_count: 7, last_active: new Date("2023-08-12T07:22:49Z") },
            { id: 44, user_id: 75, requests_count: 44, responses_count: 0, last_active: new Date("2023-05-11T01:24:54Z") },
            { id: 45, user_id: 110, requests_count: 13, responses_count: 97, last_active: new Date("2023-10-17T10:20:31Z") },
            { id: 46, user_id: 113, requests_count: 55, responses_count: 12, last_active: new Date("2023-02-02T07:30:37Z") },
            { id: 47, user_id: 2, requests_count: 40, responses_count: 68, last_active: new Date("2023-02-08T01:41:36Z") },
            { id: 48, user_id: 74, requests_count: 89, responses_count: 37, last_active: new Date("2023-07-15T12:39:51Z") },
            { id: 49, user_id: 54, requests_count: 3, responses_count: 59, last_active: null },
            { id: 50, user_id: 12, requests_count: 67, responses_count: 35, last_active: new Date("2023-01-01T13:25:26Z") },
            { id: 51, user_id: 69, requests_count: 2, responses_count: 18, last_active: new Date("2023-09-02T18:09:31Z") },
            { id: 52, user_id: 29, requests_count: 30, responses_count: 74, last_active: new Date("2023-08-26T03:16:36Z") },
            { id: 53, user_id: 71, requests_count: 43, responses_count: 69, last_active: new Date("2023-12-26T23:00:19Z") },
            { id: 54, user_id: 44, requests_count: 7, responses_count: 11, last_active: new Date("2023-06-27T20:08:09Z") },
            { id: 55, user_id: 148, requests_count: 0, responses_count: 71, last_active: new Date("2023-06-12T16:43:22Z") },
            { id: 56, user_id: 46, requests_count: 1, responses_count: 0, last_active: new Date("2023-02-22T06:19:04Z") },
            { id: 57, user_id: 88, requests_count: 1, responses_count: 38, last_active: new Date("2023-09-18T16:04:53Z") },
            { id: 58, user_id: 143, requests_count: 0, responses_count: 75, last_active: new Date("2023-11-20T00:23:27Z") },
            { id: 59, user_id: 21, requests_count: 17, responses_count: 32, last_active: new Date("2023-09-13T13:16:41Z") },
            { id: 60, user_id: 70, requests_count: 51, responses_count: 30, last_active: new Date("2023-03-27T21:39:19Z") },
            { id: 61, user_id: 10, requests_count: 66, responses_count: 92, last_active: new Date("2023-01-21T00:23:14Z") },
            { id: 62, user_id: 33, requests_count: 17, responses_count: 38, last_active: new Date("2023-06-24T10:23:27Z") },
            { id: 63, user_id: 10, requests_count: 16, responses_count: 7, last_active: new Date("2023-11-25T16:37:25Z") },
            { id: 64, user_id: 103, requests_count: 90, responses_count: 44, last_active: new Date("2023-01-12T16:52:47Z") },
            { id: 65, user_id: 62, requests_count: 62, responses_count: 84, last_active: new Date("2023-11-04T05:47:56Z") },
            { id: 66, user_id: 131, requests_count: 85, responses_count: 32, last_active: new Date("2023-09-11T06:45:50Z") },
            { id: 67, user_id: 37, requests_count: 95, responses_count: 4, last_active: null },
            { id: 68, user_id: 28, requests_count: 22, responses_count: 4, last_active: new Date("2023-01-09T19:16:38Z") },
            { id: 69, user_id: 147, requests_count: 17, responses_count: 16, last_active: new Date("2023-11-27T07:48:48Z") },
            { id: 70, user_id: 25, requests_count: 50, responses_count: 8, last_active: null },
            { id: 71, user_id: 2, requests_count: 25, responses_count: 19, last_active: new Date("2023-09-13T00:17:12Z") },
            { id: 72, user_id: 13, requests_count: 0, responses_count: 18, last_active: new Date("2023-05-07T22:38:17Z") },
            { id: 73, user_id: 27, requests_count: 81, responses_count: 56, last_active: new Date("2023-10-22T03:04:40Z") },
            { id: 74, user_id: 111, requests_count: 7, responses_count: 51, last_active: new Date("2023-09-18T18:46:51Z") },
            { id: 75, user_id: 30, requests_count: 39, responses_count: 0, last_active: new Date("2023-03-19T22:43:17Z") },
            { id: 76, user_id: 61, requests_count: 79, responses_count: 22, last_active: new Date("2023-06-19T22:36:17Z") },
            { id: 77, user_id: 36, requests_count: 20, responses_count: 9, last_active: new Date("2023-03-02T21:41:06Z") },
            { id: 78, user_id: 114, requests_count: 38, responses_count: 9, last_active: new Date("2023-01-26T15:22:29Z") },
            { id: 79, user_id: 17, requests_count: 0, responses_count: 84, last_active: new Date("2023-12-14T10:30:52Z") },
            { id: 80, user_id: 104, requests_count: 6, responses_count: 2, last_active: new Date("2023-09-30T17:38:04Z") },
            { id: 81, user_id: 26, requests_count: 7, responses_count: 5, last_active: null },
            { id: 82, user_id: 69, requests_count: 1, responses_count: 2, last_active: new Date("2023-03-15T14:20:20Z") },
            { id: 83, user_id: 76, requests_count: 4, responses_count: 11, last_active: new Date("2023-09-11T05:55:38Z") },
            { id: 84, user_id: 50, requests_count: 45, responses_count: 1, last_active: new Date("2023-08-28T00:19:44Z") },
            { id: 85, user_id: 41, requests_count: 6, responses_count: 52, last_active: new Date("2023-12-03T04:41:30Z") },
            { id: 86, user_id: 64, requests_count: 2, responses_count: 10, last_active: new Date("2023-11-21T02:53:20Z") },
            { id: 87, user_id: 38, requests_count: 48, responses_count: 18, last_active: null },
            { id: 88, user_id: 53, requests_count: 23, responses_count: 17, last_active: new Date("2023-06-06T13:37:57Z") },
            { id: 89, user_id: 44, requests_count: 0, responses_count: 99, last_active: new Date("2023-02-05T03:26:43Z") },
            { id: 90, user_id: 23, requests_count: 41, responses_count: 30, last_active: new Date("2023-02-07T10:27:22Z") },
            { id: 91, user_id: 120, requests_count: 3, responses_count: 56, last_active: new Date("2023-10-25T07:41:32Z") },
            { id: 92, user_id: 80, requests_count: 30, responses_count: 1, last_active: new Date("2023-08-20T16:20:36Z") },
            { id: 93, user_id: 126, requests_count: 0, responses_count: 38, last_active: new Date("2023-01-11T12:33:18Z") },
            { id: 94, user_id: 142, requests_count: 79, responses_count: 45, last_active: new Date("2023-08-23T16:30:19Z") },
            { id: 95, user_id: 117, requests_count: 13, responses_count: 0, last_active: new Date("2023-07-02T15:11:25Z") },
            { id: 96, user_id: 60, requests_count: 7, responses_count: 0, last_active: new Date("2023-08-07T13:54:13Z") },
            { id: 97, user_id: 43, requests_count: 95, responses_count: 30, last_active: new Date("2023-05-02T00:20:19Z") },
            { id: 98, user_id: 82, requests_count: 49, responses_count: 56, last_active: new Date("2023-12-01T20:21:11Z") },
            { id: 99, user_id: 33, requests_count: 20, responses_count: 5, last_active: new Date("2023-12-23T19:52:06Z") },
            { id: 100, user_id: 88, requests_count: 1, responses_count: 46, last_active: new Date("2023-06-17T20:58:35Z") },
            { id: 101, user_id: 115, requests_count: 9, responses_count: 51, last_active: new Date("2023-07-12T23:18:03Z") },
            { id: 102, user_id: 104, requests_count: 0, responses_count: 2, last_active: new Date("2023-11-13T20:35:39Z") },
            { id: 103, user_id: 57, requests_count: 3, responses_count: 38, last_active: new Date("2023-05-24T09:03:46Z") },
            { id: 104, user_id: 65, requests_count: 5, responses_count: 41, last_active: new Date("2023-07-19T05:05:21Z") },
            { id: 105, user_id: 13, requests_count: 0, responses_count: 45, last_active: new Date("2023-11-26T04:15:49Z") },
            { id: 106, user_id: 55, requests_count: 68, responses_count: 7, last_active: new Date("2023-11-14T19:48:00Z") },
            { id: 107, user_id: 135, requests_count: 77, responses_count: 4, last_active: new Date("2023-05-03T19:58:13Z") },
            { id: 108, user_id: 103, requests_count: 65, responses_count: 84, last_active: new Date("2023-05-02T10:34:32Z") },
            { id: 109, user_id: 51, requests_count: 4, responses_count: 95, last_active: new Date("2023-11-10T03:57:18Z") },
            { id: 110, user_id: 94, requests_count: 56, responses_count: 4, last_active: new Date("2023-03-13T03:50:39Z") },
            { id: 111, user_id: 92, requests_count: 3, responses_count: 14, last_active: new Date("2023-08-13T16:42:39Z") },
            { id: 112, user_id: 123, requests_count: 11, responses_count: 48, last_active: null },
            { id: 113, user_id: 103, requests_count: 57, responses_count: 33, last_active: new Date("2023-01-15T20:15:06Z") },
            { id: 114, user_id: 126, requests_count: 12, responses_count: 69, last_active: new Date("2023-02-06T08:01:05Z") },
            { id: 115, user_id: 82, requests_count: 0, responses_count: 94, last_active: new Date("2023-07-23T16:46:58Z") },
            { id: 116, user_id: 55, requests_count: 96, responses_count: 1, last_active: new Date("2023-05-10T00:46:37Z") },
            { id: 117, user_id: 15, requests_count: 17, responses_count: 47, last_active: new Date("2023-02-24T14:29:30Z") },
            { id: 118, user_id: 137, requests_count: 31, responses_count: 24, last_active: new Date("2023-12-15T06:58:01Z") },
            { id: 119, user_id: 145, requests_count: 93, responses_count: 8, last_active: new Date("2023-03-07T04:37:14Z") },
            { id: 120, user_id: 48, requests_count: 61, responses_count: 25, last_active: new Date("2023-08-29T16:04:09Z") },
            { id: 121, user_id: 100, requests_count: 18, responses_count: 29, last_active: new Date("2023-01-01T05:50:36Z") },
            { id: 122, user_id: 79, requests_count: 55, responses_count: 29, last_active: new Date("2023-05-08T20:24:16Z") },
            { id: 123, user_id: 109, requests_count: 5, responses_count: 14, last_active: new Date("2023-01-26T21:46:36Z") },
            { id: 124, user_id: 93, requests_count: 18, responses_count: 1, last_active: new Date("2023-06-04T10:22:34Z") },
            { id: 125, user_id: 107, requests_count: 44, responses_count: 2, last_active: null },
            { id: 126, user_id: 112, requests_count: 21, responses_count: 0, last_active: new Date("2023-01-29T23:29:29Z") },
            { id: 127, user_id: 12, requests_count: 0, responses_count: 3, last_active: new Date("2023-11-22T22:07:08Z") },
            { id: 128, user_id: 85, requests_count: 61, responses_count: 21, last_active: new Date("2023-01-16T19:44:09Z") },
            { id: 129, user_id: 148, requests_count: 14, responses_count: 20, last_active: new Date("2023-01-31T01:46:34Z") },
            { id: 130, user_id: 145, requests_count: 89, responses_count: 22, last_active: new Date("2023-07-04T02:10:58Z") },
            { id: 131, user_id: 57, requests_count: 20, responses_count: 44, last_active: new Date("2023-11-01T07:18:39Z") },
            { id: 132, user_id: 52, requests_count: 17, responses_count: 9, last_active: new Date("2023-01-18T22:30:55Z") },
            { id: 133, user_id: 129, requests_count: 92, responses_count: 2, last_active: new Date("2023-12-27T03:06:09Z") },
            { id: 134, user_id: 54, requests_count: 57, responses_count: 86, last_active: new Date("2023-06-16T08:55:23Z") },
            { id: 135, user_id: 132, requests_count: 2, responses_count: 17, last_active: new Date("2023-01-06T08:20:29Z") },
            { id: 136, user_id: 14, requests_count: 24, responses_count: 19, last_active: new Date("2023-11-01T08:47:14Z") },
            { id: 137, user_id: 133, requests_count: 4, responses_count: 40, last_active: new Date("2023-06-01T00:08:13Z") },
            { id: 138, user_id: 102, requests_count: 36, responses_count: 19, last_active: null },
            { id: 139, user_id: 27, requests_count: 8, responses_count: 0, last_active: new Date("2023-02-20T14:14:11Z") },
            { id: 140, user_id: 124, requests_count: 98, responses_count: 46, last_active: new Date("2023-11-09T15:12:46Z") },
            { id: 141, user_id: 127, requests_count: 83, responses_count: 67, last_active: new Date("2023-06-01T23:25:20Z") },
            { id: 142, user_id: 54, requests_count: 6, responses_count: 48, last_active: new Date("2023-11-01T23:23:30Z") },
            { id: 143, user_id: 107, requests_count: 3, responses_count: 37, last_active: new Date("2023-12-20T21:17:23Z") },
            { id: 144, user_id: 15, requests_count: 23, responses_count: 7, last_active: new Date("2023-03-07T20:36:47Z") },
            { id: 145, user_id: 134, requests_count: 36, responses_count: 9, last_active: new Date("2023-01-25T06:01:18Z") },
            { id: 146, user_id: 51, requests_count: 1, responses_count: 22, last_active: new Date("2023-04-05T05:00:23Z") },
            { id: 147, user_id: 21, requests_count: 68, responses_count: 12, last_active: new Date("2023-11-21T03:51:36Z") },
            { id: 148, user_id: 57, requests_count: 5, responses_count: 12, last_active: new Date("2023-04-03T23:24:00Z") },
            { id: 149, user_id: 116, requests_count: 84, responses_count: 26, last_active: new Date("2023-04-12T13:52:01Z") },
            { id: 150, user_id: 39, requests_count: 71, responses_count: 3, last_active: new Date("2023-07-16T15:59:16Z") },
            { id: 151, user_id: 5, requests_count: 9, responses_count: 40, last_active: new Date("2023-08-22T20:29:59Z") },
            { id: 152, user_id: 110, requests_count: 1, responses_count: 82, last_active: new Date("2023-01-04T13:35:07Z") },
            { id: 153, user_id: 31, requests_count: 6, responses_count: 25, last_active: new Date("2023-07-10T18:21:30Z") },
            { id: 154, user_id: 114, requests_count: 58, responses_count: 17, last_active: new Date("2023-05-18T19:56:56Z") },
            { id: 155, user_id: 25, requests_count: 3, responses_count: 90, last_active: new Date("2023-01-29T13:01:16Z") },
            { id: 156, user_id: 36, requests_count: 10, responses_count: 0, last_active: new Date("2023-03-28T19:27:13Z") },
            { id: 157, user_id: 66, requests_count: 81, responses_count: 13, last_active: new Date("2023-08-07T20:29:10Z") },
            { id: 158, user_id: 148, requests_count: 22, responses_count: 4, last_active: new Date("2023-06-10T03:03:31Z") },
            { id: 159, user_id: 58, requests_count: 3, responses_count: 60, last_active: null },
            { id: 160, user_id: 60, requests_count: 59, responses_count: 1, last_active: new Date("2023-03-14T12:54:03Z") },
            { id: 161, user_id: 73, requests_count: 0, responses_count: 20, last_active: new Date("2023-03-13T04:15:40Z") },
            { id: 162, user_id: 135, requests_count: 1, responses_count: 37, last_active: new Date("2023-05-19T01:39:37Z") },
            { id: 163, user_id: 149, requests_count: 73, responses_count: 85, last_active: new Date("2023-06-28T08:53:16Z") },
            { id: 164, user_id: 72, requests_count: 42, responses_count: 16, last_active: new Date("2023-05-27T15:44:22Z") },
            { id: 165, user_id: 75, requests_count: 15, responses_count: 7, last_active: new Date("2023-03-06T02:49:13Z") },
            { id: 166, user_id: 100, requests_count: 30, responses_count: 70, last_active: new Date("2023-10-29T21:56:15Z") },
            { id: 167, user_id: 31, requests_count: 60, responses_count: 25, last_active: new Date("2023-08-22T18:35:22Z") },
            { id: 168, user_id: 53, requests_count: 84, responses_count: 3, last_active: new Date("2023-10-26T22:25:21Z") },
            { id: 169, user_id: 27, requests_count: 38, responses_count: 0, last_active: new Date("2023-11-23T02:38:31Z") },
            { id: 170, user_id: 140, requests_count: 14, responses_count: 36, last_active: new Date("2023-07-03T12:45:54Z") },
            { id: 171, user_id: 99, requests_count: 1, responses_count: 0, last_active: new Date("2023-06-11T00:12:39Z") },
            { id: 172, user_id: 21, requests_count: 53, responses_count: 1, last_active: new Date("2023-08-23T06:32:42Z") },
            { id: 173, user_id: 36, requests_count: 4, responses_count: 22, last_active: new Date("2023-01-12T22:26:31Z") },
            { id: 174, user_id: 94, requests_count: 32, responses_count: 1, last_active: new Date("2023-01-22T16:03:02Z") },
            { id: 175, user_id: 3, requests_count: 1, responses_count: 1, last_active: new Date("2023-05-24T13:29:03Z") },
            { id: 176, user_id: 44, requests_count: 3, responses_count: 42, last_active: new Date("2023-03-16T19:34:32Z") },
            { id: 177, user_id: 60, requests_count: 34, responses_count: 83, last_active: new Date("2023-09-13T20:17:09Z") },
            { id: 178, user_id: 84, requests_count: 68, responses_count: 82, last_active: null },
            { id: 179, user_id: 106, requests_count: 8, responses_count: 41, last_active: new Date("2023-09-24T17:20:28Z") },
            { id: 180, user_id: 134, requests_count: 0, responses_count: 8, last_active: new Date("2023-05-21T15:59:05Z") },
            { id: 181, user_id: 39, requests_count: 0, responses_count: 62, last_active: new Date("2023-09-22T11:01:47Z") },
            { id: 182, user_id: 101, requests_count: 95, responses_count: 8, last_active: new Date("2023-11-15T19:39:11Z") },
            { id: 183, user_id: 104, requests_count: 74, responses_count: 7, last_active: new Date("2023-11-28T02:43:34Z") },
            { id: 184, user_id: 74, requests_count: 49, responses_count: 2, last_active: null },
            { id: 185, user_id: 90, requests_count: 47, responses_count: 69, last_active: new Date("2023-02-08T18:49:40Z") },
            { id: 186, user_id: 109, requests_count: 57, responses_count: 90, last_active: new Date("2023-06-21T05:51:22Z") },
            { id: 187, user_id: 32, requests_count: 10, responses_count: 20, last_active: new Date("2023-07-31T08:41:14Z") },
            { id: 188, user_id: 64, requests_count: 67, responses_count: 35, last_active: null },
            { id: 189, user_id: 1, requests_count: 16, responses_count: 0, last_active: new Date("2023-09-18T22:48:07Z") },
            { id: 190, user_id: 92, requests_count: 3, responses_count: 82, last_active: new Date("2023-08-17T16:54:33Z") },
            { id: 191, user_id: 8, requests_count: 0, responses_count: 45, last_active: new Date("2023-08-17T03:55:04Z") },
            { id: 192, user_id: 103, requests_count: 3, responses_count: 24, last_active: new Date("2023-05-02T23:33:40Z") },
            { id: 193, user_id: 61, requests_count: 1, responses_count: 84, last_active: new Date("2023-12-02T14:18:28Z") },
            { id: 194, user_id: 121, requests_count: 93, responses_count: 10, last_active: new Date("2023-08-23T02:35:17Z") },
            { id: 195, user_id: 46, requests_count: 21, responses_count: 96, last_active: new Date("2023-03-17T20:43:47Z") },
            { id: 196, user_id: 21, requests_count: 5, responses_count: 35, last_active: new Date("2023-05-20T20:43:03Z") },
            { id: 197, user_id: 17, requests_count: 0, responses_count: 38, last_active: new Date("2023-10-31T03:48:06Z") },
            { id: 198, user_id: 133, requests_count: 46, responses_count: 3, last_active: new Date("2023-01-29T19:11:34Z") },
            { id: 199, user_id: 145, requests_count: 7, responses_count: 3, last_active: new Date("2023-04-25T20:22:54Z") },
            { id: 200, user_id: 126, requests_count: 67, responses_count: 30, last_active: new Date("2023-10-26T19:37:38Z") },
            { id: 201, user_id: 17, requests_count: 1, responses_count: 12, last_active: new Date("2023-01-09T21:44:46Z") },
            { id: 202, user_id: 5, requests_count: 2, responses_count: 55, last_active: new Date("2023-01-04T13:07:22Z") },
            { id: 203, user_id: 17, requests_count: 63, responses_count: 3, last_active: null },
            { id: 204, user_id: 116, requests_count: 62, responses_count: 0, last_active: new Date("2023-01-20T09:53:54Z") },
            { id: 205, user_id: 3, requests_count: 16, responses_count: 21, last_active: new Date("2023-05-23T15:11:50Z") },
            { id: 206, user_id: 107, requests_count: 58, responses_count: 17, last_active: new Date("2023-05-23T06:44:13Z") },
            { id: 207, user_id: 35, requests_count: 74, responses_count: 25, last_active: new Date("2023-11-01T17:09:05Z") },
            { id: 208, user_id: 107, requests_count: 0, responses_count: 0, last_active: new Date("2023-05-10T03:34:49Z") },
            { id: 209, user_id: 43, requests_count: 26, responses_count: 33, last_active: new Date("2023-06-23T17:19:14Z") },
            { id: 210, user_id: 89, requests_count: 6, responses_count: 3, last_active: new Date("2023-04-28T10:51:57Z") },
            { id: 211, user_id: 5, requests_count: 1, responses_count: 17, last_active: new Date("2023-03-23T19:47:45Z") },
            { id: 212, user_id: 96, requests_count: 14, responses_count: 1, last_active: new Date("2023-06-04T08:48:09Z") },
            { id: 213, user_id: 67, requests_count: 3, responses_count: 5, last_active: new Date("2023-12-04T18:22:29Z") },
            { id: 214, user_id: 147, requests_count: 2, responses_count: 46, last_active: new Date("2023-04-04T05:09:08Z") },
            { id: 215, user_id: 72, requests_count: 55, responses_count: 91, last_active: new Date("2023-04-13T17:38:45Z") },
            { id: 216, user_id: 136, requests_count: 18, responses_count: 57, last_active: new Date("2023-11-02T22:19:44Z") },
            { id: 217, user_id: 31, requests_count: 43, responses_count: 8, last_active: new Date("2023-06-30T07:50:42Z") },
            { id: 218, user_id: 11, requests_count: 27, responses_count: 12, last_active: new Date("2023-09-25T14:26:05Z") },
            { id: 219, user_id: 116, requests_count: 15, responses_count: 1, last_active: new Date("2023-02-02T17:16:03Z") },
            { id: 220, user_id: 20, requests_count: 90, responses_count: 4, last_active: null },
            { id: 221, user_id: 143, requests_count: 15, responses_count: 5, last_active: new Date("2023-02-28T03:53:41Z") },
            { id: 222, user_id: 121, requests_count: 41, responses_count: 30, last_active: new Date("2023-05-03T23:09:00Z") },
            { id: 223, user_id: 147, requests_count: 71, responses_count: 65, last_active: new Date("2023-01-07T10:53:00Z") },
            { id: 224, user_id: 27, requests_count: 11, responses_count: 2, last_active: null },
            { id: 225, user_id: 139, requests_count: 89, responses_count: 1, last_active: new Date("2023-03-21T09:12:24Z") },
            { id: 226, user_id: 79, requests_count: 48, responses_count: 39, last_active: new Date("2023-10-07T16:13:55Z") },
            { id: 227, user_id: 23, requests_count: 69, responses_count: 2, last_active: new Date("2023-06-29T22:33:53Z") },
            { id: 228, user_id: 132, requests_count: 2, responses_count: 0, last_active: new Date("2023-01-06T02:13:21Z") },
            { id: 229, user_id: 77, requests_count: 45, responses_count: 25, last_active: new Date("2023-11-18T03:38:03Z") },
            { id: 230, user_id: 104, requests_count: 56, responses_count: 100, last_active: new Date("2023-09-16T22:30:58Z") },
            { id: 231, user_id: 18, requests_count: 15, responses_count: 2, last_active: new Date("2023-10-28T00:35:57Z") },
            { id: 232, user_id: 101, requests_count: 17, responses_count: 11, last_active: null },
            { id: 233, user_id: 112, requests_count: 8, responses_count: 54, last_active: new Date("2023-04-02T13:40:09Z") },
            { id: 234, user_id: 87, requests_count: 59, responses_count: 45, last_active: new Date("2023-09-09T00:34:49Z") },
            { id: 235, user_id: 142, requests_count: 0, responses_count: 78, last_active: new Date("2023-12-07T18:30:03Z") },
            { id: 236, user_id: 91, requests_count: 57, responses_count: 39, last_active: new Date("2023-04-26T20:37:05Z") },
            { id: 237, user_id: 74, requests_count: 78, responses_count: 22, last_active: new Date("2023-06-12T12:04:51Z") },
            { id: 238, user_id: 39, requests_count: 53, responses_count: 4, last_active: new Date("2023-07-20T07:48:14Z") },
            { id: 239, user_id: 40, requests_count: 3, responses_count: 14, last_active: new Date("2023-05-29T05:44:49Z") },
            { id: 240, user_id: 62, requests_count: 79, responses_count: 48, last_active: new Date("2023-07-04T17:45:10Z") },
            { id: 241, user_id: 143, requests_count: 31, responses_count: 41, last_active: null },
            { id: 242, user_id: 30, requests_count: 3, responses_count: 37, last_active: new Date("2023-11-11T12:53:08Z") },
            { id: 243, user_id: 32, requests_count: 25, responses_count: 15, last_active: new Date("2023-08-16T06:26:11Z") },
            { id: 244, user_id: 58, requests_count: 43, responses_count: 0, last_active: new Date("2023-12-30T18:39:53Z") },
            { id: 245, user_id: 15, requests_count: 4, responses_count: 8, last_active: new Date("2023-11-08T21:51:53Z") },
            { id: 246, user_id: 52, requests_count: 38, responses_count: 96, last_active: new Date("2023-04-23T05:07:33Z") },
            { id: 247, user_id: 101, requests_count: 5, responses_count: 1, last_active: new Date("2023-01-28T06:08:49Z") },
            { id: 248, user_id: 81, requests_count: 40, responses_count: 34, last_active: new Date("2023-04-26T15:37:49Z") },
            { id: 249, user_id: 72, requests_count: 4, responses_count: 12, last_active: new Date("2023-01-03T18:51:56Z") },
            { id: 250, user_id: 119, requests_count: 22, responses_count: 89, last_active: new Date("2023-08-22T19:41:17Z") },
        ],
    });
    await prisma.user_responses.createMany({
        data: [
            { id: 1, request_id: 35, user_id: 107, response_content: "A late follow-up: the payment was rescheduled.", created_at: new Date("2023-09-23T19:00:31Z"), response_length: 399, sentiment_score: "0.28" },
            { id: 2, request_id: 93, user_id: 46, response_content: "A routine follow-up: the booking was approved.", created_at: new Date("2023-02-28T13:15:30Z"), response_length: 394, sentiment_score: "-0.35" },
            { id: 3, request_id: 138, user_id: 87, response_content: "The account owner reported an incomplete issue; the appointment was closed.", created_at: new Date("2023-02-25T06:30:27Z"), response_length: 268, sentiment_score: "0.00" },
            { id: 4, request_id: 124, user_id: 124, response_content: null, created_at: new Date("2023-03-07T19:33:51Z"), response_length: 218, sentiment_score: "0.38" },
            { id: 5, request_id: 187, user_id: 43, response_content: "The shipment was processed — repeat case, no further action.", created_at: new Date("2023-10-28T16:03:58Z"), response_length: 274, sentiment_score: "-0.06" },
            { id: 6, request_id: 43, user_id: 64, response_content: "Flagged as repeat. The team replaced the session.", created_at: new Date("2023-01-13T14:51:38Z"), response_length: 305, sentiment_score: "-0.30" },
            { id: 7, request_id: 200, user_id: 82, response_content: "The request was processed after an unusual check.", created_at: new Date("2023-04-23T14:22:41Z"), response_length: 129, sentiment_score: "0.57" },
            { id: 8, request_id: 115, user_id: 140, response_content: "The customer asked for a change and the item was replaced.", created_at: new Date("2023-10-07T07:35:59Z"), response_length: 151, sentiment_score: "-0.19" },
            { id: 9, request_id: 200, user_id: 116, response_content: "An urgent booking was reviewed the same day.", created_at: new Date("2023-11-02T16:24:14Z"), response_length: 319, sentiment_score: "0.59" },
            { id: 10, request_id: 117, user_id: 22, response_content: "The order was closed — automatic case, no further action.", created_at: new Date("2023-06-16T11:07:41Z"), response_length: 280, sentiment_score: "-0.41" },
            { id: 11, request_id: 175, user_id: 54, response_content: null, created_at: new Date("2023-07-20T19:02:07Z"), response_length: 334, sentiment_score: "0.18" },
            { id: 12, request_id: 75, user_id: 8, response_content: "An unusual payment was updated the same day.", created_at: new Date("2023-04-29T19:57:39Z"), response_length: 248, sentiment_score: "0.33" },
            { id: 13, request_id: 186, user_id: 83, response_content: "The booking was delayed following an unusual review.", created_at: new Date("2023-10-11T20:37:13Z"), response_length: 170, sentiment_score: "-0.14" },
            { id: 14, request_id: 39, user_id: 6, response_content: "The document was resolved — routine case, no further action.", created_at: new Date("2023-03-22T12:39:28Z"), response_length: 141, sentiment_score: "0.35" },
            { id: 15, request_id: 118, user_id: 79, response_content: "The delivery was resolved — incomplete case, no further action.", created_at: new Date("2023-08-01T19:10:39Z"), response_length: 339, sentiment_score: "-0.17" },
            { id: 16, request_id: 200, user_id: 140, response_content: "The customer reported a standard issue; the appointment was processed.", created_at: new Date("2023-07-23T17:49:01Z"), response_length: 284, sentiment_score: "-0.29" },
            { id: 17, request_id: 24, user_id: 6, response_content: "The transfer was cancelled — routine case, no further action.", created_at: new Date("2023-01-22T10:15:24Z"), response_length: 242, sentiment_score: "-0.26" },
            { id: 18, request_id: 194, user_id: 40, response_content: "An unusual follow-up: the refund was reviewed.", created_at: new Date("2023-12-07T17:46:28Z"), response_length: 147, sentiment_score: "0.37" },
            { id: 19, request_id: 41, user_id: 147, response_content: "The customer asked for a change and the payment was cancelled.", created_at: new Date("2023-09-10T03:38:40Z"), response_length: 187, sentiment_score: "-0.44" },
            { id: 20, request_id: 71, user_id: 35, response_content: null, created_at: new Date("2023-03-10T07:18:48Z"), response_length: 367, sentiment_score: "-0.63" },
            { id: 21, request_id: 78, user_id: 54, response_content: null, created_at: new Date("2023-04-08T11:53:27Z"), response_length: 224, sentiment_score: "-0.06" },
            { id: 22, request_id: 42, user_id: 119, response_content: "The booking was cancelled — unusual case, no further action.", created_at: new Date("2023-03-26T23:54:06Z"), response_length: 145, sentiment_score: "-0.25" },
            { id: 23, request_id: 2, user_id: 132, response_content: "A partial session was delayed the same day.", created_at: new Date("2023-04-05T13:48:05Z"), response_length: 252, sentiment_score: "-0.27" },
            { id: 24, request_id: 176, user_id: 114, response_content: "The reviewer asked for a change and the invoice was rejected.", created_at: new Date("2023-03-09T22:49:03Z"), response_length: 164, sentiment_score: "0.04" },
            { id: 25, request_id: 151, user_id: 100, response_content: "No response from the supplier, so the refund was confirmed.", created_at: new Date("2023-08-16T17:40:51Z"), response_length: 161, sentiment_score: "0.65" },
            { id: 26, request_id: 159, user_id: 21, response_content: "The reviewer asked for a change and the account was processed.", created_at: new Date("2023-01-15T19:58:25Z"), response_length: 113, sentiment_score: "0.04" },
            { id: 27, request_id: 87, user_id: 146, response_content: "The order was reviewed after an urgent check.", created_at: new Date("2023-10-28T10:52:55Z"), response_length: 367, sentiment_score: "0.56" },
            { id: 28, request_id: 85, user_id: 62, response_content: "The request was refunded following a minor review.", created_at: new Date("2023-04-30T13:02:35Z"), response_length: 220, sentiment_score: "-0.11" },
            { id: 29, request_id: 38, user_id: 78, response_content: null, created_at: new Date("2023-05-09T03:13:58Z"), response_length: 257, sentiment_score: "-0.04" },
            { id: 30, request_id: 67, user_id: 16, response_content: "The record was cancelled — duplicate case, no further action.", created_at: new Date("2023-08-31T19:03:49Z"), response_length: 208, sentiment_score: "-0.14" },
            { id: 31, request_id: 14, user_id: 24, response_content: "The request was refunded after a late check.", created_at: new Date("2023-01-13T00:27:33Z"), response_length: 255, sentiment_score: "0.03" },
            { id: 32, request_id: 124, user_id: 20, response_content: "The booking was closed following an incomplete review.", created_at: new Date("2023-08-29T13:46:18Z"), response_length: 173, sentiment_score: "-0.05" },
            { id: 33, request_id: 172, user_id: 63, response_content: "No response from the courier, so the transfer was refunded.", created_at: new Date("2023-12-20T07:34:41Z"), response_length: 173, sentiment_score: "-0.05" },
            { id: 34, request_id: 87, user_id: 77, response_content: "The ticket was completed — duplicate case, no further action.", created_at: new Date("2023-09-03T20:45:46Z"), response_length: 331, sentiment_score: "-0.06" },
            { id: 35, request_id: 6, user_id: 86, response_content: "No response from the account owner, so the request was refunded.", created_at: new Date("2023-12-30T22:52:33Z"), response_length: 313, sentiment_score: "0.36" },
            { id: 36, request_id: 155, user_id: 76, response_content: "No response from the courier, so the invoice was rejected.", created_at: new Date("2023-04-02T16:20:32Z"), response_length: 237, sentiment_score: "-0.07" },
            { id: 37, request_id: 188, user_id: 8, response_content: "The reviewer confirmed the details and the invoice was processed.", created_at: new Date("2023-10-31T20:50:47Z"), response_length: 154, sentiment_score: "-0.32" },
            { id: 38, request_id: 9, user_id: 139, response_content: "The courier confirmed the details and the payment was replaced.", created_at: new Date("2023-07-26T18:15:33Z"), response_length: 187, sentiment_score: "-0.03" },
            { id: 39, request_id: 69, user_id: 17, response_content: "The reviewer confirmed the details and the delivery was replaced.", created_at: new Date("2023-03-20T18:23:43Z"), response_length: 321, sentiment_score: "-0.17" },
            { id: 40, request_id: 40, user_id: 103, response_content: "An urgent item was closed the same day.", created_at: new Date("2023-06-06T13:22:24Z"), response_length: 98, sentiment_score: "-0.26" },
            { id: 41, request_id: 90, user_id: 148, response_content: "A minor request was resolved the same day.", created_at: new Date("2023-09-27T17:21:32Z"), response_length: 187, sentiment_score: "-0.14" },
            { id: 42, request_id: 181, user_id: 94, response_content: "Flagged as repeat. An operator replaced the claim.", created_at: new Date("2023-01-08T12:47:40Z"), response_length: 388, sentiment_score: "0.06" },
            { id: 43, request_id: 83, user_id: 47, response_content: "A minor report was processed the same day.", created_at: new Date("2023-08-22T23:16:59Z"), response_length: 310, sentiment_score: "0.57" },
            { id: 44, request_id: 19, user_id: 7, response_content: "The customer confirmed the details and the claim was completed.", created_at: new Date("2023-10-22T20:45:19Z"), response_length: 178, sentiment_score: "0.34" },
            { id: 45, request_id: 75, user_id: 64, response_content: "The team asked for a change and the refund was completed.", created_at: new Date("2023-06-30T22:05:03Z"), response_length: 156, sentiment_score: "-0.25" },
            { id: 46, request_id: 134, user_id: 79, response_content: "No response from the team, so the claim was delayed.", created_at: new Date("2023-03-30T20:12:30Z"), response_length: 247, sentiment_score: "0.02" },
            { id: 47, request_id: 114, user_id: 3, response_content: "No response from support, so the delivery was resolved.", created_at: new Date("2023-01-11T20:55:30Z"), response_length: 257, sentiment_score: "-0.17" },
            { id: 48, request_id: 170, user_id: 127, response_content: "The supplier asked for a change and the ticket was rescheduled.", created_at: new Date("2023-02-17T04:53:04Z"), response_length: 260, sentiment_score: "0.02" },
            { id: 49, request_id: 159, user_id: 22, response_content: "No response from an operator, so the payment was delayed.", created_at: new Date("2023-10-12T16:56:44Z"), response_length: 241, sentiment_score: "0.29" },
            { id: 50, request_id: 162, user_id: 78, response_content: "The account was updated after a routine check.", created_at: new Date("2023-04-29T08:13:56Z"), response_length: 289, sentiment_score: "0.18" },
            { id: 51, request_id: 146, user_id: 9, response_content: "Flagged as automatic. The supplier refunded the request.", created_at: new Date("2023-10-18T12:02:03Z"), response_length: 407, sentiment_score: "0.49" },
            { id: 52, request_id: 132, user_id: 44, response_content: "A repeat follow-up: the report was rescheduled.", created_at: new Date("2023-02-08T16:01:21Z"), response_length: 207, sentiment_score: "-0.15" },
            { id: 53, request_id: 49, user_id: 31, response_content: "The order was reopened — partial case, no further action.", created_at: new Date("2023-03-29T01:55:44Z"), response_length: 345, sentiment_score: "0.07" },
            { id: 54, request_id: 51, user_id: 125, response_content: "Support asked for a change and the item was refunded.", created_at: new Date("2023-09-05T21:46:27Z"), response_length: 315, sentiment_score: "0.25" },
            { id: 55, request_id: 124, user_id: 111, response_content: null, created_at: new Date("2023-05-19T14:22:26Z"), response_length: 172, sentiment_score: "0.10" },
            { id: 56, request_id: 128, user_id: 41, response_content: "An operator reported an incomplete issue; the payment was rejected.", created_at: new Date("2023-03-24T17:07:03Z"), response_length: 342, sentiment_score: "0.42" },
            { id: 57, request_id: 184, user_id: 103, response_content: "Flagged as standard. The team confirmed the record.", created_at: new Date("2023-04-08T18:53:11Z"), response_length: 256, sentiment_score: "-0.09" },
            { id: 58, request_id: 12, user_id: 78, response_content: "The account owner asked for a change and the shipment was escalated.", created_at: new Date("2023-01-06T18:04:32Z"), response_length: 232, sentiment_score: "-0.24" },
            { id: 59, request_id: 165, user_id: 119, response_content: "The reviewer reported a repeat issue; the shipment was approved.", created_at: new Date("2023-12-16T16:49:52Z"), response_length: 245, sentiment_score: "-0.25" },
            { id: 60, request_id: 179, user_id: 81, response_content: "An incomplete follow-up: the item was processed.", created_at: new Date("2023-09-24T16:12:59Z"), response_length: 370, sentiment_score: "-0.45" },
            { id: 61, request_id: 101, user_id: 6, response_content: "The reviewer confirmed the details and the account was reviewed.", created_at: new Date("2023-02-28T12:11:14Z"), response_length: 251, sentiment_score: "-0.10" },
            { id: 62, request_id: 155, user_id: 75, response_content: "The transfer was processed after a repeat check.", created_at: new Date("2023-03-08T17:02:06Z"), response_length: 98, sentiment_score: "-0.08" },
            { id: 63, request_id: 185, user_id: 115, response_content: "No response from the team, so the document was closed.", created_at: new Date("2023-12-04T18:17:36Z"), response_length: 114, sentiment_score: "0.04" },
            { id: 64, request_id: 30, user_id: 43, response_content: "The refund was refunded following a routine review.", created_at: new Date("2023-12-28T17:56:19Z"), response_length: 246, sentiment_score: "-0.27" },
            { id: 65, request_id: 35, user_id: 12, response_content: null, created_at: new Date("2023-02-16T08:48:11Z"), response_length: 116, sentiment_score: "0.20" },
            { id: 66, request_id: 99, user_id: 101, response_content: "No response from support, so the booking was approved.", created_at: new Date("2023-09-07T22:14:31Z"), response_length: 281, sentiment_score: "-0.38" },
            { id: 67, request_id: 146, user_id: 81, response_content: "Flagged as minor. The account owner closed the payment.", created_at: new Date("2023-11-30T11:39:14Z"), response_length: 230, sentiment_score: "0.24" },
            { id: 68, request_id: 40, user_id: 108, response_content: "No response from the courier, so the refund was replaced.", created_at: new Date("2023-08-20T06:07:20Z"), response_length: 313, sentiment_score: "0.06" },
            { id: 69, request_id: 132, user_id: 149, response_content: "The request was resolved after a duplicate check.", created_at: new Date("2023-06-16T08:51:52Z"), response_length: 240, sentiment_score: "0.06" },
            { id: 70, request_id: 60, user_id: 63, response_content: "Flagged as automatic. The supplier rejected the account.", created_at: new Date("2023-05-20T15:49:07Z"), response_length: 100, sentiment_score: "0.31" },
            { id: 71, request_id: 152, user_id: 107, response_content: "The team confirmed the details and the item was resolved.", created_at: new Date("2023-05-08T21:28:29Z"), response_length: 282, sentiment_score: "-0.47" },
            { id: 72, request_id: 187, user_id: 39, response_content: "The transfer was closed — standard case, no further action.", created_at: new Date("2023-08-03T21:37:25Z"), response_length: 234, sentiment_score: "-0.74" },
            { id: 73, request_id: 160, user_id: 59, response_content: "The supplier reported a late issue; the report was rescheduled.", created_at: new Date("2023-06-10T10:08:04Z"), response_length: 259, sentiment_score: "0.25" },
            { id: 74, request_id: 95, user_id: 18, response_content: "The shipment was resolved following an unusual review.", created_at: new Date("2023-09-04T14:48:29Z"), response_length: 282, sentiment_score: "0.32" },
            { id: 75, request_id: 182, user_id: 23, response_content: "The order was completed after an unusual check.", created_at: new Date("2023-04-15T17:47:12Z"), response_length: 122, sentiment_score: "-0.25" },
            { id: 76, request_id: 187, user_id: 41, response_content: "The supplier asked for a change and the appointment was processed.", created_at: new Date("2023-07-18T16:32:55Z"), response_length: 170, sentiment_score: "-0.18" },
            { id: 77, request_id: 189, user_id: 149, response_content: "The ticket was completed following a duplicate review.", created_at: new Date("2023-06-06T14:16:58Z"), response_length: 286, sentiment_score: "0.03" },
            { id: 78, request_id: 25, user_id: 124, response_content: "The refund was closed after a repeat check.", created_at: new Date("2023-02-21T08:25:39Z"), response_length: 271, sentiment_score: "0.36" },
            { id: 79, request_id: 155, user_id: 23, response_content: "The account was reopened — minor case, no further action.", created_at: new Date("2023-11-20T18:56:49Z"), response_length: 115, sentiment_score: "-0.23" },
            { id: 80, request_id: 200, user_id: 116, response_content: "An unusual item was refunded the same day.", created_at: new Date("2023-03-23T11:19:37Z"), response_length: 164, sentiment_score: "-0.09" },
            { id: 81, request_id: 190, user_id: 64, response_content: "The team reported a repeat issue; the document was rescheduled.", created_at: new Date("2023-11-30T08:04:32Z"), response_length: 224, sentiment_score: "0.07" },
            { id: 82, request_id: 184, user_id: 19, response_content: "The shipment was replaced following an incomplete review.", created_at: new Date("2023-04-16T19:33:26Z"), response_length: 221, sentiment_score: "-0.40" },
            { id: 83, request_id: 137, user_id: 89, response_content: "The delivery was cancelled following an unusual review.", created_at: new Date("2023-07-23T22:18:41Z"), response_length: 300, sentiment_score: "0.06" },
            { id: 84, request_id: 55, user_id: 143, response_content: "No response from the courier, so the claim was resolved.", created_at: new Date("2023-06-04T19:37:46Z"), response_length: 210, sentiment_score: "-0.25" },
            { id: 85, request_id: 105, user_id: 105, response_content: "No response from the customer, so the delivery was reopened.", created_at: new Date("2023-07-22T18:07:42Z"), response_length: 251, sentiment_score: "0.02" },
            { id: 86, request_id: 122, user_id: 142, response_content: "An operator asked for a change and the appointment was rejected.", created_at: new Date("2023-11-06T14:57:06Z"), response_length: 146, sentiment_score: "-0.50" },
            { id: 87, request_id: 52, user_id: 63, response_content: "The item was completed after an urgent check.", created_at: new Date("2023-06-04T11:24:18Z"), response_length: 265, sentiment_score: "-0.15" },
            { id: 88, request_id: 89, user_id: 141, response_content: "The claim was reopened following an incomplete review.", created_at: new Date("2023-02-14T19:03:03Z"), response_length: 215, sentiment_score: "-0.27" },
            { id: 89, request_id: 145, user_id: 143, response_content: "The report was replaced — repeat case, no further action.", created_at: new Date("2023-04-17T09:14:17Z"), response_length: 300, sentiment_score: "-0.20" },
            { id: 90, request_id: 169, user_id: 147, response_content: "The record was rejected following a minor review.", created_at: new Date("2023-11-19T14:39:45Z"), response_length: 249, sentiment_score: "-0.24" },
            { id: 91, request_id: 76, user_id: 38, response_content: "No response from the customer, so the item was replaced.", created_at: new Date("2023-11-19T19:15:25Z"), response_length: 222, sentiment_score: "0.15" },
            { id: 92, request_id: 28, user_id: 57, response_content: null, created_at: new Date("2023-07-11T19:20:29Z"), response_length: 222, sentiment_score: "-0.07" },
            { id: 93, request_id: 85, user_id: 54, response_content: "The customer asked for a change and the delivery was escalated.", created_at: new Date("2023-01-04T12:40:11Z"), response_length: 177, sentiment_score: "0.38" },
            { id: 94, request_id: 110, user_id: 72, response_content: "A minor follow-up: the delivery was reviewed.", created_at: new Date("2023-01-13T17:54:29Z"), response_length: 354, sentiment_score: "-0.13" },
            { id: 95, request_id: 138, user_id: 74, response_content: "Flagged as routine. An operator confirmed the claim.", created_at: new Date("2023-09-29T11:09:17Z"), response_length: 242, sentiment_score: "0.22" },
            { id: 96, request_id: 90, user_id: 56, response_content: "A partial follow-up: the delivery was approved.", created_at: new Date("2023-05-02T19:43:35Z"), response_length: 447, sentiment_score: "-0.25" },
            { id: 97, request_id: 173, user_id: 116, response_content: "No response from an operator, so the refund was rescheduled.", created_at: new Date("2023-07-16T19:54:01Z"), response_length: 241, sentiment_score: "0.10" },
            { id: 98, request_id: 11, user_id: 88, response_content: "The account was reopened — urgent case, no further action.", created_at: new Date("2023-06-09T22:25:27Z"), response_length: 277, sentiment_score: "-0.19" },
            { id: 99, request_id: 177, user_id: 28, response_content: "The transfer was reviewed following an automatic review.", created_at: new Date("2023-07-12T15:34:52Z"), response_length: 270, sentiment_score: "-0.37" },
            { id: 100, request_id: 177, user_id: 1, response_content: "An automatic follow-up: the report was approved.", created_at: new Date("2023-05-11T01:32:06Z"), response_length: 198, sentiment_score: "0.61" },
            { id: 101, request_id: 29, user_id: 95, response_content: "The team reported a duplicate issue; the request was closed.", created_at: new Date("2023-04-11T15:25:56Z"), response_length: 307, sentiment_score: "0.82" },
            { id: 102, request_id: 61, user_id: 74, response_content: "No response from an operator, so the report was rejected.", created_at: new Date("2023-08-24T20:50:11Z"), response_length: 168, sentiment_score: "-0.06" },
            { id: 103, request_id: 10, user_id: 141, response_content: "The item was refunded following a repeat review.", created_at: new Date("2023-09-29T18:15:18Z"), response_length: 283, sentiment_score: "0.26" },
            { id: 104, request_id: 120, user_id: 103, response_content: "The reviewer reported a late issue; the request was updated.", created_at: new Date("2023-12-20T16:04:33Z"), response_length: 257, sentiment_score: "0.16" },
            { id: 105, request_id: 71, user_id: 42, response_content: "The customer reported a manual issue; the booking was resolved.", created_at: new Date("2023-12-04T09:54:01Z"), response_length: 211, sentiment_score: "0.62" },
            { id: 106, request_id: 1, user_id: 65, response_content: "The shipment was approved following a routine review.", created_at: new Date("2023-05-02T20:17:59Z"), response_length: 266, sentiment_score: "-0.66" },
            { id: 107, request_id: 113, user_id: 27, response_content: "An operator confirmed the details and the booking was reopened.", created_at: new Date("2023-11-28T17:05:17Z"), response_length: 276, sentiment_score: "-0.19" },
            { id: 108, request_id: 143, user_id: 141, response_content: "The session was processed — routine case, no further action.", created_at: new Date("2023-05-16T20:30:47Z"), response_length: 244, sentiment_score: "0.00" },
            { id: 109, request_id: 131, user_id: 131, response_content: "The account owner confirmed the details and the record was replaced.", created_at: new Date("2023-09-27T19:38:43Z"), response_length: 302, sentiment_score: "0.10" },
            { id: 110, request_id: 193, user_id: 103, response_content: "The account owner asked for a change and the account was rejected.", created_at: new Date("2023-01-04T19:59:44Z"), response_length: 268, sentiment_score: "0.00" },
            { id: 111, request_id: 163, user_id: 127, response_content: "An operator confirmed the details and the booking was confirmed.", created_at: new Date("2023-03-23T16:58:44Z"), response_length: 297, sentiment_score: "0.65" },
            { id: 112, request_id: 68, user_id: 109, response_content: "The courier asked for a change and the refund was replaced.", created_at: new Date("2023-04-30T17:12:46Z"), response_length: 341, sentiment_score: "-0.06" },
            { id: 113, request_id: 18, user_id: 15, response_content: "A minor follow-up: the document was rescheduled.", created_at: new Date("2023-02-27T11:45:04Z"), response_length: 133, sentiment_score: "0.07" },
            { id: 114, request_id: 67, user_id: 115, response_content: "The supplier reported a partial issue; the invoice was reviewed.", created_at: new Date("2023-11-16T11:43:51Z"), response_length: 205, sentiment_score: "-0.01" },
            { id: 115, request_id: 59, user_id: 6, response_content: "A partial follow-up: the appointment was refunded.", created_at: new Date("2023-09-09T17:13:10Z"), response_length: 197, sentiment_score: "0.47" },
            { id: 116, request_id: 79, user_id: 59, response_content: null, created_at: new Date("2023-01-11T22:03:36Z"), response_length: 232, sentiment_score: "0.41" },
            { id: 117, request_id: 55, user_id: 32, response_content: "Support confirmed the details and the claim was cancelled.", created_at: new Date("2023-11-22T19:08:12Z"), response_length: 258, sentiment_score: "0.34" },
            { id: 118, request_id: 42, user_id: 10, response_content: "A duplicate follow-up: the transfer was cancelled.", created_at: new Date("2023-04-02T19:39:01Z"), response_length: 262, sentiment_score: "-0.14" },
            { id: 119, request_id: 109, user_id: 58, response_content: "A minor request was escalated the same day.", created_at: new Date("2023-09-14T08:18:51Z"), response_length: 210, sentiment_score: "0.59" },
            { id: 120, request_id: 21, user_id: 110, response_content: "No response from the reviewer, so the order was processed.", created_at: new Date("2023-03-29T09:02:04Z"), response_length: 287, sentiment_score: "0.03" },
            { id: 121, request_id: 9, user_id: 105, response_content: "Flagged as standard. Support refunded the ticket.", created_at: new Date("2023-11-04T21:55:36Z"), response_length: 250, sentiment_score: "0.65" },
            { id: 122, request_id: 60, user_id: 128, response_content: "The supplier confirmed the details and the ticket was approved.", created_at: new Date("2023-04-29T18:08:31Z"), response_length: 289, sentiment_score: "0.75" },
            { id: 123, request_id: 67, user_id: 6, response_content: "Flagged as late. The team reviewed the document.", created_at: new Date("2023-06-13T20:08:05Z"), response_length: 155, sentiment_score: "0.21" },
            { id: 124, request_id: 185, user_id: 43, response_content: "No response from the team, so the record was completed.", created_at: new Date("2023-04-27T19:06:02Z"), response_length: 340, sentiment_score: "-0.01" },
            { id: 125, request_id: 33, user_id: 78, response_content: "A standard follow-up: the transfer was rescheduled.", created_at: new Date("2023-01-06T17:46:32Z"), response_length: 209, sentiment_score: "-0.20" },
            { id: 126, request_id: 179, user_id: 104, response_content: null, created_at: new Date("2023-03-02T09:11:21Z"), response_length: 163, sentiment_score: "-0.47" },
            { id: 127, request_id: 94, user_id: 46, response_content: "An automatic item was cancelled the same day.", created_at: new Date("2023-12-09T10:25:56Z"), response_length: 317, sentiment_score: "-0.52" },
            { id: 128, request_id: 26, user_id: 128, response_content: "Support confirmed the details and the item was refunded.", created_at: new Date("2023-01-12T10:18:20Z"), response_length: 330, sentiment_score: "-0.37" },
            { id: 129, request_id: 50, user_id: 88, response_content: "The transfer was rescheduled — manual case, no further action.", created_at: new Date("2023-03-04T20:29:49Z"), response_length: 193, sentiment_score: "-0.12" },
            { id: 130, request_id: 176, user_id: 21, response_content: "No response from the team, so the request was updated.", created_at: new Date("2023-02-22T16:49:35Z"), response_length: 226, sentiment_score: "-0.07" },
            { id: 131, request_id: 157, user_id: 89, response_content: "The transfer was reopened — unusual case, no further action.", created_at: new Date("2023-08-06T13:38:08Z"), response_length: 100, sentiment_score: "0.38" },
            { id: 132, request_id: 121, user_id: 25, response_content: "A minor follow-up: the invoice was rejected.", created_at: new Date("2023-08-27T10:38:36Z"), response_length: 171, sentiment_score: "-0.33" },
            { id: 133, request_id: 151, user_id: 101, response_content: "The account owner asked for a change and the session was reopened.", created_at: new Date("2023-06-07T09:06:59Z"), response_length: 83, sentiment_score: "-0.34" },
            { id: 134, request_id: 53, user_id: 2, response_content: null, created_at: new Date("2023-10-20T14:05:22Z"), response_length: 301, sentiment_score: "-0.07" },
            { id: 135, request_id: 198, user_id: 139, response_content: null, created_at: new Date("2023-12-16T19:00:25Z"), response_length: 102, sentiment_score: "0.38" },
            { id: 136, request_id: 91, user_id: 30, response_content: "A standard report was reviewed the same day.", created_at: new Date("2023-01-22T11:13:12Z"), response_length: 241, sentiment_score: "-0.26" },
            { id: 137, request_id: 100, user_id: 82, response_content: "The account was rejected following a duplicate review.", created_at: new Date("2023-03-06T21:47:47Z"), response_length: 191, sentiment_score: "0.21" },
            { id: 138, request_id: 104, user_id: 99, response_content: "The customer confirmed the details and the record was escalated.", created_at: new Date("2023-07-17T00:36:55Z"), response_length: 196, sentiment_score: "0.55" },
            { id: 139, request_id: 92, user_id: 144, response_content: "The account was refunded following a routine review.", created_at: new Date("2023-08-22T00:34:35Z"), response_length: 215, sentiment_score: "0.03" },
            { id: 140, request_id: 161, user_id: 135, response_content: "Support reported a manual issue; the appointment was confirmed.", created_at: new Date("2023-09-21T06:52:31Z"), response_length: 308, sentiment_score: "-0.08" },
            { id: 141, request_id: 64, user_id: 101, response_content: null, created_at: new Date("2023-07-26T17:42:49Z"), response_length: 168, sentiment_score: "-0.38" },
            { id: 142, request_id: 168, user_id: 68, response_content: "A standard follow-up: the payment was replaced.", created_at: new Date("2023-06-09T13:28:08Z"), response_length: 162, sentiment_score: "0.31" },
            { id: 143, request_id: 196, user_id: 124, response_content: "The customer reported a partial issue; the delivery was delayed.", created_at: new Date("2023-07-25T15:01:38Z"), response_length: 292, sentiment_score: "-0.08" },
            { id: 144, request_id: 126, user_id: 122, response_content: "The customer reported a repeat issue; the claim was updated.", created_at: new Date("2023-07-17T16:52:09Z"), response_length: 244, sentiment_score: "0.05" },
            { id: 145, request_id: 149, user_id: 66, response_content: "The team asked for a change and the request was completed.", created_at: new Date("2023-02-05T17:01:57Z"), response_length: 368, sentiment_score: "-0.41" },
            { id: 146, request_id: 101, user_id: 81, response_content: "The supplier reported an urgent issue; the order was approved.", created_at: new Date("2023-02-13T19:45:01Z"), response_length: 231, sentiment_score: "-0.13" },
            { id: 147, request_id: 28, user_id: 18, response_content: "The booking was rescheduled — repeat case, no further action.", created_at: new Date("2023-03-15T11:16:07Z"), response_length: 238, sentiment_score: "-0.11" },
            { id: 148, request_id: 40, user_id: 52, response_content: "The supplier reported a late issue; the session was reviewed.", created_at: new Date("2023-01-22T07:48:19Z"), response_length: 259, sentiment_score: "-0.02" },
            { id: 149, request_id: 16, user_id: 130, response_content: null, created_at: new Date("2023-03-27T20:39:12Z"), response_length: 268, sentiment_score: "0.02" },
            { id: 150, request_id: 199, user_id: 123, response_content: null, created_at: new Date("2023-04-03T19:57:51Z"), response_length: 195, sentiment_score: "-0.41" },
            { id: 151, request_id: 23, user_id: 139, response_content: "The delivery was approved — standard case, no further action.", created_at: new Date("2023-09-04T20:47:05Z"), response_length: 263, sentiment_score: "-0.13" },
            { id: 152, request_id: 172, user_id: 68, response_content: "The transfer was delayed — routine case, no further action.", created_at: new Date("2023-11-22T12:46:18Z"), response_length: 328, sentiment_score: "0.23" },
            { id: 153, request_id: 54, user_id: 107, response_content: "The courier reported an automatic issue; the invoice was approved.", created_at: new Date("2023-06-24T18:01:29Z"), response_length: 154, sentiment_score: "0.23" },
            { id: 154, request_id: 17, user_id: 29, response_content: "No response from the reviewer, so the refund was replaced.", created_at: new Date("2023-09-22T19:37:21Z"), response_length: 231, sentiment_score: "0.31" },
            { id: 155, request_id: 143, user_id: 128, response_content: "Support confirmed the details and the booking was replaced.", created_at: new Date("2023-02-19T20:53:39Z"), response_length: 210, sentiment_score: "0.00" },
            { id: 156, request_id: 177, user_id: 133, response_content: "The shipment was updated — urgent case, no further action.", created_at: new Date("2023-08-08T13:54:44Z"), response_length: 171, sentiment_score: "-0.34" },
            { id: 157, request_id: 51, user_id: 7, response_content: null, created_at: new Date("2023-12-31T16:49:27Z"), response_length: 347, sentiment_score: "-0.54" },
            { id: 158, request_id: 3, user_id: 119, response_content: "The refund was processed after a late check.", created_at: new Date("2023-09-24T18:14:44Z"), response_length: 271, sentiment_score: "0.29" },
            { id: 159, request_id: 151, user_id: 21, response_content: "No response from the customer, so the invoice was replaced.", created_at: new Date("2023-11-11T15:18:40Z"), response_length: 252, sentiment_score: "-0.17" },
            { id: 160, request_id: 91, user_id: 150, response_content: "The session was delayed — unusual case, no further action.", created_at: new Date("2023-10-20T17:00:40Z"), response_length: 184, sentiment_score: "-0.38" },
            { id: 161, request_id: 26, user_id: 122, response_content: "An unusual follow-up: the ticket was cancelled.", created_at: new Date("2023-05-04T18:11:12Z"), response_length: 195, sentiment_score: "0.16" },
            { id: 162, request_id: 82, user_id: 112, response_content: "An unusual record was escalated the same day.", created_at: new Date("2023-09-28T21:22:15Z"), response_length: 326, sentiment_score: "-0.42" },
            { id: 163, request_id: 170, user_id: 124, response_content: "The courier reported an automatic issue; the transfer was resolved.", created_at: new Date("2023-10-09T12:40:06Z"), response_length: 271, sentiment_score: "-0.27" },
            { id: 164, request_id: 24, user_id: 14, response_content: "The order was reopened after a manual check.", created_at: new Date("2023-09-11T18:52:12Z"), response_length: 170, sentiment_score: "-0.25" },
            { id: 165, request_id: 29, user_id: 44, response_content: null, created_at: new Date("2023-01-03T13:44:40Z"), response_length: 242, sentiment_score: "-0.10" },
            { id: 166, request_id: 183, user_id: 124, response_content: "The session was replaced — manual case, no further action.", created_at: new Date("2023-04-03T08:52:52Z"), response_length: 279, sentiment_score: "0.34" },
            { id: 167, request_id: 136, user_id: 90, response_content: "A duplicate delivery was processed the same day.", created_at: new Date("2023-01-14T23:45:48Z"), response_length: 259, sentiment_score: "0.07" },
            { id: 168, request_id: 115, user_id: 13, response_content: "A repeat request was rescheduled the same day.", created_at: new Date("2023-12-22T14:23:47Z"), response_length: 168, sentiment_score: "0.01" },
            { id: 169, request_id: 96, user_id: 37, response_content: null, created_at: new Date("2023-08-13T16:50:57Z"), response_length: 166, sentiment_score: "0.29" },
            { id: 170, request_id: 112, user_id: 141, response_content: "A late report was processed the same day.", created_at: new Date("2023-02-01T07:22:15Z"), response_length: 228, sentiment_score: "0.27" },
            { id: 171, request_id: 114, user_id: 90, response_content: "The reviewer confirmed the details and the refund was processed.", created_at: new Date("2023-04-14T22:12:56Z"), response_length: 242, sentiment_score: "-0.31" },
            { id: 172, request_id: 193, user_id: 111, response_content: "The item was confirmed — automatic case, no further action.", created_at: new Date("2023-04-10T10:57:34Z"), response_length: 211, sentiment_score: "-0.37" },
            { id: 173, request_id: 131, user_id: 89, response_content: "A standard item was resolved the same day.", created_at: new Date("2023-02-11T15:04:56Z"), response_length: 364, sentiment_score: "0.08" },
            { id: 174, request_id: 174, user_id: 66, response_content: "A partial invoice was closed the same day.", created_at: new Date("2023-06-30T12:29:10Z"), response_length: 420, sentiment_score: "0.08" },
            { id: 175, request_id: 193, user_id: 23, response_content: "The request was confirmed after a duplicate check.", created_at: new Date("2023-05-29T18:02:00Z"), response_length: 275, sentiment_score: "-0.02" },
            { id: 176, request_id: 41, user_id: 112, response_content: null, created_at: new Date("2023-05-18T08:35:34Z"), response_length: 92, sentiment_score: "0.04" },
            { id: 177, request_id: 144, user_id: 113, response_content: "The reviewer asked for a change and the transfer was delayed.", created_at: new Date("2023-07-31T19:10:07Z"), response_length: 335, sentiment_score: "0.54" },
            { id: 178, request_id: 185, user_id: 44, response_content: "A standard record was cancelled the same day.", created_at: new Date("2023-07-31T16:06:23Z"), response_length: 188, sentiment_score: "-0.19" },
            { id: 179, request_id: 69, user_id: 13, response_content: "The customer asked for a change and the record was reopened.", created_at: new Date("2023-04-04T14:41:49Z"), response_length: 114, sentiment_score: "0.44" },
            { id: 180, request_id: 8, user_id: 139, response_content: "An operator confirmed the details and the invoice was updated.", created_at: new Date("2023-12-19T12:20:24Z"), response_length: 175, sentiment_score: "-0.19" },
            { id: 181, request_id: 33, user_id: 36, response_content: "No response from support, so the appointment was completed.", created_at: new Date("2023-06-14T17:26:16Z"), response_length: 223, sentiment_score: "-0.02" },
            { id: 182, request_id: 159, user_id: 150, response_content: "A standard follow-up: the document was cancelled.", created_at: new Date("2023-01-09T15:39:12Z"), response_length: 424, sentiment_score: "-0.05" },
            { id: 183, request_id: 24, user_id: 94, response_content: "The account owner asked for a change and the account was rescheduled.", created_at: new Date("2023-10-17T17:07:48Z"), response_length: 252, sentiment_score: "-0.19" },
            { id: 184, request_id: 198, user_id: 94, response_content: "The courier asked for a change and the invoice was rejected.", created_at: new Date("2023-08-02T22:53:03Z"), response_length: 326, sentiment_score: "0.15" },
            { id: 185, request_id: 66, user_id: 75, response_content: "The claim was reviewed — partial case, no further action.", created_at: new Date("2023-07-04T02:31:50Z"), response_length: 265, sentiment_score: "0.37" },
            { id: 186, request_id: 81, user_id: 127, response_content: "A partial follow-up: the request was refunded.", created_at: new Date("2023-01-09T19:35:39Z"), response_length: 228, sentiment_score: "0.26" },
            { id: 187, request_id: 179, user_id: 114, response_content: "The transfer was replaced — repeat case, no further action.", created_at: new Date("2023-06-02T11:36:37Z"), response_length: 182, sentiment_score: "0.13" },
            { id: 188, request_id: 174, user_id: 89, response_content: "The appointment was confirmed following an automatic review.", created_at: new Date("2023-02-05T14:37:19Z"), response_length: 184, sentiment_score: "-0.09" },
            { id: 189, request_id: 142, user_id: 88, response_content: "The booking was updated following an incomplete review.", created_at: new Date("2023-08-22T15:37:57Z"), response_length: 237, sentiment_score: "0.14" },
            { id: 190, request_id: 190, user_id: 42, response_content: null, created_at: new Date("2023-04-11T11:18:58Z"), response_length: 396, sentiment_score: "0.03" },
            { id: 191, request_id: 37, user_id: 34, response_content: "The account owner confirmed the details and the appointment was processed.", created_at: new Date("2023-11-21T21:10:09Z"), response_length: 177, sentiment_score: "0.14" },
            { id: 192, request_id: 78, user_id: 135, response_content: "The courier asked for a change and the appointment was approved.", created_at: new Date("2023-08-17T21:08:11Z"), response_length: 193, sentiment_score: "0.28" },
            { id: 193, request_id: 183, user_id: 21, response_content: "The team asked for a change and the claim was rescheduled.", created_at: new Date("2023-06-02T09:59:04Z"), response_length: 218, sentiment_score: "-0.28" },
            { id: 194, request_id: 85, user_id: 147, response_content: "The account owner reported a minor issue; the request was closed.", created_at: new Date("2023-05-11T12:02:32Z"), response_length: 117, sentiment_score: "-0.02" },
            { id: 195, request_id: 186, user_id: 134, response_content: null, created_at: new Date("2023-03-21T19:25:35Z"), response_length: 152, sentiment_score: "-0.22" },
            { id: 196, request_id: 87, user_id: 90, response_content: "The supplier reported a duplicate issue; the transfer was confirmed.", created_at: new Date("2023-09-09T19:48:28Z"), response_length: 239, sentiment_score: "0.27" },
            { id: 197, request_id: 154, user_id: 133, response_content: "The transfer was completed following a routine review.", created_at: new Date("2023-01-28T16:00:59Z"), response_length: 191, sentiment_score: "-0.10" },
            { id: 198, request_id: 179, user_id: 7, response_content: "An operator confirmed the details and the invoice was resolved.", created_at: new Date("2023-07-06T18:54:50Z"), response_length: 444, sentiment_score: "-0.37" },
            { id: 199, request_id: 140, user_id: 14, response_content: "No response from support, so the booking was processed.", created_at: new Date("2023-10-03T15:17:03Z"), response_length: 180, sentiment_score: "0.11" },
            { id: 200, request_id: 164, user_id: 86, response_content: "The shipment was replaced after a duplicate check.", created_at: new Date("2023-11-29T17:33:46Z"), response_length: 142, sentiment_score: "-0.06" },
            { id: 201, request_id: 185, user_id: 46, response_content: "A repeat invoice was confirmed the same day.", created_at: new Date("2023-01-02T08:05:52Z"), response_length: 242, sentiment_score: "0.28" },
            { id: 202, request_id: 75, user_id: 43, response_content: "The supplier asked for a change and the session was delayed.", created_at: new Date("2023-01-06T13:32:06Z"), response_length: 318, sentiment_score: "0.22" },
            { id: 203, request_id: 135, user_id: 8, response_content: "The order was refunded following an urgent review.", created_at: new Date("2023-12-26T16:38:57Z"), response_length: 308, sentiment_score: "-0.08" },
            { id: 204, request_id: 150, user_id: 51, response_content: "Flagged as duplicate. Support approved the booking.", created_at: new Date("2023-02-16T19:20:29Z"), response_length: 187, sentiment_score: "-0.01" },
            { id: 205, request_id: 1, user_id: 51, response_content: null, created_at: new Date("2023-04-14T09:03:39Z"), response_length: 258, sentiment_score: "0.19" },
            { id: 206, request_id: 80, user_id: 127, response_content: "Flagged as partial. The supplier approved the account.", created_at: new Date("2023-06-15T20:42:47Z"), response_length: 101, sentiment_score: "0.05" },
            { id: 207, request_id: 119, user_id: 135, response_content: "The customer reported an unusual issue; the session was cancelled.", created_at: new Date("2023-08-26T09:52:09Z"), response_length: 211, sentiment_score: "0.15" },
            { id: 208, request_id: 131, user_id: 21, response_content: "The courier confirmed the details and the document was resolved.", created_at: new Date("2023-09-09T14:11:02Z"), response_length: 184, sentiment_score: "0.18" },
            { id: 209, request_id: 28, user_id: 28, response_content: "Support confirmed the details and the appointment was processed.", created_at: new Date("2023-01-24T22:56:44Z"), response_length: 222, sentiment_score: "0.61" },
            { id: 210, request_id: 125, user_id: 76, response_content: "The request was updated after an urgent check.", created_at: new Date("2023-06-04T18:34:41Z"), response_length: 199, sentiment_score: "0.37" },
            { id: 211, request_id: 88, user_id: 101, response_content: "The claim was processed following an automatic review.", created_at: new Date("2023-03-03T13:03:01Z"), response_length: 129, sentiment_score: "-0.04" },
            { id: 212, request_id: 143, user_id: 115, response_content: "The courier reported an urgent issue; the document was closed.", created_at: new Date("2023-05-23T18:37:50Z"), response_length: 161, sentiment_score: "-0.20" },
            { id: 213, request_id: 74, user_id: 49, response_content: null, created_at: new Date("2023-07-24T18:22:22Z"), response_length: 306, sentiment_score: "-0.25" },
            { id: 214, request_id: 35, user_id: 54, response_content: "The refund was refunded after an urgent check.", created_at: new Date("2023-06-16T14:03:50Z"), response_length: 332, sentiment_score: "-0.13" },
            { id: 215, request_id: 94, user_id: 57, response_content: "A manual follow-up: the delivery was cancelled.", created_at: new Date("2023-12-13T21:58:00Z"), response_length: 231, sentiment_score: "-0.37" },
            { id: 216, request_id: 183, user_id: 105, response_content: "The supplier confirmed the details and the transfer was escalated.", created_at: new Date("2023-01-23T21:54:19Z"), response_length: 126, sentiment_score: "0.32" },
            { id: 217, request_id: 189, user_id: 86, response_content: null, created_at: new Date("2023-07-10T17:25:05Z"), response_length: 199, sentiment_score: "-0.19" },
            { id: 218, request_id: 35, user_id: 38, response_content: "An urgent invoice was resolved the same day.", created_at: new Date("2023-05-17T12:45:40Z"), response_length: 165, sentiment_score: "-0.08" },
            { id: 219, request_id: 42, user_id: 65, response_content: "The account owner confirmed the details and the request was approved.", created_at: new Date("2023-07-30T21:30:09Z"), response_length: 253, sentiment_score: "0.16" },
            { id: 220, request_id: 39, user_id: 113, response_content: "The report was rescheduled — partial case, no further action.", created_at: new Date("2023-02-02T10:37:01Z"), response_length: 258, sentiment_score: "-0.06" },
            { id: 221, request_id: 136, user_id: 133, response_content: "A standard follow-up: the refund was replaced.", created_at: new Date("2023-12-28T15:38:46Z"), response_length: 257, sentiment_score: "0.03" },
            { id: 222, request_id: 190, user_id: 88, response_content: "The transfer was reopened after an automatic check.", created_at: new Date("2023-06-11T23:37:42Z"), response_length: 246, sentiment_score: "-0.33" },
            { id: 223, request_id: 52, user_id: 88, response_content: "The account was confirmed after a standard check.", created_at: new Date("2023-06-08T14:12:25Z"), response_length: 168, sentiment_score: "-0.21" },
            { id: 224, request_id: 33, user_id: 82, response_content: "The account owner confirmed the details and the session was completed.", created_at: new Date("2023-04-27T19:59:14Z"), response_length: 331, sentiment_score: "0.43" },
            { id: 225, request_id: 39, user_id: 139, response_content: "An automatic follow-up: the payment was escalated.", created_at: new Date("2023-02-07T19:29:10Z"), response_length: 248, sentiment_score: "-0.12" },
            { id: 226, request_id: 168, user_id: 63, response_content: "The invoice was reviewed — routine case, no further action.", created_at: new Date("2023-11-08T21:57:15Z"), response_length: 398, sentiment_score: "0.40" },
            { id: 227, request_id: 68, user_id: 121, response_content: null, created_at: new Date("2023-09-02T21:54:46Z"), response_length: 265, sentiment_score: "0.10" },
            { id: 228, request_id: 165, user_id: 65, response_content: "The ticket was delayed after a standard check.", created_at: new Date("2023-08-21T09:11:23Z"), response_length: 224, sentiment_score: "0.15" },
            { id: 229, request_id: 175, user_id: 39, response_content: "Flagged as routine. The account owner reviewed the item.", created_at: new Date("2023-06-27T22:26:58Z"), response_length: 187, sentiment_score: "-0.37" },
            { id: 230, request_id: 138, user_id: 143, response_content: "The request was completed after an unusual check.", created_at: new Date("2023-05-09T21:17:15Z"), response_length: 201, sentiment_score: "0.34" },
            { id: 231, request_id: 165, user_id: 37, response_content: "The courier confirmed the details and the transfer was updated.", created_at: new Date("2023-11-04T20:00:13Z"), response_length: 159, sentiment_score: "0.17" },
            { id: 232, request_id: 125, user_id: 142, response_content: "A partial refund was resolved the same day.", created_at: new Date("2023-06-10T13:05:50Z"), response_length: 220, sentiment_score: "0.04" },
            { id: 233, request_id: 17, user_id: 7, response_content: "A minor claim was cancelled the same day.", created_at: new Date("2023-05-22T19:30:22Z"), response_length: 277, sentiment_score: "0.18" },
            { id: 234, request_id: 109, user_id: 141, response_content: "The customer reported a partial issue; the refund was closed.", created_at: new Date("2023-02-23T19:38:41Z"), response_length: 323, sentiment_score: "0.01" },
            { id: 235, request_id: 5, user_id: 124, response_content: "An operator confirmed the details and the payment was completed.", created_at: new Date("2023-08-10T14:52:01Z"), response_length: 435, sentiment_score: "0.26" },
            { id: 236, request_id: 59, user_id: 129, response_content: "The ticket was rejected after a late check.", created_at: new Date("2023-12-26T18:40:22Z"), response_length: 215, sentiment_score: "-0.45" },
            { id: 237, request_id: 57, user_id: 18, response_content: "Flagged as incomplete. The courier rejected the session.", created_at: new Date("2023-03-25T19:55:40Z"), response_length: 378, sentiment_score: "-0.15" },
            { id: 238, request_id: 153, user_id: 116, response_content: "The reviewer confirmed the details and the order was escalated.", created_at: new Date("2023-10-26T20:03:33Z"), response_length: 202, sentiment_score: "-0.35" },
            { id: 239, request_id: 119, user_id: 23, response_content: "The session was rejected after an urgent check.", created_at: new Date("2023-08-23T05:27:06Z"), response_length: 204, sentiment_score: "0.01" },
            { id: 240, request_id: 35, user_id: 98, response_content: "The transfer was reviewed — repeat case, no further action.", created_at: new Date("2023-09-15T19:53:24Z"), response_length: 131, sentiment_score: "-0.35" },
            { id: 241, request_id: 88, user_id: 108, response_content: "The document was delayed following a late review.", created_at: new Date("2023-06-22T17:07:13Z"), response_length: 304, sentiment_score: "0.24" },
            { id: 242, request_id: 29, user_id: 67, response_content: "An automatic follow-up: the claim was escalated.", created_at: new Date("2023-07-18T07:41:36Z"), response_length: 180, sentiment_score: "-0.18" },
            { id: 243, request_id: 99, user_id: 97, response_content: null, created_at: new Date("2023-11-13T22:03:17Z"), response_length: 218, sentiment_score: "0.30" },
            { id: 244, request_id: 32, user_id: 116, response_content: null, created_at: new Date("2023-02-04T19:04:16Z"), response_length: 285, sentiment_score: "-0.14" },
            { id: 245, request_id: 4, user_id: 138, response_content: null, created_at: new Date("2023-07-13T08:36:30Z"), response_length: 185, sentiment_score: "0.10" },
            { id: 246, request_id: 6, user_id: 130, response_content: "The courier reported a routine issue; the order was approved.", created_at: new Date("2023-11-01T17:35:48Z"), response_length: 211, sentiment_score: "0.01" },
            { id: 247, request_id: 174, user_id: 68, response_content: "The reviewer reported a manual issue; the document was reopened.", created_at: new Date("2023-06-03T22:13:06Z"), response_length: 374, sentiment_score: "-0.08" },
            { id: 248, request_id: 66, user_id: 89, response_content: "An incomplete shipment was escalated the same day.", created_at: new Date("2023-08-17T16:25:15Z"), response_length: 296, sentiment_score: "0.23" },
            { id: 249, request_id: 151, user_id: 143, response_content: "The report was replaced following a routine review.", created_at: new Date("2023-03-11T16:02:49Z"), response_length: 241, sentiment_score: "-0.27" },
            { id: 250, request_id: 198, user_id: 9, response_content: "Support reported a late issue; the item was updated.", created_at: new Date("2023-10-28T18:09:57Z"), response_length: 328, sentiment_score: "0.45" },
            { id: 251, request_id: 75, user_id: 66, response_content: "Flagged as manual. An operator delayed the ticket.", created_at: new Date("2023-07-29T23:58:38Z"), response_length: 220, sentiment_score: "-0.35" },
            { id: 252, request_id: 169, user_id: 148, response_content: "A standard report was escalated the same day.", created_at: new Date("2023-11-05T20:49:37Z"), response_length: 110, sentiment_score: "0.16" },
            { id: 253, request_id: 113, user_id: 111, response_content: "A routine follow-up: the account was resolved.", created_at: new Date("2023-07-25T14:58:17Z"), response_length: 242, sentiment_score: "0.34" },
            { id: 254, request_id: 56, user_id: 38, response_content: "The invoice was delayed following a repeat review.", created_at: new Date("2023-08-27T18:32:44Z"), response_length: 156, sentiment_score: "0.64" },
            { id: 255, request_id: 131, user_id: 143, response_content: "The report was reviewed following a repeat review.", created_at: new Date("2023-10-25T12:58:18Z"), response_length: 214, sentiment_score: "-0.23" },
            { id: 256, request_id: 184, user_id: 48, response_content: "A repeat follow-up: the transfer was escalated.", created_at: new Date("2023-07-31T20:16:28Z"), response_length: 289, sentiment_score: "-0.14" },
            { id: 257, request_id: 142, user_id: 25, response_content: null, created_at: new Date("2023-06-13T23:34:09Z"), response_length: 296, sentiment_score: "0.31" },
            { id: 258, request_id: 142, user_id: 144, response_content: null, created_at: new Date("2023-08-02T09:01:19Z"), response_length: 140, sentiment_score: "0.14" },
            { id: 259, request_id: 95, user_id: 108, response_content: null, created_at: new Date("2023-04-25T10:57:55Z"), response_length: 337, sentiment_score: "0.11" },
            { id: 260, request_id: 96, user_id: 24, response_content: "A minor follow-up: the order was rejected.", created_at: new Date("2023-12-18T18:30:43Z"), response_length: 310, sentiment_score: "0.18" },
            { id: 261, request_id: 180, user_id: 78, response_content: "A manual follow-up: the record was processed.", created_at: new Date("2023-12-23T13:09:50Z"), response_length: 256, sentiment_score: "-0.19" },
            { id: 262, request_id: 149, user_id: 69, response_content: "Support asked for a change and the appointment was reopened.", created_at: new Date("2023-01-31T16:59:57Z"), response_length: 188, sentiment_score: "-0.18" },
            { id: 263, request_id: 196, user_id: 10, response_content: "No response from the reviewer, so the transfer was confirmed.", created_at: new Date("2023-01-12T17:51:11Z"), response_length: 309, sentiment_score: "-0.23" },
            { id: 264, request_id: 48, user_id: 79, response_content: "An operator confirmed the details and the record was closed.", created_at: new Date("2023-02-07T23:56:44Z"), response_length: 415, sentiment_score: "0.14" },
            { id: 265, request_id: 188, user_id: 116, response_content: "The team reported an unusual issue; the document was closed.", created_at: new Date("2023-04-02T21:34:59Z"), response_length: 364, sentiment_score: "-0.19" },
            { id: 266, request_id: 92, user_id: 74, response_content: "Flagged as minor. The team reopened the payment.", created_at: new Date("2023-08-05T17:36:40Z"), response_length: 181, sentiment_score: "0.32" },
            { id: 267, request_id: 188, user_id: 11, response_content: "The appointment was rejected following an urgent review.", created_at: new Date("2023-03-26T13:48:28Z"), response_length: 211, sentiment_score: "-0.10" },
            { id: 268, request_id: 65, user_id: 119, response_content: "The document was rescheduled — standard case, no further action.", created_at: new Date("2023-10-14T10:23:23Z"), response_length: 274, sentiment_score: "0.27" },
            { id: 269, request_id: 63, user_id: 63, response_content: "Flagged as unusual. The customer updated the ticket.", created_at: new Date("2023-09-06T20:42:19Z"), response_length: 200, sentiment_score: "-0.37" },
            { id: 270, request_id: 172, user_id: 69, response_content: "A manual follow-up: the payment was confirmed.", created_at: new Date("2023-06-11T10:27:03Z"), response_length: 319, sentiment_score: "-0.11" },
            { id: 271, request_id: 181, user_id: 77, response_content: "The record was escalated after a routine check.", created_at: new Date("2023-11-03T11:44:08Z"), response_length: 360, sentiment_score: "-0.13" },
            { id: 272, request_id: 97, user_id: 1, response_content: "An operator asked for a change and the document was processed.", created_at: new Date("2023-11-03T14:05:07Z"), response_length: 279, sentiment_score: "-0.21" },
            { id: 273, request_id: 62, user_id: 147, response_content: "The reviewer asked for a change and the shipment was reopened.", created_at: new Date("2023-12-17T15:39:37Z"), response_length: 211, sentiment_score: "0.13" },
            { id: 274, request_id: 101, user_id: 98, response_content: "Support reported a late issue; the item was resolved.", created_at: new Date("2023-04-17T20:05:55Z"), response_length: 256, sentiment_score: "-0.23" },
            { id: 275, request_id: 133, user_id: 91, response_content: "The claim was resolved following a standard review.", created_at: new Date("2023-01-02T10:20:38Z"), response_length: 243, sentiment_score: "-0.03" },
            { id: 276, request_id: 142, user_id: 73, response_content: "The request was completed — urgent case, no further action.", created_at: new Date("2023-02-27T11:26:52Z"), response_length: 309, sentiment_score: "-0.05" },
            { id: 277, request_id: 62, user_id: 21, response_content: "A partial account was refunded the same day.", created_at: new Date("2023-04-12T23:04:04Z"), response_length: 357, sentiment_score: "0.32" },
            { id: 278, request_id: 147, user_id: 82, response_content: "The payment was refunded after a routine check.", created_at: new Date("2023-02-12T21:57:10Z"), response_length: 250, sentiment_score: "-0.31" },
            { id: 279, request_id: 174, user_id: 112, response_content: "No response from the courier, so the order was updated.", created_at: new Date("2023-01-01T15:47:07Z"), response_length: 395, sentiment_score: "0.23" },
            { id: 280, request_id: 92, user_id: 65, response_content: "No response from support, so the delivery was reopened.", created_at: new Date("2023-03-31T09:42:17Z"), response_length: 153, sentiment_score: "0.09" },
            { id: 281, request_id: 105, user_id: 139, response_content: "Flagged as repeat. The customer cancelled the request.", created_at: new Date("2023-09-30T18:18:44Z"), response_length: 229, sentiment_score: "0.02" },
            { id: 282, request_id: 197, user_id: 14, response_content: "The record was delayed after an urgent check.", created_at: new Date("2023-03-04T12:39:18Z"), response_length: 196, sentiment_score: "-0.34" },
            { id: 283, request_id: 8, user_id: 111, response_content: "The customer confirmed the details and the document was resolved.", created_at: new Date("2023-09-19T16:28:09Z"), response_length: 271, sentiment_score: "-0.77" },
            { id: 284, request_id: 47, user_id: 82, response_content: "No response from the reviewer, so the transfer was replaced.", created_at: new Date("2023-07-29T20:31:57Z"), response_length: 189, sentiment_score: "-0.16" },
            { id: 285, request_id: 70, user_id: 100, response_content: "An urgent shipment was approved the same day.", created_at: new Date("2023-07-10T22:27:31Z"), response_length: 141, sentiment_score: "0.21" },
            { id: 286, request_id: 181, user_id: 122, response_content: "No response from the account owner, so the document was replaced.", created_at: new Date("2023-05-18T16:27:18Z"), response_length: 148, sentiment_score: "-0.14" },
            { id: 287, request_id: 113, user_id: 15, response_content: "An unusual invoice was escalated the same day.", created_at: new Date("2023-04-06T18:24:55Z"), response_length: 211, sentiment_score: "-0.14" },
            { id: 288, request_id: 3, user_id: 113, response_content: "An urgent account was updated the same day.", created_at: new Date("2023-10-09T16:43:15Z"), response_length: 158, sentiment_score: "0.10" },
            { id: 289, request_id: 200, user_id: 57, response_content: "The reviewer reported an incomplete issue; the shipment was replaced.", created_at: new Date("2023-05-16T12:24:08Z"), response_length: 282, sentiment_score: "-0.09" },
            { id: 290, request_id: 146, user_id: 145, response_content: "The ticket was delayed — duplicate case, no further action.", created_at: new Date("2023-06-25T12:31:12Z"), response_length: 141, sentiment_score: "-0.37" },
            { id: 291, request_id: 120, user_id: 8, response_content: "The courier asked for a change and the session was escalated.", created_at: new Date("2023-10-29T14:28:13Z"), response_length: 282, sentiment_score: "0.38" },
            { id: 292, request_id: 168, user_id: 12, response_content: "Support confirmed the details and the shipment was rejected.", created_at: new Date("2023-02-05T19:53:46Z"), response_length: 246, sentiment_score: "-0.14" },
            { id: 293, request_id: 149, user_id: 96, response_content: "No response from support, so the report was reviewed.", created_at: new Date("2023-03-04T17:05:09Z"), response_length: 306, sentiment_score: "-0.04" },
            { id: 294, request_id: 39, user_id: 32, response_content: "An urgent invoice was confirmed the same day.", created_at: new Date("2023-10-29T17:41:08Z"), response_length: 359, sentiment_score: "0.11" },
            { id: 295, request_id: 74, user_id: 49, response_content: "The customer asked for a change and the invoice was approved.", created_at: new Date("2023-09-04T22:41:36Z"), response_length: 126, sentiment_score: "0.32" },
            { id: 296, request_id: 69, user_id: 15, response_content: "A minor item was rescheduled the same day.", created_at: new Date("2023-07-16T09:16:15Z"), response_length: 265, sentiment_score: "0.39" },
            { id: 297, request_id: 195, user_id: 149, response_content: "An automatic shipment was replaced the same day.", created_at: new Date("2023-08-02T16:44:34Z"), response_length: 131, sentiment_score: "0.20" },
            { id: 298, request_id: 38, user_id: 58, response_content: "A late follow-up: the appointment was rejected.", created_at: new Date("2023-06-20T21:45:09Z"), response_length: 304, sentiment_score: "0.17" },
            { id: 299, request_id: 81, user_id: 21, response_content: "No response from the courier, so the payment was rejected.", created_at: new Date("2023-02-13T17:54:28Z"), response_length: 272, sentiment_score: "0.04" },
            { id: 300, request_id: 121, user_id: 24, response_content: "A late transfer was reopened the same day.", created_at: new Date("2023-07-24T15:55:23Z"), response_length: 410, sentiment_score: "-0.32" },
        ],
    });
    await prisma.support_ratings.createMany({
        data: [
            { id: 1, response_id: 6, rating_value: 5, created_at: new Date("2023-05-23T15:49:16Z"), response_time: 68 },
            { id: 2, response_id: 207, rating_value: 1, created_at: new Date("2023-05-23T15:22:16Z"), response_time: 14 },
            { id: 3, response_id: 39, rating_value: 2, created_at: new Date("2023-04-15T16:09:34Z"), response_time: 30 },
            { id: 4, response_id: 237, rating_value: 2, created_at: new Date("2023-06-03T18:36:13Z"), response_time: 55 },
            { id: 5, response_id: 255, rating_value: 5, created_at: new Date("2023-05-31T13:18:58Z"), response_time: 75 },
            { id: 6, response_id: 177, rating_value: 2, created_at: new Date("2023-04-09T11:54:49Z"), response_time: 81 },
            { id: 7, response_id: 41, rating_value: 1, created_at: new Date("2023-05-17T13:54:50Z"), response_time: 35 },
            { id: 8, response_id: 77, rating_value: 5, created_at: new Date("2023-02-22T14:26:45Z"), response_time: 74 },
            { id: 9, response_id: 50, rating_value: 5, created_at: new Date("2023-11-19T12:06:27Z"), response_time: 45 },
            { id: 10, response_id: 57, rating_value: 5, created_at: null, response_time: 52 },
            { id: 11, response_id: 216, rating_value: 5, created_at: null, response_time: 75 },
            { id: 12, response_id: 193, rating_value: 3, created_at: new Date("2023-02-09T09:10:57Z"), response_time: 87 },
            { id: 13, response_id: 8, rating_value: 2, created_at: new Date("2023-10-13T10:05:30Z"), response_time: 76 },
            { id: 14, response_id: 250, rating_value: 5, created_at: new Date("2023-11-20T14:38:46Z"), response_time: 53 },
            { id: 15, response_id: 125, rating_value: 5, created_at: new Date("2023-12-17T14:03:52Z"), response_time: 82 },
            { id: 16, response_id: 25, rating_value: 5, created_at: new Date("2023-05-27T00:59:54Z"), response_time: 79 },
            { id: 17, response_id: 55, rating_value: 2, created_at: null, response_time: 91 },
            { id: 18, response_id: 26, rating_value: 2, created_at: new Date("2023-09-26T15:56:41Z"), response_time: 72 },
            { id: 19, response_id: 227, rating_value: 2, created_at: new Date("2023-04-10T15:17:50Z"), response_time: 83 },
            { id: 20, response_id: 48, rating_value: 5, created_at: new Date("2023-05-10T15:48:20Z"), response_time: 48 },
            { id: 21, response_id: 162, rating_value: 3, created_at: new Date("2023-07-01T13:58:15Z"), response_time: 54 },
            { id: 22, response_id: 228, rating_value: 5, created_at: new Date("2023-08-27T17:02:43Z"), response_time: 40 },
            { id: 23, response_id: 280, rating_value: 2, created_at: new Date("2023-04-06T09:13:36Z"), response_time: 80 },
            { id: 24, response_id: 258, rating_value: 5, created_at: new Date("2023-10-02T10:49:51Z"), response_time: 49 },
            { id: 25, response_id: 263, rating_value: 5, created_at: new Date("2023-08-26T15:52:04Z"), response_time: 62 },
            { id: 26, response_id: 259, rating_value: 3, created_at: new Date("2023-11-27T19:14:17Z"), response_time: 50 },
            { id: 27, response_id: 17, rating_value: 2, created_at: new Date("2023-04-24T08:35:21Z"), response_time: 45 },
            { id: 28, response_id: 273, rating_value: 2, created_at: new Date("2023-04-22T13:02:32Z"), response_time: 52 },
            { id: 29, response_id: 273, rating_value: 4, created_at: new Date("2023-03-30T15:35:38Z"), response_time: 26 },
            { id: 30, response_id: 30, rating_value: 4, created_at: new Date("2023-01-02T16:54:42Z"), response_time: 31 },
            { id: 31, response_id: 210, rating_value: 5, created_at: new Date("2023-12-07T18:31:13Z"), response_time: 65 },
            { id: 32, response_id: 5, rating_value: 4, created_at: null, response_time: 52 },
            { id: 33, response_id: 147, rating_value: 4, created_at: new Date("2023-03-04T15:27:01Z"), response_time: 64 },
            { id: 34, response_id: 57, rating_value: 5, created_at: null, response_time: 43 },
            { id: 35, response_id: 299, rating_value: 4, created_at: new Date("2023-10-25T15:38:13Z"), response_time: 72 },
            { id: 36, response_id: 166, rating_value: 3, created_at: new Date("2023-12-11T13:01:26Z"), response_time: 63 },
            { id: 37, response_id: 22, rating_value: 3, created_at: new Date("2023-01-21T11:45:18Z"), response_time: 56 },
            { id: 38, response_id: 200, rating_value: 1, created_at: new Date("2023-04-07T14:44:07Z"), response_time: 76 },
            { id: 39, response_id: 199, rating_value: 5, created_at: null, response_time: 49 },
            { id: 40, response_id: 92, rating_value: 4, created_at: new Date("2023-12-11T09:39:38Z"), response_time: 39 },
            { id: 41, response_id: 101, rating_value: 5, created_at: new Date("2023-12-11T09:49:48Z"), response_time: 54 },
            { id: 42, response_id: 274, rating_value: 5, created_at: new Date("2023-05-01T10:08:10Z"), response_time: 62 },
            { id: 43, response_id: 18, rating_value: 4, created_at: new Date("2023-01-15T09:21:47Z"), response_time: 45 },
            { id: 44, response_id: 146, rating_value: 5, created_at: new Date("2023-03-06T09:57:43Z"), response_time: 40 },
            { id: 45, response_id: 217, rating_value: 5, created_at: new Date("2023-06-18T17:36:14Z"), response_time: 80 },
            { id: 46, response_id: 96, rating_value: 2, created_at: new Date("2023-10-30T16:03:21Z"), response_time: 33 },
            { id: 47, response_id: 73, rating_value: 2, created_at: new Date("2023-07-21T12:15:39Z"), response_time: 62 },
            { id: 48, response_id: 206, rating_value: 2, created_at: new Date("2023-10-08T10:47:39Z"), response_time: 60 },
            { id: 49, response_id: 158, rating_value: 5, created_at: new Date("2023-05-22T19:54:23Z"), response_time: 47 },
            { id: 50, response_id: 140, rating_value: 3, created_at: new Date("2023-07-09T11:35:07Z"), response_time: 34 },
            { id: 51, response_id: 231, rating_value: 5, created_at: new Date("2023-11-11T11:30:38Z"), response_time: 61 },
            { id: 52, response_id: 98, rating_value: 5, created_at: null, response_time: 53 },
            { id: 53, response_id: 106, rating_value: 5, created_at: new Date("2023-08-20T07:42:15Z"), response_time: 55 },
            { id: 54, response_id: 238, rating_value: 3, created_at: new Date("2023-03-13T08:16:18Z"), response_time: 50 },
            { id: 55, response_id: 65, rating_value: 4, created_at: null, response_time: 78 },
            { id: 56, response_id: 22, rating_value: 3, created_at: new Date("2023-05-21T19:35:58Z"), response_time: 71 },
            { id: 57, response_id: 297, rating_value: 5, created_at: new Date("2023-11-12T13:16:49Z"), response_time: 17 },
            { id: 58, response_id: 211, rating_value: 4, created_at: new Date("2023-08-30T11:30:55Z"), response_time: 86 },
            { id: 59, response_id: 258, rating_value: 3, created_at: new Date("2023-11-01T13:57:54Z"), response_time: 69 },
            { id: 60, response_id: 181, rating_value: 3, created_at: new Date("2023-04-28T12:55:06Z"), response_time: 74 },
            { id: 61, response_id: 42, rating_value: 5, created_at: new Date("2023-09-14T14:49:12Z"), response_time: 89 },
            { id: 62, response_id: 199, rating_value: 4, created_at: new Date("2023-02-02T10:27:33Z"), response_time: 41 },
            { id: 63, response_id: 117, rating_value: 2, created_at: new Date("2023-04-01T10:31:26Z"), response_time: 69 },
            { id: 64, response_id: 240, rating_value: 4, created_at: new Date("2023-09-19T10:16:30Z"), response_time: 83 },
            { id: 65, response_id: 41, rating_value: 4, created_at: new Date("2023-07-22T11:01:44Z"), response_time: 76 },
            { id: 66, response_id: 17, rating_value: 2, created_at: new Date("2023-08-25T15:51:55Z"), response_time: 68 },
            { id: 67, response_id: 266, rating_value: 2, created_at: new Date("2023-03-03T20:43:06Z"), response_time: 71 },
            { id: 68, response_id: 117, rating_value: 5, created_at: new Date("2023-01-18T18:24:25Z"), response_time: 60 },
            { id: 69, response_id: 135, rating_value: 5, created_at: null, response_time: 53 },
            { id: 70, response_id: 171, rating_value: 2, created_at: null, response_time: 36 },
            { id: 71, response_id: 132, rating_value: 2, created_at: new Date("2023-07-15T11:10:25Z"), response_time: 75 },
            { id: 72, response_id: 226, rating_value: 2, created_at: new Date("2023-07-01T15:10:00Z"), response_time: 85 },
            { id: 73, response_id: 297, rating_value: 5, created_at: new Date("2023-03-26T14:46:42Z"), response_time: 82 },
            { id: 74, response_id: 281, rating_value: 5, created_at: new Date("2023-11-06T09:26:02Z"), response_time: 28 },
            { id: 75, response_id: 40, rating_value: 5, created_at: new Date("2023-11-18T09:31:01Z"), response_time: 49 },
            { id: 76, response_id: 47, rating_value: 5, created_at: new Date("2023-08-24T17:02:13Z"), response_time: 58 },
            { id: 77, response_id: 63, rating_value: 5, created_at: new Date("2023-01-23T12:29:09Z"), response_time: 65 },
            { id: 78, response_id: 8, rating_value: 1, created_at: new Date("2023-02-10T10:51:20Z"), response_time: 50 },
            { id: 79, response_id: 217, rating_value: 4, created_at: new Date("2023-12-03T14:17:03Z"), response_time: 84 },
            { id: 80, response_id: 9, rating_value: 4, created_at: new Date("2023-03-10T12:21:25Z"), response_time: 46 },
            { id: 81, response_id: 3, rating_value: 3, created_at: new Date("2023-07-14T19:57:27Z"), response_time: 64 },
            { id: 82, response_id: 115, rating_value: 4, created_at: new Date("2023-01-05T14:12:37Z"), response_time: 83 },
            { id: 83, response_id: 275, rating_value: 3, created_at: new Date("2023-02-24T15:17:16Z"), response_time: 28 },
            { id: 84, response_id: 256, rating_value: 5, created_at: new Date("2023-02-14T11:17:11Z"), response_time: 35 },
            { id: 85, response_id: 136, rating_value: 4, created_at: new Date("2023-07-12T19:42:49Z"), response_time: 58 },
            { id: 86, response_id: 85, rating_value: 4, created_at: new Date("2023-10-24T14:10:02Z"), response_time: 28 },
            { id: 87, response_id: 159, rating_value: 3, created_at: new Date("2023-11-10T14:52:25Z"), response_time: 30 },
            { id: 88, response_id: 279, rating_value: 4, created_at: null, response_time: 90 },
            { id: 89, response_id: 219, rating_value: 4, created_at: new Date("2023-09-17T08:14:07Z"), response_time: 75 },
            { id: 90, response_id: 157, rating_value: 4, created_at: new Date("2023-12-22T20:27:32Z"), response_time: 62 },
            { id: 91, response_id: 261, rating_value: 5, created_at: new Date("2023-10-07T14:11:20Z"), response_time: 73 },
            { id: 92, response_id: 298, rating_value: 4, created_at: new Date("2023-02-05T15:25:06Z"), response_time: 58 },
            { id: 93, response_id: 28, rating_value: 3, created_at: new Date("2023-05-29T11:46:48Z"), response_time: 61 },
            { id: 94, response_id: 49, rating_value: 1, created_at: new Date("2023-01-28T16:30:42Z"), response_time: 41 },
            { id: 95, response_id: 200, rating_value: 3, created_at: new Date("2023-06-05T15:01:18Z"), response_time: 76 },
            { id: 96, response_id: 92, rating_value: 5, created_at: new Date("2023-07-16T15:40:06Z"), response_time: 69 },
            { id: 97, response_id: 157, rating_value: 3, created_at: new Date("2023-09-16T11:37:57Z"), response_time: 37 },
            { id: 98, response_id: 135, rating_value: 3, created_at: new Date("2023-05-22T17:08:30Z"), response_time: 41 },
            { id: 99, response_id: 168, rating_value: 2, created_at: new Date("2023-12-14T13:06:05Z"), response_time: 41 },
            { id: 100, response_id: 195, rating_value: 5, created_at: new Date("2023-07-31T13:57:07Z"), response_time: 49 },
            { id: 101, response_id: 153, rating_value: 3, created_at: new Date("2023-11-18T17:37:49Z"), response_time: 52 },
            { id: 102, response_id: 57, rating_value: 5, created_at: new Date("2023-06-17T06:36:16Z"), response_time: 60 },
            { id: 103, response_id: 204, rating_value: 3, created_at: new Date("2023-03-12T14:03:18Z"), response_time: 54 },
            { id: 104, response_id: 109, rating_value: 5, created_at: new Date("2023-01-16T14:24:05Z"), response_time: 69 },
            { id: 105, response_id: 176, rating_value: 3, created_at: new Date("2023-10-19T18:13:06Z"), response_time: 56 },
            { id: 106, response_id: 48, rating_value: 5, created_at: new Date("2023-03-03T16:08:57Z"), response_time: 31 },
            { id: 107, response_id: 194, rating_value: 1, created_at: new Date("2023-11-03T08:15:53Z"), response_time: 53 },
            { id: 108, response_id: 144, rating_value: 5, created_at: null, response_time: 64 },
            { id: 109, response_id: 17, rating_value: 1, created_at: new Date("2023-12-27T09:24:04Z"), response_time: 55 },
            { id: 110, response_id: 226, rating_value: 2, created_at: new Date("2023-02-01T14:54:01Z"), response_time: 54 },
            { id: 111, response_id: 188, rating_value: 5, created_at: new Date("2023-05-28T16:42:40Z"), response_time: 64 },
            { id: 112, response_id: 21, rating_value: 2, created_at: new Date("2023-05-11T09:45:01Z"), response_time: 68 },
            { id: 113, response_id: 206, rating_value: 5, created_at: new Date("2023-04-27T14:05:58Z"), response_time: 87 },
            { id: 114, response_id: 111, rating_value: 3, created_at: new Date("2023-02-04T14:43:51Z"), response_time: 79 },
            { id: 115, response_id: 223, rating_value: 2, created_at: null, response_time: 70 },
            { id: 116, response_id: 286, rating_value: 1, created_at: new Date("2023-08-31T09:17:15Z"), response_time: 70 },
            { id: 117, response_id: 277, rating_value: 5, created_at: new Date("2023-02-20T11:08:04Z"), response_time: 42 },
            { id: 118, response_id: 146, rating_value: 4, created_at: new Date("2023-10-14T10:44:29Z"), response_time: 38 },
            { id: 119, response_id: 67, rating_value: 4, created_at: new Date("2023-09-01T07:34:48Z"), response_time: 57 },
            { id: 120, response_id: 251, rating_value: 5, created_at: new Date("2023-05-21T13:54:53Z"), response_time: 44 },
            { id: 121, response_id: 196, rating_value: 4, created_at: new Date("2023-06-23T10:20:04Z"), response_time: 52 },
            { id: 122, response_id: 185, rating_value: 3, created_at: new Date("2023-03-23T11:52:59Z"), response_time: 58 },
            { id: 123, response_id: 272, rating_value: 3, created_at: new Date("2023-03-04T10:22:43Z"), response_time: 70 },
            { id: 124, response_id: 252, rating_value: 5, created_at: new Date("2023-09-01T08:19:40Z"), response_time: 75 },
            { id: 125, response_id: 271, rating_value: 4, created_at: new Date("2023-01-14T11:18:04Z"), response_time: 80 },
            { id: 126, response_id: 100, rating_value: 2, created_at: new Date("2023-11-22T08:41:55Z"), response_time: 74 },
            { id: 127, response_id: 150, rating_value: 4, created_at: null, response_time: 47 },
            { id: 128, response_id: 98, rating_value: 3, created_at: new Date("2023-02-17T14:38:03Z"), response_time: 36 },
            { id: 129, response_id: 242, rating_value: 4, created_at: new Date("2023-06-13T13:27:35Z"), response_time: 82 },
            { id: 130, response_id: 283, rating_value: 4, created_at: new Date("2023-04-02T12:45:59Z"), response_time: 82 },
            { id: 131, response_id: 228, rating_value: 4, created_at: new Date("2023-06-08T09:33:12Z"), response_time: 61 },
            { id: 132, response_id: 206, rating_value: 5, created_at: new Date("2023-01-25T14:38:42Z"), response_time: 49 },
            { id: 133, response_id: 67, rating_value: 4, created_at: new Date("2023-09-10T17:56:14Z"), response_time: 30 },
            { id: 134, response_id: 292, rating_value: 2, created_at: new Date("2023-07-20T12:58:47Z"), response_time: 97 },
            { id: 135, response_id: 288, rating_value: 4, created_at: new Date("2023-02-10T10:35:00Z"), response_time: 47 },
            { id: 136, response_id: 178, rating_value: 4, created_at: new Date("2023-11-09T16:43:25Z"), response_time: 55 },
            { id: 137, response_id: 54, rating_value: 2, created_at: new Date("2023-07-28T15:22:53Z"), response_time: 50 },
            { id: 138, response_id: 157, rating_value: 4, created_at: new Date("2023-01-14T10:31:57Z"), response_time: 52 },
            { id: 139, response_id: 255, rating_value: 5, created_at: new Date("2023-07-10T11:58:00Z"), response_time: 47 },
            { id: 140, response_id: 71, rating_value: 3, created_at: new Date("2023-07-10T11:20:53Z"), response_time: 57 },
            { id: 141, response_id: 65, rating_value: 2, created_at: new Date("2023-11-21T11:01:54Z"), response_time: 39 },
            { id: 142, response_id: 207, rating_value: 2, created_at: new Date("2023-03-31T08:52:11Z"), response_time: 78 },
            { id: 143, response_id: 167, rating_value: 5, created_at: new Date("2023-09-10T09:12:38Z"), response_time: 78 },
            { id: 144, response_id: 80, rating_value: 5, created_at: new Date("2023-04-12T11:43:30Z"), response_time: 35 },
            { id: 145, response_id: 147, rating_value: 3, created_at: new Date("2023-05-26T20:09:15Z"), response_time: 63 },
            { id: 146, response_id: 194, rating_value: 4, created_at: new Date("2023-02-04T10:20:09Z"), response_time: 71 },
            { id: 147, response_id: 90, rating_value: 5, created_at: new Date("2023-08-14T15:32:38Z"), response_time: 47 },
            { id: 148, response_id: 26, rating_value: 5, created_at: null, response_time: 74 },
            { id: 149, response_id: 134, rating_value: 4, created_at: new Date("2023-03-10T10:31:03Z"), response_time: 82 },
            { id: 150, response_id: 227, rating_value: 5, created_at: new Date("2023-02-05T10:55:58Z"), response_time: 80 },
            { id: 151, response_id: 133, rating_value: 4, created_at: new Date("2023-04-11T11:21:46Z"), response_time: 34 },
            { id: 152, response_id: 254, rating_value: 1, created_at: new Date("2023-07-20T11:38:35Z"), response_time: 62 },
            { id: 153, response_id: 158, rating_value: 4, created_at: new Date("2023-11-09T12:14:08Z"), response_time: 41 },
            { id: 154, response_id: 280, rating_value: 5, created_at: new Date("2023-05-02T11:03:43Z"), response_time: 50 },
            { id: 155, response_id: 167, rating_value: 5, created_at: new Date("2023-01-10T12:40:50Z"), response_time: 64 },
            { id: 156, response_id: 147, rating_value: 5, created_at: new Date("2023-07-12T09:51:47Z"), response_time: 100 },
            { id: 157, response_id: 235, rating_value: 5, created_at: null, response_time: 38 },
            { id: 158, response_id: 144, rating_value: 5, created_at: null, response_time: 76 },
            { id: 159, response_id: 217, rating_value: 5, created_at: new Date("2023-04-23T09:08:01Z"), response_time: 50 },
            { id: 160, response_id: 195, rating_value: 3, created_at: new Date("2023-07-13T09:44:52Z"), response_time: 45 },
            { id: 161, response_id: 233, rating_value: 2, created_at: new Date("2023-03-14T11:19:57Z"), response_time: 71 },
            { id: 162, response_id: 208, rating_value: 5, created_at: new Date("2023-07-21T12:02:42Z"), response_time: 73 },
            { id: 163, response_id: 286, rating_value: 4, created_at: new Date("2023-08-24T10:32:10Z"), response_time: 78 },
            { id: 164, response_id: 251, rating_value: 1, created_at: new Date("2023-08-03T18:49:05Z"), response_time: 59 },
            { id: 165, response_id: 46, rating_value: 5, created_at: new Date("2023-01-27T10:33:16Z"), response_time: 70 },
            { id: 166, response_id: 178, rating_value: 1, created_at: new Date("2023-09-01T13:58:16Z"), response_time: 69 },
            { id: 167, response_id: 31, rating_value: 5, created_at: new Date("2023-11-03T17:17:51Z"), response_time: 86 },
            { id: 168, response_id: 193, rating_value: 4, created_at: new Date("2023-01-01T14:35:35Z"), response_time: 74 },
            { id: 169, response_id: 108, rating_value: 5, created_at: new Date("2023-04-09T13:16:24Z"), response_time: 42 },
            { id: 170, response_id: 255, rating_value: 4, created_at: null, response_time: 66 },
            { id: 171, response_id: 15, rating_value: 5, created_at: new Date("2023-11-02T11:00:45Z"), response_time: 49 },
            { id: 172, response_id: 271, rating_value: 5, created_at: new Date("2023-07-05T10:15:10Z"), response_time: 46 },
            { id: 173, response_id: 239, rating_value: 5, created_at: new Date("2023-03-09T14:29:10Z"), response_time: 46 },
            { id: 174, response_id: 256, rating_value: 4, created_at: new Date("2023-08-17T15:10:56Z"), response_time: 56 },
            { id: 175, response_id: 187, rating_value: 5, created_at: new Date("2023-10-29T09:02:12Z"), response_time: 77 },
            { id: 176, response_id: 203, rating_value: 2, created_at: null, response_time: 62 },
            { id: 177, response_id: 28, rating_value: 4, created_at: new Date("2023-08-30T08:57:43Z"), response_time: 31 },
            { id: 178, response_id: 272, rating_value: 4, created_at: new Date("2023-07-18T15:21:06Z"), response_time: 47 },
            { id: 179, response_id: 236, rating_value: 2, created_at: new Date("2023-08-23T12:25:15Z"), response_time: 71 },
            { id: 180, response_id: 137, rating_value: 5, created_at: new Date("2023-02-11T13:19:27Z"), response_time: 53 },
            { id: 181, response_id: 162, rating_value: 5, created_at: new Date("2023-11-22T10:40:59Z"), response_time: 64 },
            { id: 182, response_id: 45, rating_value: 5, created_at: new Date("2023-12-22T14:38:48Z"), response_time: 72 },
            { id: 183, response_id: 160, rating_value: 2, created_at: new Date("2023-01-13T16:45:06Z"), response_time: 50 },
            { id: 184, response_id: 28, rating_value: 5, created_at: new Date("2023-03-17T09:15:59Z"), response_time: 43 },
            { id: 185, response_id: 282, rating_value: 5, created_at: new Date("2023-05-14T17:48:01Z"), response_time: 58 },
            { id: 186, response_id: 223, rating_value: 3, created_at: new Date("2023-07-28T15:09:49Z"), response_time: 76 },
            { id: 187, response_id: 149, rating_value: 5, created_at: new Date("2023-02-21T10:51:55Z"), response_time: 59 },
            { id: 188, response_id: 289, rating_value: 5, created_at: null, response_time: 69 },
            { id: 189, response_id: 286, rating_value: 2, created_at: new Date("2023-09-30T16:43:13Z"), response_time: 48 },
            { id: 190, response_id: 104, rating_value: 3, created_at: new Date("2023-10-16T13:00:28Z"), response_time: 63 },
            { id: 191, response_id: 139, rating_value: 3, created_at: new Date("2023-02-12T15:30:02Z"), response_time: 59 },
            { id: 192, response_id: 226, rating_value: 4, created_at: new Date("2023-07-19T12:58:04Z"), response_time: 47 },
            { id: 193, response_id: 212, rating_value: 4, created_at: new Date("2023-02-25T12:14:15Z"), response_time: 38 },
            { id: 194, response_id: 52, rating_value: 5, created_at: new Date("2023-02-22T09:08:33Z"), response_time: 80 },
            { id: 195, response_id: 142, rating_value: 2, created_at: new Date("2023-12-17T17:33:57Z"), response_time: 68 },
            { id: 196, response_id: 91, rating_value: 3, created_at: new Date("2023-07-10T16:59:30Z"), response_time: 55 },
            { id: 197, response_id: 173, rating_value: 5, created_at: new Date("2023-02-21T09:39:56Z"), response_time: 69 },
            { id: 198, response_id: 204, rating_value: 5, created_at: new Date("2023-01-13T11:04:16Z"), response_time: 64 },
            { id: 199, response_id: 99, rating_value: 2, created_at: new Date("2023-11-22T14:22:14Z"), response_time: 48 },
            { id: 200, response_id: 11, rating_value: 2, created_at: new Date("2023-03-14T10:00:53Z"), response_time: 37 },
            { id: 201, response_id: 78, rating_value: 2, created_at: new Date("2023-08-28T09:07:32Z"), response_time: 80 },
            { id: 202, response_id: 211, rating_value: 2, created_at: new Date("2023-01-27T16:47:26Z"), response_time: 92 },
            { id: 203, response_id: 146, rating_value: 3, created_at: new Date("2023-08-08T16:39:18Z"), response_time: 52 },
            { id: 204, response_id: 71, rating_value: 5, created_at: new Date("2023-08-16T14:51:39Z"), response_time: 52 },
            { id: 205, response_id: 131, rating_value: 2, created_at: new Date("2023-10-28T01:40:27Z"), response_time: 61 },
            { id: 206, response_id: 6, rating_value: 5, created_at: new Date("2023-01-29T15:03:14Z"), response_time: 54 },
            { id: 207, response_id: 75, rating_value: 2, created_at: new Date("2023-10-15T07:50:45Z"), response_time: 85 },
            { id: 208, response_id: 189, rating_value: 2, created_at: new Date("2023-11-10T15:34:05Z"), response_time: 84 },
            { id: 209, response_id: 34, rating_value: 3, created_at: new Date("2023-09-12T11:03:50Z"), response_time: 67 },
            { id: 210, response_id: 209, rating_value: 3, created_at: new Date("2023-01-20T16:40:31Z"), response_time: 83 },
            { id: 211, response_id: 111, rating_value: 5, created_at: new Date("2023-09-23T11:52:30Z"), response_time: 48 },
            { id: 212, response_id: 126, rating_value: 3, created_at: null, response_time: 64 },
            { id: 213, response_id: 15, rating_value: 5, created_at: new Date("2023-03-03T07:05:34Z"), response_time: 78 },
            { id: 214, response_id: 220, rating_value: 4, created_at: new Date("2023-04-10T16:02:59Z"), response_time: 83 },
            { id: 215, response_id: 23, rating_value: 5, created_at: new Date("2023-05-05T13:52:03Z"), response_time: 77 },
            { id: 216, response_id: 124, rating_value: 5, created_at: new Date("2023-01-19T16:01:00Z"), response_time: 41 },
            { id: 217, response_id: 192, rating_value: 5, created_at: new Date("2023-01-22T12:10:46Z"), response_time: 91 },
            { id: 218, response_id: 51, rating_value: 4, created_at: new Date("2023-07-13T08:53:23Z"), response_time: 53 },
            { id: 219, response_id: 240, rating_value: 4, created_at: new Date("2023-06-13T20:51:41Z"), response_time: 61 },
            { id: 220, response_id: 251, rating_value: 4, created_at: new Date("2023-04-06T11:05:47Z"), response_time: 70 },
            { id: 221, response_id: 258, rating_value: 4, created_at: new Date("2023-06-04T11:43:07Z"), response_time: 75 },
            { id: 222, response_id: 33, rating_value: 4, created_at: new Date("2023-10-21T09:50:17Z"), response_time: 77 },
            { id: 223, response_id: 299, rating_value: 4, created_at: new Date("2023-01-04T10:14:47Z"), response_time: 39 },
            { id: 224, response_id: 192, rating_value: 5, created_at: new Date("2023-09-21T09:40:27Z"), response_time: 23 },
            { id: 225, response_id: 199, rating_value: 5, created_at: new Date("2023-04-08T07:03:53Z"), response_time: 68 },
            { id: 226, response_id: 202, rating_value: 2, created_at: new Date("2023-08-21T17:33:28Z"), response_time: 73 },
            { id: 227, response_id: 222, rating_value: 5, created_at: new Date("2023-04-16T10:07:31Z"), response_time: 65 },
            { id: 228, response_id: 37, rating_value: 4, created_at: null, response_time: 87 },
            { id: 229, response_id: 193, rating_value: 4, created_at: new Date("2023-02-18T11:30:34Z"), response_time: 51 },
            { id: 230, response_id: 47, rating_value: 4, created_at: new Date("2023-12-08T09:51:59Z"), response_time: 66 },
            { id: 231, response_id: 89, rating_value: 5, created_at: new Date("2023-01-03T16:10:09Z"), response_time: 61 },
            { id: 232, response_id: 176, rating_value: 5, created_at: new Date("2023-06-10T08:01:12Z"), response_time: 51 },
            { id: 233, response_id: 245, rating_value: 3, created_at: new Date("2023-07-10T14:42:56Z"), response_time: 86 },
            { id: 234, response_id: 237, rating_value: 1, created_at: new Date("2023-06-22T08:00:51Z"), response_time: 91 },
            { id: 235, response_id: 153, rating_value: 2, created_at: new Date("2023-09-08T16:32:32Z"), response_time: 25 },
            { id: 236, response_id: 87, rating_value: 3, created_at: new Date("2023-05-17T12:24:06Z"), response_time: 83 },
            { id: 237, response_id: 11, rating_value: 4, created_at: new Date("2023-01-03T19:08:11Z"), response_time: 46 },
            { id: 238, response_id: 163, rating_value: 5, created_at: new Date("2023-11-05T09:10:14Z"), response_time: 67 },
            { id: 239, response_id: 97, rating_value: 3, created_at: new Date("2023-09-13T16:47:24Z"), response_time: 39 },
            { id: 240, response_id: 252, rating_value: 3, created_at: new Date("2023-12-15T10:54:53Z"), response_time: 72 },
            { id: 241, response_id: 99, rating_value: 5, created_at: new Date("2023-04-24T11:35:51Z"), response_time: 56 },
            { id: 242, response_id: 177, rating_value: 2, created_at: new Date("2023-08-21T14:43:30Z"), response_time: 43 },
            { id: 243, response_id: 257, rating_value: 5, created_at: new Date("2023-03-22T23:16:37Z"), response_time: 70 },
            { id: 244, response_id: 289, rating_value: 2, created_at: new Date("2023-04-07T09:49:08Z"), response_time: 42 },
            { id: 245, response_id: 177, rating_value: 4, created_at: new Date("2023-08-06T10:50:41Z"), response_time: 74 },
            { id: 246, response_id: 181, rating_value: 4, created_at: new Date("2023-09-05T17:18:00Z"), response_time: 60 },
            { id: 247, response_id: 110, rating_value: 4, created_at: new Date("2023-08-22T09:00:55Z"), response_time: 50 },
            { id: 248, response_id: 51, rating_value: 5, created_at: new Date("2023-09-16T13:17:14Z"), response_time: 67 },
            { id: 249, response_id: 144, rating_value: 3, created_at: new Date("2023-05-31T02:09:37Z"), response_time: 64 },
            { id: 250, response_id: 114, rating_value: 2, created_at: new Date("2023-07-03T12:03:29Z"), response_time: 39 },
            { id: 251, response_id: 170, rating_value: 3, created_at: new Date("2023-03-12T11:06:57Z"), response_time: 26 },
            { id: 252, response_id: 162, rating_value: 5, created_at: new Date("2023-05-01T16:13:32Z"), response_time: 66 },
            { id: 253, response_id: 52, rating_value: 3, created_at: new Date("2023-10-18T11:45:57Z"), response_time: 31 },
            { id: 254, response_id: 258, rating_value: 3, created_at: new Date("2023-04-25T15:59:14Z"), response_time: 38 },
            { id: 255, response_id: 193, rating_value: 2, created_at: new Date("2023-08-06T10:01:41Z"), response_time: 52 },
            { id: 256, response_id: 145, rating_value: 1, created_at: new Date("2023-12-23T09:00:48Z"), response_time: 65 },
            { id: 257, response_id: 83, rating_value: 3, created_at: new Date("2023-10-11T12:39:05Z"), response_time: 47 },
            { id: 258, response_id: 137, rating_value: 5, created_at: new Date("2023-07-31T18:52:17Z"), response_time: 81 },
            { id: 259, response_id: 88, rating_value: 3, created_at: new Date("2023-01-09T15:54:40Z"), response_time: 63 },
            { id: 260, response_id: 55, rating_value: 3, created_at: new Date("2023-07-10T10:33:35Z"), response_time: 62 },
            { id: 261, response_id: 234, rating_value: 4, created_at: new Date("2023-01-10T17:18:23Z"), response_time: 65 },
            { id: 262, response_id: 207, rating_value: 4, created_at: new Date("2023-04-12T14:39:06Z"), response_time: 53 },
            { id: 263, response_id: 146, rating_value: 5, created_at: new Date("2023-02-12T17:56:41Z"), response_time: 54 },
            { id: 264, response_id: 287, rating_value: 2, created_at: null, response_time: 69 },
            { id: 265, response_id: 135, rating_value: 1, created_at: new Date("2023-05-19T19:54:33Z"), response_time: 73 },
            { id: 266, response_id: 189, rating_value: 2, created_at: new Date("2023-10-27T15:27:11Z"), response_time: 61 },
            { id: 267, response_id: 142, rating_value: 5, created_at: new Date("2023-08-09T09:10:39Z"), response_time: 72 },
            { id: 268, response_id: 235, rating_value: 3, created_at: new Date("2023-08-30T12:24:11Z"), response_time: 62 },
            { id: 269, response_id: 50, rating_value: 3, created_at: new Date("2023-01-25T18:38:12Z"), response_time: 78 },
            { id: 270, response_id: 299, rating_value: 4, created_at: new Date("2023-07-22T13:43:30Z"), response_time: 71 },
            { id: 271, response_id: 180, rating_value: 5, created_at: new Date("2023-08-14T13:31:44Z"), response_time: 39 },
            { id: 272, response_id: 155, rating_value: 5, created_at: new Date("2023-01-27T15:20:07Z"), response_time: 86 },
            { id: 273, response_id: 137, rating_value: 4, created_at: new Date("2023-02-24T16:11:43Z"), response_time: 74 },
            { id: 274, response_id: 118, rating_value: 4, created_at: new Date("2023-07-21T09:56:28Z"), response_time: 58 },
            { id: 275, response_id: 68, rating_value: 4, created_at: new Date("2023-12-12T10:53:29Z"), response_time: 47 },
            { id: 276, response_id: 68, rating_value: 4, created_at: new Date("2023-03-04T11:54:03Z"), response_time: 60 },
            { id: 277, response_id: 97, rating_value: 2, created_at: null, response_time: 43 },
            { id: 278, response_id: 172, rating_value: 4, created_at: new Date("2023-01-29T10:44:29Z"), response_time: 74 },
            { id: 279, response_id: 245, rating_value: 4, created_at: new Date("2023-05-07T15:07:24Z"), response_time: 60 },
            { id: 280, response_id: 153, rating_value: 3, created_at: new Date("2023-03-30T09:20:46Z"), response_time: 39 },
            { id: 281, response_id: 90, rating_value: 3, created_at: new Date("2023-04-28T15:09:08Z"), response_time: 77 },
            { id: 282, response_id: 44, rating_value: 2, created_at: new Date("2023-12-21T10:18:13Z"), response_time: 68 },
            { id: 283, response_id: 180, rating_value: 5, created_at: new Date("2023-08-06T09:04:01Z"), response_time: 41 },
            { id: 284, response_id: 17, rating_value: 2, created_at: new Date("2023-09-13T09:02:01Z"), response_time: 32 },
            { id: 285, response_id: 102, rating_value: 5, created_at: new Date("2023-05-28T12:09:25Z"), response_time: 56 },
            { id: 286, response_id: 111, rating_value: 4, created_at: new Date("2023-12-09T15:12:07Z"), response_time: 78 },
            { id: 287, response_id: 299, rating_value: 5, created_at: new Date("2023-05-28T14:52:27Z"), response_time: 35 },
            { id: 288, response_id: 82, rating_value: 3, created_at: new Date("2023-09-06T09:42:54Z"), response_time: 80 },
            { id: 289, response_id: 73, rating_value: 5, created_at: new Date("2023-03-14T10:25:06Z"), response_time: 73 },
            { id: 290, response_id: 254, rating_value: 5, created_at: new Date("2023-03-13T19:27:17Z"), response_time: 53 },
            { id: 291, response_id: 259, rating_value: 5, created_at: new Date("2023-09-13T16:12:21Z"), response_time: 75 },
            { id: 292, response_id: 78, rating_value: 1, created_at: new Date("2023-12-03T15:04:56Z"), response_time: 48 },
            { id: 293, response_id: 263, rating_value: 5, created_at: new Date("2023-01-15T15:02:29Z"), response_time: 56 },
            { id: 294, response_id: 5, rating_value: 3, created_at: new Date("2023-10-12T12:54:04Z"), response_time: 74 },
            { id: 295, response_id: 88, rating_value: 5, created_at: new Date("2023-03-09T12:22:27Z"), response_time: 41 },
            { id: 296, response_id: 161, rating_value: 3, created_at: new Date("2023-03-06T21:02:40Z"), response_time: 75 },
            { id: 297, response_id: 39, rating_value: 5, created_at: new Date("2023-01-15T17:06:11Z"), response_time: 45 },
            { id: 298, response_id: 61, rating_value: 5, created_at: new Date("2023-12-23T11:16:21Z"), response_time: 53 },
            { id: 299, response_id: 260, rating_value: 5, created_at: new Date("2023-02-07T15:08:57Z"), response_time: 60 },
            { id: 300, response_id: 12, rating_value: 3, created_at: new Date("2023-07-08T08:14:54Z"), response_time: 34 },
            { id: 301, response_id: 240, rating_value: 3, created_at: new Date("2023-08-17T09:46:36Z"), response_time: 65 },
            { id: 302, response_id: 259, rating_value: 1, created_at: new Date("2023-01-15T16:35:35Z"), response_time: 37 },
            { id: 303, response_id: 16, rating_value: 5, created_at: new Date("2023-01-22T11:49:56Z"), response_time: 33 },
            { id: 304, response_id: 12, rating_value: 5, created_at: new Date("2023-10-27T12:49:20Z"), response_time: 68 },
            { id: 305, response_id: 147, rating_value: 5, created_at: new Date("2023-11-03T13:53:47Z"), response_time: 52 },
            { id: 306, response_id: 191, rating_value: 4, created_at: new Date("2023-07-06T11:09:53Z"), response_time: 96 },
            { id: 307, response_id: 212, rating_value: 3, created_at: new Date("2023-12-26T13:02:13Z"), response_time: 49 },
            { id: 308, response_id: 155, rating_value: 5, created_at: new Date("2023-10-13T19:31:27Z"), response_time: 36 },
            { id: 309, response_id: 152, rating_value: 5, created_at: null, response_time: 68 },
            { id: 310, response_id: 92, rating_value: 5, created_at: null, response_time: 74 },
            { id: 311, response_id: 52, rating_value: 3, created_at: new Date("2023-10-11T10:54:53Z"), response_time: 78 },
            { id: 312, response_id: 272, rating_value: 4, created_at: new Date("2023-06-03T14:35:08Z"), response_time: 73 },
            { id: 313, response_id: 6, rating_value: 3, created_at: new Date("2023-09-09T15:48:32Z"), response_time: 74 },
            { id: 314, response_id: 10, rating_value: 4, created_at: new Date("2023-07-28T12:10:46Z"), response_time: 64 },
            { id: 315, response_id: 230, rating_value: 5, created_at: new Date("2023-12-10T12:31:17Z"), response_time: 55 },
            { id: 316, response_id: 213, rating_value: 4, created_at: new Date("2023-06-03T11:15:03Z"), response_time: 87 },
            { id: 317, response_id: 23, rating_value: 2, created_at: new Date("2023-10-11T11:17:09Z"), response_time: 67 },
            { id: 318, response_id: 123, rating_value: 5, created_at: null, response_time: 68 },
            { id: 319, response_id: 163, rating_value: 5, created_at: new Date("2023-01-28T14:57:43Z"), response_time: 26 },
            { id: 320, response_id: 166, rating_value: 4, created_at: new Date("2023-04-11T17:51:30Z"), response_time: 40 },
            { id: 321, response_id: 275, rating_value: 2, created_at: new Date("2023-12-04T11:29:37Z"), response_time: 36 },
            { id: 322, response_id: 195, rating_value: 1, created_at: new Date("2023-09-28T14:28:01Z"), response_time: 64 },
            { id: 323, response_id: 256, rating_value: 4, created_at: new Date("2023-12-30T15:46:03Z"), response_time: 56 },
            { id: 324, response_id: 53, rating_value: 4, created_at: new Date("2023-10-06T15:05:59Z"), response_time: 50 },
            { id: 325, response_id: 33, rating_value: 1, created_at: new Date("2023-04-05T15:21:08Z"), response_time: 46 },
            { id: 326, response_id: 166, rating_value: 2, created_at: new Date("2023-12-15T08:38:08Z"), response_time: 62 },
            { id: 327, response_id: 256, rating_value: 5, created_at: new Date("2023-05-11T15:01:33Z"), response_time: 37 },
            { id: 328, response_id: 172, rating_value: 3, created_at: new Date("2023-02-24T13:29:19Z"), response_time: 71 },
            { id: 329, response_id: 5, rating_value: 4, created_at: new Date("2023-08-26T10:26:58Z"), response_time: 39 },
            { id: 330, response_id: 177, rating_value: 5, created_at: new Date("2023-09-20T14:50:43Z"), response_time: 41 },
            { id: 331, response_id: 69, rating_value: 5, created_at: new Date("2023-03-21T13:45:24Z"), response_time: 61 },
            { id: 332, response_id: 262, rating_value: 4, created_at: new Date("2023-03-17T18:19:06Z"), response_time: 63 },
            { id: 333, response_id: 25, rating_value: 5, created_at: new Date("2023-04-11T17:48:02Z"), response_time: 45 },
            { id: 334, response_id: 97, rating_value: 2, created_at: new Date("2023-11-16T19:19:09Z"), response_time: 32 },
            { id: 335, response_id: 282, rating_value: 4, created_at: new Date("2023-01-15T08:04:58Z"), response_time: 54 },
            { id: 336, response_id: 93, rating_value: 4, created_at: new Date("2023-07-01T18:00:35Z"), response_time: 78 },
            { id: 337, response_id: 182, rating_value: 3, created_at: new Date("2023-02-21T11:29:05Z"), response_time: 49 },
            { id: 338, response_id: 146, rating_value: 4, created_at: new Date("2023-07-01T15:39:50Z"), response_time: 61 },
            { id: 339, response_id: 161, rating_value: 2, created_at: null, response_time: 69 },
            { id: 340, response_id: 191, rating_value: 5, created_at: new Date("2023-09-01T15:35:09Z"), response_time: 69 },
            { id: 341, response_id: 201, rating_value: 4, created_at: null, response_time: 35 },
            { id: 342, response_id: 121, rating_value: 3, created_at: new Date("2023-03-26T11:09:00Z"), response_time: 68 },
            { id: 343, response_id: 81, rating_value: 5, created_at: new Date("2023-12-22T14:18:33Z"), response_time: 40 },
            { id: 344, response_id: 174, rating_value: 2, created_at: new Date("2023-11-23T13:42:37Z"), response_time: 73 },
            { id: 345, response_id: 114, rating_value: 2, created_at: new Date("2023-09-26T08:28:12Z"), response_time: 51 },
            { id: 346, response_id: 69, rating_value: 5, created_at: new Date("2023-12-29T11:39:16Z"), response_time: 65 },
            { id: 347, response_id: 18, rating_value: 3, created_at: new Date("2023-10-19T13:40:03Z"), response_time: 62 },
            { id: 348, response_id: 113, rating_value: 1, created_at: new Date("2023-08-21T14:50:28Z"), response_time: 83 },
            { id: 349, response_id: 264, rating_value: 4, created_at: new Date("2023-01-13T08:12:59Z"), response_time: 71 },
            { id: 350, response_id: 258, rating_value: 5, created_at: new Date("2023-01-23T15:07:48Z"), response_time: 43 },
            { id: 351, response_id: 195, rating_value: 5, created_at: new Date("2023-11-24T16:19:55Z"), response_time: 44 },
            { id: 352, response_id: 216, rating_value: 1, created_at: new Date("2023-11-10T15:21:04Z"), response_time: 70 },
            { id: 353, response_id: 212, rating_value: 2, created_at: new Date("2023-05-26T15:56:00Z"), response_time: 54 },
            { id: 354, response_id: 11, rating_value: 5, created_at: new Date("2023-12-16T16:03:00Z"), response_time: 73 },
            { id: 355, response_id: 104, rating_value: 4, created_at: new Date("2023-03-25T17:43:23Z"), response_time: 82 },
            { id: 356, response_id: 280, rating_value: 2, created_at: new Date("2023-08-16T11:20:42Z"), response_time: 48 },
            { id: 357, response_id: 224, rating_value: 4, created_at: new Date("2023-09-08T10:04:16Z"), response_time: 77 },
            { id: 358, response_id: 118, rating_value: 4, created_at: new Date("2023-03-08T13:20:57Z"), response_time: 62 },
            { id: 359, response_id: 84, rating_value: 4, created_at: new Date("2023-08-03T06:46:27Z"), response_time: 64 },
            { id: 360, response_id: 243, rating_value: 2, created_at: null, response_time: 51 },
            { id: 361, response_id: 223, rating_value: 4, created_at: new Date("2023-10-07T08:23:57Z"), response_time: 71 },
            { id: 362, response_id: 229, rating_value: 5, created_at: new Date("2023-12-16T15:10:42Z"), response_time: 28 },
            { id: 363, response_id: 200, rating_value: 5, created_at: new Date("2023-09-10T13:38:34Z"), response_time: 72 },
            { id: 364, response_id: 6, rating_value: 4, created_at: new Date("2023-12-25T10:21:18Z"), response_time: 67 },
            { id: 365, response_id: 271, rating_value: 3, created_at: new Date("2023-01-09T16:15:29Z"), response_time: 74 },
            { id: 366, response_id: 66, rating_value: 3, created_at: new Date("2023-01-10T07:08:01Z"), response_time: 72 },
            { id: 367, response_id: 244, rating_value: 2, created_at: new Date("2023-07-31T18:24:23Z"), response_time: 71 },
            { id: 368, response_id: 41, rating_value: 5, created_at: new Date("2023-07-17T15:54:16Z"), response_time: 48 },
            { id: 369, response_id: 4, rating_value: 4, created_at: new Date("2023-03-06T13:59:04Z"), response_time: 32 },
            { id: 370, response_id: 152, rating_value: 4, created_at: new Date("2023-09-01T08:45:38Z"), response_time: 60 },
            { id: 371, response_id: 34, rating_value: 4, created_at: new Date("2023-06-27T13:14:52Z"), response_time: 85 },
            { id: 372, response_id: 166, rating_value: 5, created_at: null, response_time: 65 },
            { id: 373, response_id: 14, rating_value: 5, created_at: new Date("2023-04-02T15:50:04Z"), response_time: 63 },
            { id: 374, response_id: 51, rating_value: 5, created_at: new Date("2023-09-17T11:29:08Z"), response_time: 78 },
            { id: 375, response_id: 4, rating_value: 3, created_at: new Date("2023-08-14T13:08:16Z"), response_time: 65 },
            { id: 376, response_id: 163, rating_value: 5, created_at: new Date("2023-03-19T21:10:23Z"), response_time: 26 },
            { id: 377, response_id: 282, rating_value: 4, created_at: new Date("2023-06-23T10:04:59Z"), response_time: 43 },
            { id: 378, response_id: 45, rating_value: 3, created_at: new Date("2023-08-07T12:37:58Z"), response_time: 38 },
            { id: 379, response_id: 289, rating_value: 4, created_at: new Date("2023-07-22T10:11:22Z"), response_time: 39 },
            { id: 380, response_id: 49, rating_value: 5, created_at: new Date("2023-06-16T12:59:54Z"), response_time: 58 },
            { id: 381, response_id: 126, rating_value: 2, created_at: new Date("2023-08-20T10:10:16Z"), response_time: 96 },
            { id: 382, response_id: 45, rating_value: 4, created_at: new Date("2023-06-02T09:01:42Z"), response_time: 72 },
            { id: 383, response_id: 117, rating_value: 5, created_at: new Date("2023-06-18T11:02:35Z"), response_time: 58 },
            { id: 384, response_id: 3, rating_value: 3, created_at: new Date("2023-09-08T12:20:01Z"), response_time: 35 },
            { id: 385, response_id: 235, rating_value: 4, created_at: new Date("2023-09-26T11:21:49Z"), response_time: 42 },
            { id: 386, response_id: 249, rating_value: 4, created_at: new Date("2023-10-30T08:24:36Z"), response_time: 37 },
            { id: 387, response_id: 92, rating_value: 5, created_at: new Date("2023-08-07T09:09:08Z"), response_time: 64 },
            { id: 388, response_id: 166, rating_value: 5, created_at: null, response_time: 49 },
            { id: 389, response_id: 165, rating_value: 3, created_at: new Date("2023-11-16T07:08:08Z"), response_time: 59 },
            { id: 390, response_id: 243, rating_value: 2, created_at: new Date("2023-06-16T16:56:44Z"), response_time: 63 },
            { id: 391, response_id: 12, rating_value: 4, created_at: new Date("2023-03-21T11:32:52Z"), response_time: 69 },
            { id: 392, response_id: 270, rating_value: 1, created_at: new Date("2023-11-26T15:31:02Z"), response_time: 41 },
            { id: 393, response_id: 179, rating_value: 3, created_at: null, response_time: 94 },
            { id: 394, response_id: 127, rating_value: 3, created_at: new Date("2023-06-27T20:40:51Z"), response_time: 63 },
            { id: 395, response_id: 164, rating_value: 5, created_at: new Date("2023-04-17T12:32:27Z"), response_time: 52 },
            { id: 396, response_id: 177, rating_value: 2, created_at: new Date("2023-07-25T14:33:26Z"), response_time: 69 },
            { id: 397, response_id: 248, rating_value: 3, created_at: new Date("2023-04-25T10:07:43Z"), response_time: 56 },
            { id: 398, response_id: 209, rating_value: 3, created_at: new Date("2023-08-15T14:48:51Z"), response_time: 67 },
            { id: 399, response_id: 115, rating_value: 3, created_at: new Date("2023-09-25T10:09:26Z"), response_time: 51 },
            { id: 400, response_id: 176, rating_value: 1, created_at: new Date("2023-05-07T16:21:10Z"), response_time: 42 },
        ],
    });
}

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