// Collaborative Project Management Insights (collaborative-project-management-tool-for-small-teams) 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.projects), 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.projects.createMany({
        data: [
            { id: 1, name: "development innovation venture", created_at: new Date("2023-10-26T07:48:01Z"), budget: "1629.17", deadline: "2023-04-05" },
            { id: 2, name: "venture innovation platform", created_at: new Date("2023-05-05T13:44:59Z"), budget: "6607.37", deadline: "2023-09-12" },
            { id: 3, name: "delta", created_at: new Date("2023-02-24T11:07:58Z"), budget: "33919.10", deadline: "2023-01-15" },
            { id: 4, name: "initiative", created_at: new Date("2023-11-20T12:48:16Z"), budget: "15619.28", deadline: "2023-11-02" },
            { id: 5, name: "program framework", created_at: new Date("2023-12-18T20:48:21Z"), budget: "8337.74", deadline: "2023-09-14" },
            { id: 6, name: "initiative tool", created_at: new Date("2023-04-30T05:40:05Z"), budget: "7316.35", deadline: "2023-05-05" },
            { id: 7, name: "solution collaboration initiative", created_at: new Date("2023-10-22T06:43:58Z"), budget: "5149.58", deadline: "2023-01-29" },
            { id: 8, name: "platform development delta", created_at: new Date("2023-12-20T06:45:03Z"), budget: "14916.24", deadline: "2023-11-17" },
            { id: 9, name: null, created_at: new Date("2023-10-04T10:56:01Z"), budget: "49674.69", deadline: "2023-05-17" },
            { id: 10, name: "solution collaboration design", created_at: new Date("2023-05-17T23:35:15Z"), budget: "9465.99", deadline: "2023-07-23" },
            { id: 11, name: "gamma", created_at: new Date("2023-05-26T13:17:46Z"), budget: "6672.46", deadline: "2023-02-23" },
            { id: 12, name: "delta innovation system", created_at: new Date("2023-11-07T19:15:00Z"), budget: "1046.22", deadline: "2023-11-10" },
            { id: 13, name: "application framework", created_at: new Date("2023-11-05T05:53:08Z"), budget: "31407.25", deadline: "2023-11-27" },
            { id: 14, name: "venture beta", created_at: new Date("2023-07-03T18:56:07Z"), budget: "2973.08", deadline: "2023-11-22" },
            { id: 15, name: null, created_at: new Date("2023-03-09T14:39:34Z"), budget: "16232.35", deadline: "2023-05-02" },
            { id: 16, name: "solution delta beta", created_at: new Date("2023-11-24T04:37:14Z"), budget: "5946.40", deadline: "2023-02-04" },
            { id: 17, name: "venture", created_at: new Date("2023-12-29T01:54:07Z"), budget: "36671.38", deadline: "2023-10-08" },
            { id: 18, name: "venture framework strategy", created_at: new Date("2023-09-29T01:19:21Z"), budget: "5754.87", deadline: "2023-01-20" },
            { id: 19, name: null, created_at: new Date("2023-09-15T12:58:00Z"), budget: "21731.97", deadline: "2023-09-11" },
            { id: 20, name: "delta project", created_at: new Date("2023-12-24T15:39:48Z"), budget: "19541.17", deadline: "2023-08-08" },
        ],
    });
    await prisma.sprints.createMany({
        data: [
            { id: 1, project_id: 7, start_date: "2023-02-18", end_date: "2023-09-11", status: "completed" },
            { id: 2, project_id: 11, start_date: "2023-12-17", end_date: null, status: "planned" },
            { id: 3, project_id: 10, start_date: "2023-10-19", end_date: null, status: "planned" },
            { id: 4, project_id: 1, start_date: "2023-06-13", end_date: null, status: "planned" },
            { id: 5, project_id: 14, start_date: "2023-08-12", end_date: null, status: "planned" },
            { id: 6, project_id: 14, start_date: "2023-08-23", end_date: null, status: "planned" },
            { id: 7, project_id: 6, start_date: "2023-07-29", end_date: "2023-12-21", status: "completed" },
            { id: 8, project_id: 14, start_date: "2023-08-01", end_date: null, status: "in_progress" },
            { id: 9, project_id: 1, start_date: "2023-06-05", end_date: null, status: "in_progress" },
            { id: 10, project_id: 6, start_date: "2023-10-08", end_date: null, status: "planned" },
            { id: 11, project_id: 19, start_date: "2023-12-04", end_date: null, status: "planned" },
            { id: 12, project_id: 16, start_date: "2023-08-15", end_date: "2023-04-05", status: "completed" },
            { id: 13, project_id: 4, start_date: "2023-04-02", end_date: "2023-09-26", status: "completed" },
            { id: 14, project_id: 11, start_date: "2023-04-24", end_date: null, status: "planned" },
            { id: 15, project_id: 4, start_date: "2023-07-17", end_date: null, status: "in_progress" },
            { id: 16, project_id: 14, start_date: "2023-07-08", end_date: null, status: "planned" },
            { id: 17, project_id: 10, start_date: "2023-01-29", end_date: null, status: "planned" },
            { id: 18, project_id: 11, start_date: "2023-07-06", end_date: "2023-09-08", status: "completed" },
            { id: 19, project_id: 3, start_date: "2023-10-19", end_date: null, status: "planned" },
            { id: 20, project_id: 2, start_date: "2023-02-14", end_date: null, status: "planned" },
            { id: 21, project_id: 12, start_date: "2023-10-08", end_date: null, status: "in_progress" },
            { id: 22, project_id: 2, start_date: "2023-11-06", end_date: "2023-08-07", status: "completed" },
            { id: 23, project_id: 18, start_date: "2023-05-02", end_date: null, status: "planned" },
            { id: 24, project_id: 17, start_date: "2023-04-25", end_date: null, status: "planned" },
            { id: 25, project_id: 16, start_date: "2023-08-02", end_date: "2023-04-26", status: "completed" },
            { id: 26, project_id: 3, start_date: "2023-12-30", end_date: null, status: "planned" },
            { id: 27, project_id: 6, start_date: "2023-02-09", end_date: null, status: "planned" },
            { id: 28, project_id: 15, start_date: "2023-10-12", end_date: "2023-12-12", status: "completed" },
            { id: 29, project_id: 14, start_date: "2023-07-20", end_date: null, status: "planned" },
            { id: 30, project_id: 13, start_date: "2023-09-26", end_date: "2023-11-07", status: "completed" },
            { id: 31, project_id: 18, start_date: "2023-09-18", end_date: null, status: "planned" },
            { id: 32, project_id: 19, start_date: "2023-04-29", end_date: "2023-04-10", status: "completed" },
            { id: 33, project_id: 15, start_date: "2023-01-09", end_date: null, status: "in_progress" },
            { id: 34, project_id: 10, start_date: "2023-09-07", end_date: null, status: "planned" },
            { id: 35, project_id: 3, start_date: "2023-10-24", end_date: "2023-09-07", status: "completed" },
            { id: 36, project_id: 14, start_date: "2023-05-09", end_date: "2023-08-10", status: "completed" },
            { id: 37, project_id: 18, start_date: "2023-04-14", end_date: null, status: "planned" },
            { id: 38, project_id: 17, start_date: "2023-06-22", end_date: "2023-03-24", status: "completed" },
            { id: 39, project_id: 7, start_date: "2023-08-07", end_date: null, status: "in_progress" },
            { id: 40, project_id: 16, start_date: "2023-08-04", end_date: null, status: "planned" },
            { id: 41, project_id: 13, start_date: "2023-08-17", end_date: null, status: "planned" },
            { id: 42, project_id: 16, start_date: "2023-10-05", end_date: null, status: "planned" },
            { id: 43, project_id: 16, start_date: "2023-10-02", end_date: null, status: "planned" },
            { id: 44, project_id: 16, start_date: "2023-02-03", end_date: null, status: "planned" },
            { id: 45, project_id: 19, start_date: "2023-09-09", end_date: null, status: "planned" },
            { id: 46, project_id: 20, start_date: "2023-01-27", end_date: "2023-05-31", status: "completed" },
            { id: 47, project_id: 11, start_date: "2023-08-24", end_date: null, status: "planned" },
            { id: 48, project_id: 10, start_date: "2023-10-26", end_date: null, status: "in_progress" },
            { id: 49, project_id: 17, start_date: "2023-11-28", end_date: null, status: "planned" },
            { id: 50, project_id: 20, start_date: "2023-12-21", end_date: null, status: "planned" },
            { id: 51, project_id: 2, start_date: "2023-05-29", end_date: null, status: "planned" },
            { id: 52, project_id: 12, start_date: "2023-02-08", end_date: null, status: "planned" },
            { id: 53, project_id: 10, start_date: "2023-07-24", end_date: null, status: "planned" },
            { id: 54, project_id: 14, start_date: "2023-09-23", end_date: null, status: "planned" },
            { id: 55, project_id: 5, start_date: "2023-09-01", end_date: null, status: "in_progress" },
            { id: 56, project_id: 2, start_date: "2023-03-11", end_date: "2023-03-19", status: "completed" },
            { id: 57, project_id: 7, start_date: "2023-01-15", end_date: "2023-12-05", status: "completed" },
            { id: 58, project_id: 8, start_date: "2023-09-13", end_date: "2023-10-01", status: "completed" },
            { id: 59, project_id: 7, start_date: "2023-09-14", end_date: null, status: "planned" },
            { id: 60, project_id: 9, start_date: "2023-12-23", end_date: null, status: "in_progress" },
            { id: 61, project_id: 19, start_date: "2023-04-11", end_date: null, status: "planned" },
            { id: 62, project_id: 20, start_date: "2023-07-21", end_date: null, status: "planned" },
            { id: 63, project_id: 1, start_date: "2023-07-29", end_date: "2023-07-16", status: "completed" },
            { id: 64, project_id: 18, start_date: "2023-12-28", end_date: null, status: "planned" },
            { id: 65, project_id: 3, start_date: "2023-04-16", end_date: null, status: "in_progress" },
            { id: 66, project_id: 9, start_date: "2023-08-11", end_date: null, status: "planned" },
            { id: 67, project_id: 4, start_date: "2023-01-09", end_date: "2023-09-28", status: "completed" },
            { id: 68, project_id: 2, start_date: "2023-12-26", end_date: null, status: "in_progress" },
            { id: 69, project_id: 6, start_date: "2023-07-02", end_date: null, status: "planned" },
            { id: 70, project_id: 13, start_date: "2023-10-03", end_date: null, status: "planned" },
            { id: 71, project_id: 19, start_date: "2023-07-17", end_date: null, status: "planned" },
            { id: 72, project_id: 6, start_date: "2023-07-25", end_date: null, status: "planned" },
            { id: 73, project_id: 15, start_date: "2023-04-17", end_date: "2023-11-30", status: "completed" },
            { id: 74, project_id: 13, start_date: "2023-11-16", end_date: null, status: "in_progress" },
            { id: 75, project_id: 6, start_date: "2023-11-24", end_date: null, status: "planned" },
            { id: 76, project_id: 9, start_date: "2023-05-06", end_date: null, status: "planned" },
            { id: 77, project_id: 12, start_date: "2023-09-29", end_date: null, status: "planned" },
            { id: 78, project_id: 11, start_date: "2023-11-03", end_date: null, status: "planned" },
            { id: 79, project_id: 4, start_date: "2023-08-15", end_date: null, status: "planned" },
            { id: 80, project_id: 16, start_date: "2023-10-22", end_date: "2023-09-07", status: "completed" },
            { id: 81, project_id: 12, start_date: "2023-12-11", end_date: "2023-01-08", status: "completed" },
            { id: 82, project_id: 8, start_date: "2023-01-09", end_date: null, status: "planned" },
            { id: 83, project_id: 8, start_date: "2023-07-25", end_date: null, status: "in_progress" },
            { id: 84, project_id: 11, start_date: "2023-06-10", end_date: "2023-03-01", status: "completed" },
            { id: 85, project_id: 3, start_date: "2023-10-23", end_date: null, status: "planned" },
            { id: 86, project_id: 20, start_date: "2023-02-09", end_date: null, status: "planned" },
            { id: 87, project_id: 5, start_date: "2023-10-15", end_date: "2023-02-07", status: "completed" },
            { id: 88, project_id: 1, start_date: "2023-06-15", end_date: null, status: "planned" },
            { id: 89, project_id: 9, start_date: "2023-03-13", end_date: null, status: "planned" },
            { id: 90, project_id: 19, start_date: "2023-01-07", end_date: null, status: "planned" },
            { id: 91, project_id: 19, start_date: "2023-10-22", end_date: null, status: "planned" },
            { id: 92, project_id: 4, start_date: "2023-04-17", end_date: "2023-12-12", status: "completed" },
            { id: 93, project_id: 19, start_date: "2023-08-10", end_date: null, status: "planned" },
            { id: 94, project_id: 7, start_date: "2023-04-28", end_date: "2023-12-27", status: "completed" },
            { id: 95, project_id: 14, start_date: "2023-08-09", end_date: "2023-11-26", status: "completed" },
            { id: 96, project_id: 7, start_date: "2023-10-24", end_date: "2023-08-25", status: "completed" },
            { id: 97, project_id: 14, start_date: "2023-08-18", end_date: null, status: "planned" },
            { id: 98, project_id: 19, start_date: "2023-02-19", end_date: null, status: "planned" },
            { id: 99, project_id: 16, start_date: "2023-11-17", end_date: "2023-09-21", status: "completed" },
            { id: 100, project_id: 3, start_date: "2023-11-24", end_date: null, status: "planned" },
        ],
    });
    await prisma.tasks.createMany({
        data: [
            { id: 1, sprint_id: 25, title: "optimization planning deployment", description: "The reviewer asked for a change and the shipment was replaced. A duplicate payment was refunded the same day. The invoice was processed — incomplete case, no further action.", created_at: new Date("2023-01-23T10:53:09Z"), completed: true },
            { id: 2, sprint_id: 25, title: "design configuration", description: "The item was closed — minor case, no further action. No response from the courier, so the appointment was refunded. An urgent follow-up: the item was updated.", created_at: new Date("2023-05-13T09:26:30Z"), completed: false },
            { id: 3, sprint_id: 47, title: "design sprint iteration", description: "The customer asked for a change and the transfer was processed. The item was processed following a standard review. The ticket was processed after a duplicate check. An operator asked for a change and the report was confirmed.", created_at: new Date("2023-06-20T16:52:42Z"), completed: true },
            { id: 4, sprint_id: 31, title: "research design", description: "Support confirmed the details and the order was updated. No response from the team, so the order was updated. The reviewer reported an urgent issue; the claim was closed.", created_at: new Date("2023-10-31T10:01:39Z"), completed: false },
            { id: 5, sprint_id: 33, title: "integration", description: "Flagged as urgent. An operator completed the refund. The transfer was processed following a repeat review. The invoice was confirmed after a standard check. Flagged as incomplete. The courier confirmed the session.", created_at: new Date("2023-02-15T18:57:22Z"), completed: true },
            { id: 6, sprint_id: 35, title: "analysis", description: "A routine follow-up: the booking was replaced. A routine follow-up: the shipment was escalated.", created_at: new Date("2023-05-25T15:12:26Z"), completed: false },
            { id: 7, sprint_id: 94, title: "launch review", description: "No response from the account owner, so the record was closed. A manual follow-up: the shipment was completed.", created_at: new Date("2023-01-02T15:22:11Z"), completed: true },
            { id: 8, sprint_id: 17, title: "setup", description: "The account owner confirmed the details and the record was reviewed. The report was approved after a standard check. The account owner confirmed the details and the transfer was cancelled.", created_at: new Date("2023-04-02T14:31:10Z"), completed: true },
            { id: 9, sprint_id: 48, title: "iteration", description: null, created_at: new Date("2023-06-24T15:27:08Z"), completed: true },
            { id: 10, sprint_id: 26, title: "feedback planning", description: "The customer asked for a change and the account was confirmed. The account owner confirmed the details and the delivery was reviewed. The customer reported a routine issue; the shipment was rescheduled.", created_at: new Date("2023-03-15T13:28:04Z"), completed: true },
            { id: 11, sprint_id: 95, title: "documentation review", description: "No response from the customer, so the refund was rejected. An unusual follow-up: the session was rescheduled. A duplicate follow-up: the account was delayed. The customer confirmed the details and the session was replaced.", created_at: new Date("2023-02-20T10:35:43Z"), completed: true },
            { id: 12, sprint_id: 50, title: "evaluation", description: "An unusual order was cancelled the same day. Support reported an automatic issue; the refund was processed. Flagged as incomplete. The customer replaced the ticket.", created_at: new Date("2023-02-07T15:01:33Z"), completed: true },
            { id: 13, sprint_id: 82, title: "sprint debugging optimization", description: "The courier confirmed the details and the account was completed. The account owner reported an automatic issue; the item was confirmed. The team reported an urgent issue; the delivery was updated. The account was approved following a partial review.", created_at: new Date("2023-05-07T07:28:48Z"), completed: true },
            { id: 14, sprint_id: 13, title: "debugging iteration launch", description: "The request was updated following an automatic review. Flagged as automatic. The account owner resolved the booking.", created_at: new Date("2023-12-26T14:40:47Z"), completed: true },
            { id: 15, sprint_id: 88, title: "sprint setup design", description: "The delivery was escalated — duplicate case, no further action. The refund was approved following an incomplete review.", created_at: new Date("2023-06-17T20:39:00Z"), completed: true },
            { id: 16, sprint_id: 75, title: "development analysis planning", description: "The reviewer asked for a change and the transfer was reviewed. Flagged as partial. The supplier refunded the transfer. The session was approved following a routine review. The payment was rejected following a partial review.", created_at: new Date("2023-08-21T14:05:34Z"), completed: true },
            { id: 17, sprint_id: 43, title: "launch documentation development", description: "A manual follow-up: the claim was reviewed. A partial follow-up: the transfer was refunded. The refund was closed — repeat case, no further action. An operator reported a repeat issue; the item was cancelled.", created_at: new Date("2023-08-02T14:23:42Z"), completed: true },
            { id: 18, sprint_id: 95, title: "launch deployment optimization", description: "No response from an operator, so the payment was replaced. The customer reported a duplicate issue; the invoice was closed. The record was updated — duplicate case, no further action.", created_at: new Date("2023-07-19T11:19:03Z"), completed: true },
            { id: 19, sprint_id: 9, title: "review", description: "The ticket was delayed — repeat case, no further action. The request was rescheduled — manual case, no further action. Flagged as duplicate. The supplier refunded the payment. The supplier confirmed the details and the session was approved.", created_at: new Date("2023-05-21T10:14:33Z"), completed: false },
            { id: 20, sprint_id: 35, title: "debugging documentation configuration", description: "The delivery was rescheduled — minor case, no further action. An urgent report was rejected the same day. The team asked for a change and the claim was replaced. The team reported a repeat issue; the invoice was escalated.", created_at: new Date("2023-03-08T08:16:01Z"), completed: true },
            { id: 21, sprint_id: 14, title: "optimization launch", description: "The supplier reported a partial issue; the request was resolved. The session was closed following a manual review. A manual follow-up: the session was delayed.", created_at: new Date("2023-01-25T16:01:05Z"), completed: true },
            { id: 22, sprint_id: 88, title: "research iteration feedback", description: "The order was reviewed — automatic case, no further action. The account owner asked for a change and the report was replaced. The booking was escalated after a routine check.", created_at: new Date("2023-07-31T15:36:32Z"), completed: true },
            { id: 23, sprint_id: 72, title: "planning", description: "The courier reported an automatic issue; the record was closed. Flagged as automatic. The reviewer cancelled the request. The refund was cancelled after an unusual check.", created_at: new Date("2023-07-29T15:30:27Z"), completed: true },
            { id: 24, sprint_id: 64, title: "iteration", description: "The customer confirmed the details and the delivery was delayed. The appointment was confirmed — repeat case, no further action. The supplier reported a partial issue; the appointment was confirmed. The claim was completed — minor case, no further action.", created_at: new Date("2023-11-23T10:54:14Z"), completed: true },
            { id: 25, sprint_id: 47, title: "deployment evaluation", description: "The refund was resolved — partial case, no further action. No response from the reviewer, so the request was completed. An unusual session was cancelled the same day.", created_at: new Date("2023-01-21T09:41:18Z"), completed: true },
            { id: 26, sprint_id: 13, title: "testing review", description: "The report was reopened — repeat case, no further action. The document was confirmed after an unusual check.", created_at: new Date("2023-03-06T14:45:15Z"), completed: false },
            { id: 27, sprint_id: 19, title: "testing refinement", description: "A late follow-up: the document was delayed. The ticket was reviewed — manual case, no further action.", created_at: new Date("2023-08-09T12:40:57Z"), completed: false },
            { id: 28, sprint_id: 78, title: "launch", description: "No response from the customer, so the payment was reopened. Flagged as manual. The supplier processed the session. The courier reported a standard issue; the account was rejected.", created_at: new Date("2023-08-08T14:26:08Z"), completed: true },
            { id: 29, sprint_id: 5, title: "iteration review research", description: "The transfer was resolved — duplicate case, no further action. The invoice was rescheduled after an unusual check.", created_at: new Date("2023-01-08T09:26:50Z"), completed: true },
            { id: 30, sprint_id: 23, title: "sprint", description: null, created_at: new Date("2023-03-18T14:21:16Z"), completed: true },
            { id: 31, sprint_id: 62, title: "launch presentation testing", description: "A routine follow-up: the account was approved. The customer asked for a change and the report was closed. The supplier asked for a change and the account was approved. The booking was processed — urgent case, no further action.", created_at: new Date("2023-07-23T13:16:59Z"), completed: true },
            { id: 32, sprint_id: 65, title: "sprint deployment evaluation", description: "Support confirmed the details and the ticket was reviewed. The shipment was reviewed after a late check. The order was resolved — manual case, no further action.", created_at: new Date("2023-11-21T08:31:04Z"), completed: true },
            { id: 33, sprint_id: 99, title: "launch presentation iteration", description: "The account was processed — unusual case, no further action. The courier asked for a change and the payment was escalated.", created_at: new Date("2023-11-26T10:47:52Z"), completed: false },
            { id: 34, sprint_id: 39, title: "configuration analysis", description: "No response from the account owner, so the transfer was delayed. The reviewer reported an unusual issue; the invoice was cancelled. Support asked for a change and the account was closed. Flagged as standard. An operator cancelled the claim.", created_at: new Date("2023-10-13T13:18:28Z"), completed: true },
            { id: 35, sprint_id: 100, title: "optimization review evaluation", description: "An incomplete request was refunded the same day. The payment was reopened following a standard review. The appointment was rejected — urgent case, no further action. Flagged as partial. The customer escalated the appointment.", created_at: new Date("2023-05-30T08:45:12Z"), completed: false },
            { id: 36, sprint_id: 25, title: "review", description: "The team confirmed the details and the appointment was reviewed. The customer reported a late issue; the session was cancelled. Flagged as minor. The reviewer approved the shipment. The courier confirmed the details and the document was cancelled.", created_at: new Date("2023-03-15T13:52:35Z"), completed: true },
            { id: 37, sprint_id: 18, title: "configuration integration", description: "A manual follow-up: the shipment was updated. A partial appointment was reviewed the same day. The account owner confirmed the details and the session was cancelled.", created_at: new Date("2023-12-11T09:11:52Z"), completed: true },
            { id: 38, sprint_id: 11, title: "refinement configuration", description: "No response from support, so the transfer was reviewed. The customer confirmed the details and the booking was rescheduled. The invoice was rescheduled — duplicate case, no further action.", created_at: new Date("2023-09-05T09:20:14Z"), completed: true },
            { id: 39, sprint_id: 100, title: "presentation refinement", description: null, created_at: new Date("2023-12-26T15:11:44Z"), completed: true },
            { id: 40, sprint_id: 35, title: "launch design", description: "An incomplete follow-up: the payment was cancelled. A partial follow-up: the report was confirmed. The transfer was updated — standard case, no further action. The claim was reopened — duplicate case, no further action.", created_at: new Date("2023-04-30T14:38:56Z"), completed: true },
            { id: 41, sprint_id: 63, title: "debugging design development", description: "The item was approved — incomplete case, no further action. Flagged as incomplete. The customer approved the appointment. A duplicate ticket was refunded the same day. The shipment was closed — urgent case, no further action.", created_at: new Date("2023-11-17T13:22:09Z"), completed: false },
            { id: 42, sprint_id: 65, title: "research presentation testing", description: "Support confirmed the details and the refund was delayed. A routine follow-up: the invoice was approved.", created_at: new Date("2023-02-21T11:16:11Z"), completed: false },
            { id: 43, sprint_id: 89, title: "evaluation iteration analysis", description: "The report was rescheduled following an automatic review. The reviewer reported a duplicate issue; the appointment was updated. The courier asked for a change and the account was updated. The payment was updated — minor case, no further action.", created_at: new Date("2023-12-04T19:44:58Z"), completed: true },
            { id: 44, sprint_id: 59, title: "configuration", description: "A repeat follow-up: the appointment was closed. The item was delayed — automatic case, no further action. The reviewer reported an incomplete issue; the invoice was refunded.", created_at: new Date("2023-09-04T13:56:25Z"), completed: true },
            { id: 45, sprint_id: 84, title: "evaluation configuration", description: "Flagged as manual. The team reviewed the request. The appointment was resolved — incomplete case, no further action. The team confirmed the details and the appointment was processed.", created_at: new Date("2023-02-11T09:59:28Z"), completed: false },
            { id: 46, sprint_id: 25, title: "research configuration", description: "Flagged as late. An operator rejected the record. No response from the account owner, so the invoice was reviewed.", created_at: new Date("2023-07-26T10:13:38Z"), completed: false },
            { id: 47, sprint_id: 93, title: "planning optimization", description: "The refund was processed — partial case, no further action. The courier confirmed the details and the delivery was refunded. The account owner asked for a change and the document was closed.", created_at: new Date("2023-05-21T10:34:35Z"), completed: false },
            { id: 48, sprint_id: 49, title: "configuration launch", description: "The customer confirmed the details and the ticket was cancelled. The session was replaced — urgent case, no further action.", created_at: new Date("2023-11-28T11:20:20Z"), completed: true },
            { id: 49, sprint_id: 97, title: "documentation", description: "A manual follow-up: the account was closed. The payment was closed — standard case, no further action. The appointment was approved — automatic case, no further action.", created_at: new Date("2023-07-21T21:11:38Z"), completed: true },
            { id: 50, sprint_id: 42, title: "feedback", description: "A repeat session was rescheduled the same day. The record was escalated — minor case, no further action.", created_at: new Date("2023-06-13T16:46:21Z"), completed: true },
            { id: 51, sprint_id: 54, title: "feedback", description: "The team reported an incomplete issue; the shipment was rescheduled. A standard item was rejected the same day. Flagged as routine. Support reviewed the booking. The record was reopened following an incomplete review.", created_at: new Date("2023-02-13T11:14:09Z"), completed: true },
            { id: 52, sprint_id: 42, title: "research documentation", description: "The document was approved after a manual check. The account was confirmed after a partial check. The claim was updated after a partial check.", created_at: new Date("2023-02-25T10:53:48Z"), completed: true },
            { id: 53, sprint_id: 61, title: "refinement testing presentation", description: "No response from the courier, so the record was refunded. No response from the account owner, so the record was processed. The report was reopened after an urgent check. The request was resolved after a routine check.", created_at: new Date("2023-03-31T11:25:31Z"), completed: true },
            { id: 54, sprint_id: 43, title: "presentation research", description: "Support reported a repeat issue; the report was confirmed. The payment was rejected — standard case, no further action.", created_at: new Date("2023-11-05T06:45:50Z"), completed: true },
            { id: 55, sprint_id: 49, title: "setup", description: null, created_at: new Date("2023-02-26T13:59:29Z"), completed: true },
            { id: 56, sprint_id: 62, title: "setup", description: "A duplicate document was replaced the same day. A partial request was processed the same day. The reviewer reported a repeat issue; the item was rescheduled. A late account was updated the same day.", created_at: new Date("2023-12-30T17:13:24Z"), completed: true },
            { id: 57, sprint_id: 93, title: "design presentation debugging", description: "No response from the team, so the account was approved. The shipment was processed following an unusual review. An unusual item was replaced the same day. An operator asked for a change and the order was closed.", created_at: new Date("2023-02-20T08:44:36Z"), completed: true },
            { id: 58, sprint_id: 67, title: "setup iteration", description: "The payment was cancelled after an automatic check. A standard request was reopened the same day.", created_at: new Date("2023-10-17T13:39:48Z"), completed: false },
            { id: 59, sprint_id: 91, title: "testing optimization design", description: "A routine follow-up: the report was rejected. The item was rejected after a repeat check. The shipment was escalated following a minor review. Flagged as routine. The account owner reopened the transfer.", created_at: new Date("2023-02-20T08:46:59Z"), completed: false },
            { id: 60, sprint_id: 67, title: "evaluation design research", description: "An automatic follow-up: the report was closed. The supplier confirmed the details and the report was reopened. The order was cancelled — repeat case, no further action. The request was replaced — standard case, no further action.", created_at: new Date("2023-03-05T18:04:00Z"), completed: true },
            { id: 61, sprint_id: 60, title: "design analysis sprint", description: "The claim was closed after a partial check. The account owner asked for a change and the refund was refunded.", created_at: new Date("2023-10-14T11:02:03Z"), completed: true },
            { id: 62, sprint_id: 37, title: "feedback launch", description: "An operator confirmed the details and the payment was approved. Flagged as minor. The courier processed the shipment. A minor follow-up: the claim was escalated.", created_at: new Date("2023-12-11T08:36:22Z"), completed: true },
            { id: 63, sprint_id: 36, title: "configuration analysis testing", description: "The appointment was rescheduled after an automatic check. Flagged as repeat. An operator updated the invoice. The reviewer confirmed the details and the document was refunded.", created_at: new Date("2023-04-14T13:12:41Z"), completed: false },
            { id: 64, sprint_id: 98, title: "feedback launch", description: "Support confirmed the details and the invoice was replaced. The shipment was refunded — incomplete case, no further action. The delivery was rescheduled — unusual case, no further action.", created_at: new Date("2023-12-13T11:19:56Z"), completed: false },
            { id: 65, sprint_id: 89, title: "deployment debugging evaluation", description: "The record was replaced after an incomplete check. The ticket was processed following a partial review. The supplier reported an unusual issue; the record was rejected. The courier confirmed the details and the order was replaced.", created_at: new Date("2023-11-24T08:57:14Z"), completed: true },
            { id: 66, sprint_id: 33, title: "iteration presentation planning", description: null, created_at: new Date("2023-09-08T16:55:48Z"), completed: false },
            { id: 67, sprint_id: 16, title: "development integration", description: null, created_at: new Date("2023-10-28T14:52:49Z"), completed: false },
            { id: 68, sprint_id: 53, title: "debugging design", description: null, created_at: new Date("2023-01-31T11:27:31Z"), completed: true },
            { id: 69, sprint_id: 69, title: "development integration configuration", description: "No response from the account owner, so the claim was closed. The team confirmed the details and the invoice was resolved. The refund was reopened — incomplete case, no further action.", created_at: new Date("2023-10-31T09:46:41Z"), completed: true },
            { id: 70, sprint_id: 8, title: "presentation documentation deployment", description: "No response from the team, so the account was resolved. The delivery was approved after an urgent check.", created_at: new Date("2023-02-08T14:36:03Z"), completed: true },
            { id: 71, sprint_id: 66, title: "debugging documentation", description: "A duplicate document was processed the same day. The courier reported an automatic issue; the delivery was cancelled.", created_at: new Date("2023-08-06T09:00:35Z"), completed: true },
            { id: 72, sprint_id: 90, title: "evaluation iteration presentation", description: "The account owner asked for a change and the document was updated. The shipment was replaced — duplicate case, no further action. A minor claim was rescheduled the same day.", created_at: new Date("2023-07-22T12:42:11Z"), completed: true },
            { id: 73, sprint_id: 40, title: "review deployment iteration", description: "The customer asked for a change and the report was cancelled. The invoice was processed following a duplicate review. The report was delayed after an unusual check. The reviewer confirmed the details and the session was resolved.", created_at: new Date("2023-08-25T10:46:44Z"), completed: false },
            { id: 74, sprint_id: 24, title: "launch debugging configuration", description: null, created_at: new Date("2023-07-28T14:57:35Z"), completed: false },
            { id: 75, sprint_id: 29, title: "debugging configuration", description: null, created_at: new Date("2023-12-20T11:55:21Z"), completed: false },
            { id: 76, sprint_id: 2, title: "analysis review", description: "The supplier asked for a change and the session was updated. A duplicate follow-up: the shipment was confirmed.", created_at: new Date("2023-07-05T09:46:07Z"), completed: true },
            { id: 77, sprint_id: 38, title: "evaluation", description: "The courier confirmed the details and the booking was delayed. The record was rescheduled — unusual case, no further action.", created_at: new Date("2023-06-13T07:27:29Z"), completed: true },
            { id: 78, sprint_id: 8, title: "presentation refinement", description: "No response from the account owner, so the session was refunded. The delivery was completed after a minor check. The delivery was delayed — late case, no further action.", created_at: new Date("2023-07-18T08:20:09Z"), completed: true },
            { id: 79, sprint_id: 2, title: "sprint review", description: "The order was approved — urgent case, no further action. The account was cancelled — partial case, no further action. No response from the team, so the request was reopened.", created_at: new Date("2023-10-23T16:08:51Z"), completed: false },
            { id: 80, sprint_id: 13, title: "integration planning sprint", description: "The courier asked for a change and the appointment was processed. Flagged as repeat. The reviewer updated the item. The reviewer reported a duplicate issue; the report was resolved. An unusual delivery was replaced the same day.", created_at: new Date("2023-05-30T14:24:25Z"), completed: true },
            { id: 81, sprint_id: 96, title: "debugging setup", description: "The team asked for a change and the transfer was cancelled. The claim was rejected — late case, no further action. A repeat follow-up: the account was resolved. The refund was completed after a minor check.", created_at: new Date("2023-05-23T11:03:22Z"), completed: true },
            { id: 82, sprint_id: 36, title: "analysis setup debugging", description: "An urgent request was completed the same day. An unusual follow-up: the ticket was rescheduled. The courier confirmed the details and the record was completed.", created_at: new Date("2023-07-24T09:37:41Z"), completed: true },
            { id: 83, sprint_id: 17, title: "integration", description: "A standard follow-up: the request was delayed. A manual follow-up: the order was confirmed. Flagged as routine. The team completed the booking.", created_at: new Date("2023-07-02T14:09:34Z"), completed: true },
            { id: 84, sprint_id: 88, title: "presentation", description: "Flagged as manual. Support resolved the invoice. The account was rejected after an incomplete check.", created_at: new Date("2023-08-18T11:32:46Z"), completed: true },
            { id: 85, sprint_id: 95, title: "configuration", description: "The record was confirmed after a manual check. Flagged as urgent. Support cancelled the transfer. The reviewer reported a partial issue; the booking was approved.", created_at: new Date("2023-07-23T14:56:18Z"), completed: false },
            { id: 86, sprint_id: 31, title: "deployment iteration", description: "The document was rescheduled — partial case, no further action. The ticket was refunded — automatic case, no further action. No response from the customer, so the booking was closed. The report was rescheduled — late case, no further action.", created_at: new Date("2023-01-20T14:46:06Z"), completed: true },
            { id: 87, sprint_id: 88, title: "refinement", description: "The team asked for a change and the ticket was reviewed. A duplicate follow-up: the invoice was updated. An operator reported a standard issue; the item was reviewed. Flagged as partial. Support reviewed the order.", created_at: new Date("2023-10-17T13:14:18Z"), completed: true },
            { id: 88, sprint_id: 17, title: "launch", description: "No response from an operator, so the session was reviewed. The team confirmed the details and the ticket was replaced. A late follow-up: the payment was delayed. A late transfer was refunded the same day.", created_at: new Date("2023-02-12T13:14:49Z"), completed: true },
            { id: 89, sprint_id: 69, title: "analysis feedback", description: "The booking was completed after an unusual check. No response from an operator, so the shipment was escalated.", created_at: new Date("2023-03-18T12:03:52Z"), completed: false },
            { id: 90, sprint_id: 10, title: "development", description: "No response from support, so the shipment was confirmed. The account owner asked for a change and the item was replaced.", created_at: new Date("2023-03-19T13:05:35Z"), completed: false },
            { id: 91, sprint_id: 50, title: "sprint design", description: "The customer asked for a change and the payment was closed. The record was cancelled — partial case, no further action. The ticket was closed — partial case, no further action.", created_at: new Date("2023-07-29T09:58:56Z"), completed: true },
            { id: 92, sprint_id: 73, title: "optimization debugging presentation", description: "The team confirmed the details and the booking was escalated. The transfer was resolved after an unusual check.", created_at: new Date("2023-01-26T20:39:19Z"), completed: true },
            { id: 93, sprint_id: 89, title: "documentation refinement testing", description: "An operator confirmed the details and the ticket was processed. The ticket was escalated following an urgent review. The delivery was cancelled following a standard review.", created_at: new Date("2023-05-18T13:58:05Z"), completed: false },
            { id: 94, sprint_id: 99, title: "optimization design", description: "Flagged as routine. The customer delayed the report. The invoice was reopened following an unusual review. The document was processed — late case, no further action. An urgent record was updated the same day.", created_at: new Date("2023-10-27T13:24:11Z"), completed: true },
            { id: 95, sprint_id: 5, title: "deployment", description: "The transfer was rejected — unusual case, no further action. The request was delayed after a duplicate check. No response from the courier, so the session was updated.", created_at: new Date("2023-10-31T14:33:21Z"), completed: true },
            { id: 96, sprint_id: 37, title: "launch review", description: "An urgent follow-up: the report was closed. The account owner confirmed the details and the document was replaced. A duplicate follow-up: the appointment was cancelled. Support reported an automatic issue; the payment was closed.", created_at: new Date("2023-10-07T15:44:36Z"), completed: false },
            { id: 97, sprint_id: 72, title: "research planning testing", description: "An unusual appointment was delayed the same day. Flagged as late. The team rejected the document. A repeat follow-up: the delivery was confirmed. The supplier reported a duplicate issue; the delivery was closed.", created_at: new Date("2023-03-02T13:07:51Z"), completed: true },
            { id: 98, sprint_id: 56, title: "documentation", description: "The reviewer confirmed the details and the request was processed. Support confirmed the details and the session was replaced. The supplier reported a routine issue; the payment was rescheduled.", created_at: new Date("2023-11-14T14:16:54Z"), completed: false },
            { id: 99, sprint_id: 90, title: "setup refinement", description: "The courier confirmed the details and the session was confirmed. The payment was rescheduled following a late review. A duplicate refund was closed the same day. Flagged as manual. The reviewer resolved the transfer.", created_at: new Date("2023-03-21T12:59:44Z"), completed: false },
            { id: 100, sprint_id: 61, title: "launch", description: "The ticket was cancelled after an unusual check. The team asked for a change and the booking was completed. Flagged as duplicate. The supplier reopened the shipment. An unusual follow-up: the request was resolved.", created_at: new Date("2023-01-28T13:46:43Z"), completed: true },
            { id: 101, sprint_id: 89, title: "design refinement feedback", description: "Flagged as standard. Support replaced the report. The claim was cancelled after a routine check. The courier confirmed the details and the shipment was confirmed.", created_at: new Date("2023-02-25T08:23:43Z"), completed: false },
            { id: 102, sprint_id: 58, title: "presentation iteration", description: "The report was resolved after an urgent check. An operator asked for a change and the refund was reopened. A partial follow-up: the appointment was escalated. A repeat follow-up: the booking was updated.", created_at: new Date("2023-08-11T12:23:54Z"), completed: true },
            { id: 103, sprint_id: 17, title: "iteration refinement evaluation", description: "The account owner asked for a change and the delivery was updated. An urgent delivery was resolved the same day. The supplier confirmed the details and the record was updated.", created_at: new Date("2023-01-13T08:10:33Z"), completed: false },
            { id: 104, sprint_id: 90, title: "deployment planning", description: "The order was confirmed — manual case, no further action. The shipment was rejected — incomplete case, no further action. An operator asked for a change and the session was updated. No response from the team, so the invoice was processed.", created_at: new Date("2023-03-19T07:52:01Z"), completed: true },
            { id: 105, sprint_id: 29, title: "refinement research deployment", description: "Flagged as routine. Support completed the report. No response from support, so the invoice was escalated. The claim was resolved following a duplicate review.", created_at: new Date("2023-11-11T14:34:18Z"), completed: false },
            { id: 106, sprint_id: 97, title: "documentation launch", description: null, created_at: new Date("2023-01-10T11:16:13Z"), completed: true },
            { id: 107, sprint_id: 73, title: "iteration feedback sprint", description: "The payment was rescheduled following an urgent review. The refund was escalated — automatic case, no further action.", created_at: new Date("2023-11-06T13:58:55Z"), completed: true },
            { id: 108, sprint_id: 97, title: "iteration refinement", description: "The reviewer reported a late issue; the account was replaced. An unusual session was escalated the same day.", created_at: new Date("2023-03-20T16:03:03Z"), completed: true },
            { id: 109, sprint_id: 83, title: "design", description: "Flagged as minor. The customer closed the shipment. The order was processed following a minor review. The item was rescheduled following a manual review. Flagged as minor. The courier cancelled the document.", created_at: new Date("2023-09-25T17:25:52Z"), completed: true },
            { id: 110, sprint_id: 44, title: "evaluation sprint refinement", description: "Flagged as duplicate. The supplier completed the delivery. The order was resolved following a duplicate review. No response from the supplier, so the item was escalated. The customer confirmed the details and the delivery was refunded.", created_at: new Date("2023-04-26T11:40:56Z"), completed: true },
            { id: 111, sprint_id: 22, title: "configuration refinement", description: "Flagged as automatic. The account owner approved the delivery. The transfer was reopened — incomplete case, no further action. The ticket was escalated — unusual case, no further action.", created_at: new Date("2023-11-11T13:44:22Z"), completed: true },
            { id: 112, sprint_id: 68, title: "integration", description: "The session was closed after a partial check. Support confirmed the details and the item was rejected. The request was closed following an incomplete review. A routine delivery was closed the same day.", created_at: new Date("2023-09-24T08:38:26Z"), completed: true },
            { id: 113, sprint_id: 36, title: "setup", description: "The customer asked for a change and the transfer was cancelled. A routine follow-up: the refund was completed.", created_at: new Date("2023-06-02T12:02:51Z"), completed: true },
            { id: 114, sprint_id: 78, title: "optimization", description: "A routine transfer was rejected the same day. Flagged as unusual. The reviewer escalated the transfer.", created_at: new Date("2023-10-26T17:37:59Z"), completed: true },
            { id: 115, sprint_id: 66, title: "planning", description: "The team asked for a change and the transfer was resolved. The document was confirmed following a repeat review. The team confirmed the details and the transfer was confirmed.", created_at: new Date("2023-05-23T12:55:06Z"), completed: true },
            { id: 116, sprint_id: 33, title: "integration research testing", description: "The payment was completed following an urgent review. A duplicate booking was approved the same day. The transfer was approved after a late check. Flagged as repeat. Support escalated the shipment.", created_at: new Date("2023-08-07T08:29:18Z"), completed: true },
            { id: 117, sprint_id: 50, title: "integration", description: "Flagged as unusual. An operator refunded the transfer. No response from support, so the invoice was reopened.", created_at: new Date("2023-06-05T09:21:50Z"), completed: false },
            { id: 118, sprint_id: 49, title: "integration design", description: "The refund was delayed — unusual case, no further action. The invoice was refunded — manual case, no further action. A repeat follow-up: the appointment was delayed. The courier asked for a change and the shipment was reopened.", created_at: new Date("2023-09-05T07:51:00Z"), completed: false },
            { id: 119, sprint_id: 51, title: "iteration development", description: "An unusual booking was resolved the same day. The delivery was cancelled following an automatic review.", created_at: new Date("2023-09-15T10:48:13Z"), completed: true },
            { id: 120, sprint_id: 40, title: "optimization documentation", description: "The booking was delayed following a partial review. An automatic document was reviewed the same day. Flagged as manual. An operator updated the booking. The reviewer reported a duplicate issue; the transfer was cancelled.", created_at: new Date("2023-02-15T13:27:14Z"), completed: true },
            { id: 121, sprint_id: 77, title: "refinement integration analysis", description: "An urgent follow-up: the ticket was reviewed. A repeat follow-up: the account was rejected.", created_at: new Date("2023-11-12T09:33:23Z"), completed: true },
            { id: 122, sprint_id: 82, title: "documentation", description: "No response from the courier, so the record was closed. Flagged as partial. The account owner rescheduled the ticket. The transfer was rescheduled — manual case, no further action.", created_at: new Date("2023-09-13T10:13:38Z"), completed: true },
            { id: 123, sprint_id: 96, title: "planning", description: null, created_at: new Date("2023-11-03T12:26:48Z"), completed: true },
            { id: 124, sprint_id: 77, title: "planning analysis", description: "The account was replaced after a partial check. No response from support, so the delivery was escalated. An automatic document was resolved the same day.", created_at: new Date("2023-07-22T12:48:18Z"), completed: true },
            { id: 125, sprint_id: 3, title: "optimization review", description: "Support asked for a change and the ticket was cancelled. The session was delayed after a manual check.", created_at: new Date("2023-10-15T09:56:03Z"), completed: true },
            { id: 126, sprint_id: 50, title: "iteration analysis", description: "The reviewer confirmed the details and the request was rescheduled. The order was approved after a manual check.", created_at: new Date("2023-12-01T10:38:54Z"), completed: true },
            { id: 127, sprint_id: 80, title: "research optimization development", description: "The customer reported a routine issue; the session was rescheduled. An operator confirmed the details and the appointment was approved.", created_at: new Date("2023-03-06T08:14:27Z"), completed: true },
            { id: 128, sprint_id: 19, title: "planning evaluation presentation", description: "The appointment was updated following an automatic review. The reviewer confirmed the details and the session was completed. No response from the reviewer, so the claim was reopened. A partial follow-up: the session was completed.", created_at: new Date("2023-09-06T12:24:48Z"), completed: true },
            { id: 129, sprint_id: 7, title: "feedback configuration", description: "The account was refunded — minor case, no further action. No response from the supplier, so the report was reopened. The session was refunded after a manual check.", created_at: new Date("2023-09-16T13:12:21Z"), completed: true },
            { id: 130, sprint_id: 23, title: "research deployment refinement", description: "An operator asked for a change and the delivery was replaced. An urgent follow-up: the document was replaced. An automatic ticket was refunded the same day.", created_at: new Date("2023-07-27T13:44:27Z"), completed: true },
            { id: 131, sprint_id: 95, title: "iteration feedback debugging", description: "An unusual follow-up: the document was rescheduled. The account owner reported a repeat issue; the transfer was processed.", created_at: new Date("2023-02-07T13:26:39Z"), completed: true },
            { id: 132, sprint_id: 91, title: "iteration", description: "A duplicate follow-up: the record was delayed. A standard record was completed the same day.", created_at: new Date("2023-04-04T10:18:16Z"), completed: false },
            { id: 133, sprint_id: 2, title: "integration research sprint", description: null, created_at: new Date("2023-10-12T10:34:54Z"), completed: false },
            { id: 134, sprint_id: 94, title: "research testing sprint", description: "The customer reported a minor issue; the order was reopened. An urgent follow-up: the delivery was closed. Flagged as manual. An operator confirmed the ticket. The customer asked for a change and the report was refunded.", created_at: new Date("2023-03-11T15:55:33Z"), completed: false },
            { id: 135, sprint_id: 57, title: "configuration deployment", description: "The session was rescheduled following a routine review. The document was cancelled after a duplicate check. The booking was delayed — manual case, no further action. The customer reported a duplicate issue; the order was rejected.", created_at: new Date("2023-05-21T15:38:28Z"), completed: true },
            { id: 136, sprint_id: 90, title: "deployment", description: "No response from the customer, so the session was completed. The claim was resolved — duplicate case, no further action. The delivery was confirmed following a routine review. The account owner confirmed the details and the appointment was reopened.", created_at: new Date("2023-04-26T11:27:40Z"), completed: true },
            { id: 137, sprint_id: 50, title: "testing deployment feedback", description: null, created_at: new Date("2023-08-11T15:12:47Z"), completed: true },
            { id: 138, sprint_id: 6, title: "presentation", description: "An urgent record was completed the same day. An incomplete follow-up: the appointment was refunded.", created_at: new Date("2023-01-16T16:08:01Z"), completed: false },
            { id: 139, sprint_id: 66, title: "research", description: "The account owner confirmed the details and the session was rejected. A routine delivery was escalated the same day. The courier asked for a change and the session was rescheduled.", created_at: new Date("2023-11-04T15:49:55Z"), completed: true },
            { id: 140, sprint_id: 16, title: "design testing", description: "The document was replaced after a duplicate check. The reviewer confirmed the details and the document was confirmed. Flagged as automatic. The supplier approved the account. Support asked for a change and the order was confirmed.", created_at: new Date("2023-05-11T09:11:01Z"), completed: false },
            { id: 141, sprint_id: 74, title: "integration", description: "The team asked for a change and the session was escalated. An operator reported an automatic issue; the session was updated.", created_at: new Date("2023-03-12T09:32:14Z"), completed: true },
            { id: 142, sprint_id: 66, title: "debugging", description: "An operator asked for a change and the invoice was replaced. No response from the account owner, so the request was cancelled. The session was delayed following an automatic review. No response from the reviewer, so the claim was reopened.", created_at: new Date("2023-03-25T10:01:08Z"), completed: true },
            { id: 143, sprint_id: 7, title: "documentation", description: "The invoice was refunded — standard case, no further action. A minor follow-up: the transfer was resolved. The reviewer reported a routine issue; the transfer was processed.", created_at: new Date("2023-12-18T09:19:12Z"), completed: true },
            { id: 144, sprint_id: 45, title: "review planning evaluation", description: "The reviewer reported a manual issue; the invoice was reopened. Flagged as manual. The account owner escalated the claim.", created_at: new Date("2023-08-23T09:57:12Z"), completed: false },
            { id: 145, sprint_id: 49, title: "testing", description: "A minor claim was escalated the same day. Flagged as late. The courier reviewed the item. No response from the team, so the record was approved.", created_at: new Date("2023-12-20T08:40:53Z"), completed: true },
            { id: 146, sprint_id: 16, title: "planning testing design", description: "The reviewer asked for a change and the transfer was resolved. The appointment was reopened — manual case, no further action.", created_at: new Date("2023-05-17T16:52:57Z"), completed: true },
            { id: 147, sprint_id: 61, title: "sprint optimization", description: "The delivery was rescheduled — urgent case, no further action. Support reported a repeat issue; the session was delayed.", created_at: new Date("2023-05-26T12:04:50Z"), completed: true },
            { id: 148, sprint_id: 13, title: "feedback integration", description: "The account owner asked for a change and the payment was approved. Flagged as incomplete. The team reviewed the record. A late follow-up: the booking was rejected. No response from the customer, so the refund was delayed.", created_at: new Date("2023-07-06T06:46:35Z"), completed: true },
            { id: 149, sprint_id: 71, title: "debugging integration evaluation", description: "No response from the courier, so the refund was processed. A repeat follow-up: the booking was confirmed.", created_at: new Date("2023-11-06T13:53:26Z"), completed: true },
            { id: 150, sprint_id: 53, title: "optimization evaluation feedback", description: "A standard document was replaced the same day. Flagged as urgent. The courier reviewed the report. No response from the reviewer, so the account was closed. An operator asked for a change and the document was escalated.", created_at: new Date("2023-10-27T13:21:29Z"), completed: true },
            { id: 151, sprint_id: 40, title: "documentation deployment debugging", description: "The supplier reported a minor issue; the delivery was closed. No response from the reviewer, so the request was reviewed. Flagged as automatic. The courier resolved the record.", created_at: new Date("2023-12-16T17:06:39Z"), completed: true },
            { id: 152, sprint_id: 43, title: "review", description: "A standard follow-up: the refund was cancelled. The record was reviewed — manual case, no further action. Flagged as manual. The account owner processed the report. The booking was processed following an unusual review.", created_at: new Date("2023-02-24T16:52:00Z"), completed: true },
            { id: 153, sprint_id: 75, title: "optimization setup", description: "An urgent follow-up: the request was rejected. The supplier confirmed the details and the document was rejected.", created_at: new Date("2023-09-23T11:32:41Z"), completed: false },
            { id: 154, sprint_id: 14, title: "debugging launch", description: "No response from the courier, so the request was refunded. A routine document was refunded the same day. The payment was rescheduled after a repeat check. A duplicate transfer was resolved the same day.", created_at: new Date("2023-07-09T12:41:23Z"), completed: false },
            { id: 155, sprint_id: 1, title: "evaluation optimization sprint", description: "The courier asked for a change and the ticket was replaced. The account owner reported a routine issue; the session was resolved. The request was delayed after a standard check.", created_at: new Date("2023-12-22T21:41:17Z"), completed: false },
            { id: 156, sprint_id: 19, title: "setup sprint refinement", description: "An incomplete follow-up: the refund was escalated. The invoice was delayed — routine case, no further action. Flagged as minor. The reviewer escalated the invoice.", created_at: new Date("2023-06-19T12:50:48Z"), completed: true },
            { id: 157, sprint_id: 10, title: "launch", description: "The courier reported a routine issue; the booking was replaced. The session was delayed — incomplete case, no further action. A minor follow-up: the document was escalated.", created_at: new Date("2023-06-10T14:33:46Z"), completed: true },
            { id: 158, sprint_id: 27, title: "development", description: "Flagged as incomplete. The reviewer processed the account. The supplier confirmed the details and the booking was completed.", created_at: new Date("2023-08-29T10:12:54Z"), completed: true },
            { id: 159, sprint_id: 69, title: "deployment setup evaluation", description: "A minor follow-up: the record was refunded. The booking was processed after a late check.", created_at: new Date("2023-02-22T14:17:39Z"), completed: true },
            { id: 160, sprint_id: 39, title: "analysis presentation", description: "The item was closed — standard case, no further action. The booking was approved after an urgent check. A late delivery was reviewed the same day.", created_at: new Date("2023-07-23T10:42:50Z"), completed: true },
            { id: 161, sprint_id: 77, title: "design", description: "A minor follow-up: the item was closed. Flagged as duplicate. The supplier processed the ticket. No response from the courier, so the ticket was delayed.", created_at: new Date("2023-11-26T12:20:21Z"), completed: true },
            { id: 162, sprint_id: 42, title: "deployment launch", description: "The transfer was updated — duplicate case, no further action. An unusual follow-up: the record was resolved. Flagged as automatic. An operator reviewed the order. The delivery was refunded after a late check.", created_at: new Date("2023-04-18T22:02:43Z"), completed: false },
            { id: 163, sprint_id: 5, title: "optimization development documentation", description: "The record was delayed — standard case, no further action. A duplicate follow-up: the shipment was rejected. A repeat follow-up: the payment was resolved. The account owner reported an incomplete issue; the record was refunded.", created_at: new Date("2023-03-31T14:49:42Z"), completed: true },
            { id: 164, sprint_id: 21, title: "setup launch presentation", description: "The customer confirmed the details and the transfer was approved. The shipment was cancelled following a manual review.", created_at: new Date("2023-07-24T11:43:21Z"), completed: true },
            { id: 165, sprint_id: 40, title: "research documentation evaluation", description: "Support confirmed the details and the order was rejected. The refund was confirmed — automatic case, no further action. The delivery was rejected — repeat case, no further action.", created_at: new Date("2023-03-09T13:19:40Z"), completed: true },
            { id: 166, sprint_id: 79, title: "evaluation", description: "A minor session was delayed the same day. The account was resolved following a repeat review. Flagged as standard. The supplier updated the transfer.", created_at: new Date("2023-02-27T14:08:30Z"), completed: false },
            { id: 167, sprint_id: 93, title: "integration refinement", description: "The account owner confirmed the details and the order was closed. The account was replaced following a minor review.", created_at: new Date("2023-05-17T13:53:48Z"), completed: true },
            { id: 168, sprint_id: 85, title: "testing launch", description: "The reviewer reported an automatic issue; the record was rescheduled. Support confirmed the details and the item was completed.", created_at: new Date("2023-03-19T05:16:30Z"), completed: true },
            { id: 169, sprint_id: 83, title: "refinement analysis", description: "No response from the account owner, so the transfer was escalated. Flagged as routine. The customer rescheduled the claim.", created_at: new Date("2023-08-03T11:52:42Z"), completed: true },
            { id: 170, sprint_id: 31, title: "deployment", description: "No response from an operator, so the order was processed. An unusual follow-up: the request was rejected.", created_at: new Date("2023-08-19T12:39:36Z"), completed: true },
            { id: 171, sprint_id: 84, title: "optimization", description: "No response from the supplier, so the transfer was reviewed. The invoice was escalated following an automatic review.", created_at: new Date("2023-05-05T09:01:21Z"), completed: true },
            { id: 172, sprint_id: 28, title: "sprint launch evaluation", description: "The session was reopened after a manual check. The ticket was rejected following a minor review.", created_at: new Date("2023-01-06T07:24:29Z"), completed: true },
            { id: 173, sprint_id: 41, title: "development planning research", description: "The courier confirmed the details and the booking was reviewed. The claim was delayed after a late check. A late follow-up: the transfer was cancelled.", created_at: new Date("2023-05-05T14:07:03Z"), completed: true },
            { id: 174, sprint_id: 1, title: "configuration refinement research", description: "The item was replaced — routine case, no further action. A duplicate follow-up: the claim was processed. A partial follow-up: the session was approved. Support asked for a change and the document was reopened.", created_at: new Date("2023-08-14T15:22:01Z"), completed: false },
            { id: 175, sprint_id: 17, title: "feedback", description: "The account owner asked for a change and the order was processed. An operator reported a routine issue; the shipment was confirmed. The delivery was completed after an automatic check. No response from the team, so the request was resolved.", created_at: new Date("2023-07-16T11:31:10Z"), completed: false },
            { id: 176, sprint_id: 90, title: "review launch analysis", description: "No response from the reviewer, so the document was updated. Support asked for a change and the record was processed.", created_at: new Date("2023-08-26T19:32:37Z"), completed: true },
            { id: 177, sprint_id: 92, title: "feedback configuration", description: "Flagged as routine. The reviewer cancelled the report. The record was resolved following a standard review. The account owner reported a standard issue; the session was updated.", created_at: new Date("2023-09-25T18:10:48Z"), completed: true },
            { id: 178, sprint_id: 98, title: "refinement", description: "A manual transfer was rescheduled the same day. The appointment was resolved after a repeat check. The item was refunded after a manual check. No response from an operator, so the claim was replaced.", created_at: new Date("2023-03-14T10:01:04Z"), completed: false },
            { id: 179, sprint_id: 92, title: "integration sprint iteration", description: "A standard follow-up: the refund was rejected. Flagged as repeat. The courier resolved the transfer. A partial follow-up: the transfer was reopened.", created_at: new Date("2023-06-21T07:35:47Z"), completed: true },
            { id: 180, sprint_id: 36, title: "research", description: "Flagged as duplicate. The courier processed the item. Flagged as unusual. The courier processed the claim. The team reported a duplicate issue; the session was confirmed. Flagged as automatic. The reviewer closed the refund.", created_at: new Date("2023-07-27T20:33:13Z"), completed: false },
            { id: 181, sprint_id: 67, title: "integration development setup", description: "No response from the supplier, so the session was refunded. The shipment was cancelled after a partial check. The report was updated — automatic case, no further action.", created_at: new Date("2023-01-22T17:44:25Z"), completed: true },
            { id: 182, sprint_id: 93, title: "testing development setup", description: "The claim was resolved following a late review. The team confirmed the details and the report was approved. The team asked for a change and the delivery was escalated. The customer confirmed the details and the invoice was rejected.", created_at: new Date("2023-11-27T18:20:51Z"), completed: true },
            { id: 183, sprint_id: 63, title: "review testing configuration", description: "The customer confirmed the details and the account was updated. The payment was rejected after an unusual check. No response from the account owner, so the appointment was reopened. No response from an operator, so the report was updated.", created_at: new Date("2023-05-20T13:04:11Z"), completed: true },
            { id: 184, sprint_id: 59, title: "presentation research setup", description: "The appointment was confirmed following a partial review. The request was reviewed following an incomplete review.", created_at: new Date("2023-01-28T15:42:48Z"), completed: true },
            { id: 185, sprint_id: 25, title: "debugging feedback review", description: "No response from an operator, so the refund was delayed. No response from an operator, so the account was escalated. A routine follow-up: the claim was replaced.", created_at: new Date("2023-10-25T13:45:48Z"), completed: true },
            { id: 186, sprint_id: 95, title: "planning", description: "The record was resolved after an automatic check. The team reported a manual issue; the claim was rejected.", created_at: new Date("2023-09-17T13:25:24Z"), completed: true },
            { id: 187, sprint_id: 92, title: "testing feedback", description: "The supplier reported an automatic issue; the record was resolved. The account owner confirmed the details and the appointment was resolved. The claim was reopened — minor case, no further action.", created_at: new Date("2023-11-18T16:29:03Z"), completed: true },
            { id: 188, sprint_id: 1, title: "feedback", description: "The invoice was closed — urgent case, no further action. The invoice was refunded after a routine check. A repeat follow-up: the booking was completed.", created_at: new Date("2023-05-26T16:42:24Z"), completed: false },
            { id: 189, sprint_id: 82, title: "optimization", description: "Flagged as automatic. The team approved the order. An incomplete session was resolved the same day. The supplier asked for a change and the claim was updated.", created_at: new Date("2023-07-27T11:20:57Z"), completed: true },
            { id: 190, sprint_id: 100, title: "setup review iteration", description: "The delivery was confirmed after a partial check. The shipment was cancelled after a routine check. No response from support, so the request was processed. An incomplete invoice was reopened the same day.", created_at: new Date("2023-11-25T13:45:17Z"), completed: true },
            { id: 191, sprint_id: 58, title: "development", description: "The delivery was reviewed following a routine review. An incomplete follow-up: the request was closed. A minor ticket was reopened the same day.", created_at: new Date("2023-06-19T15:55:24Z"), completed: false },
            { id: 192, sprint_id: 97, title: "setup presentation", description: "A partial follow-up: the account was completed. An unusual appointment was reopened the same day. Flagged as partial. The team reviewed the request.", created_at: new Date("2023-06-26T16:10:56Z"), completed: false },
            { id: 193, sprint_id: 1, title: "design iteration", description: "The customer asked for a change and the request was resolved. The transfer was resolved after a standard check. The account owner asked for a change and the claim was rescheduled.", created_at: new Date("2023-03-05T10:08:22Z"), completed: true },
            { id: 194, sprint_id: 79, title: "configuration presentation", description: "A duplicate ticket was resolved the same day. The team confirmed the details and the shipment was confirmed. The delivery was processed — automatic case, no further action. A partial delivery was rejected the same day.", created_at: new Date("2023-08-13T14:10:23Z"), completed: true },
            { id: 195, sprint_id: 81, title: "documentation sprint iteration", description: "The customer reported a partial issue; the ticket was reopened. No response from an operator, so the ticket was rescheduled. An operator asked for a change and the refund was approved.", created_at: new Date("2023-09-07T13:26:59Z"), completed: false },
            { id: 196, sprint_id: 43, title: "review", description: "No response from the courier, so the request was refunded. The team confirmed the details and the appointment was refunded.", created_at: new Date("2023-11-08T13:40:25Z"), completed: true },
            { id: 197, sprint_id: 59, title: "configuration optimization design", description: "An automatic appointment was closed the same day. Flagged as manual. The reviewer processed the transfer. Support asked for a change and the record was reopened.", created_at: new Date("2023-04-15T15:45:51Z"), completed: true },
            { id: 198, sprint_id: 72, title: "deployment", description: "The supplier asked for a change and the record was approved. No response from the customer, so the shipment was completed.", created_at: new Date("2023-10-02T12:47:32Z"), completed: false },
            { id: 199, sprint_id: 45, title: "optimization", description: "The session was updated after a duplicate check. An unusual transfer was reviewed the same day. Flagged as routine. The account owner updated the request. The transfer was updated — routine case, no further action.", created_at: new Date("2023-08-30T09:31:30Z"), completed: true },
            { id: 200, sprint_id: 7, title: "testing", description: null, created_at: new Date("2023-02-03T10:47:49Z"), completed: true },
            { id: 201, sprint_id: 60, title: "refinement sprint", description: "The report was approved after a routine check. No response from the account owner, so the refund was cancelled. No response from the supplier, so the claim was approved. The courier asked for a change and the request was updated.", created_at: new Date("2023-07-20T14:32:56Z"), completed: true },
            { id: 202, sprint_id: 11, title: "design configuration", description: "The booking was escalated — incomplete case, no further action. The reviewer reported a repeat issue; the claim was confirmed.", created_at: new Date("2023-01-30T10:05:07Z"), completed: false },
            { id: 203, sprint_id: 29, title: "deployment", description: "No response from the account owner, so the appointment was updated. The ticket was rescheduled after a repeat check. The delivery was delayed after a manual check. A late report was rejected the same day.", created_at: new Date("2023-12-21T18:04:09Z"), completed: true },
            { id: 204, sprint_id: 100, title: "refinement", description: "Flagged as partial. The supplier replaced the refund. A duplicate follow-up: the order was approved. The team reported a partial issue; the account was approved.", created_at: new Date("2023-05-20T09:10:52Z"), completed: true },
            { id: 205, sprint_id: 93, title: "debugging analysis research", description: "The document was resolved following a manual review. A standard session was resolved the same day. Flagged as late. The customer updated the account. The delivery was updated — routine case, no further action.", created_at: new Date("2023-08-03T09:11:06Z"), completed: true },
            { id: 206, sprint_id: 98, title: "sprint documentation presentation", description: "A duplicate follow-up: the order was updated. The record was reopened after an incomplete check.", created_at: new Date("2023-04-10T18:11:19Z"), completed: false },
            { id: 207, sprint_id: 20, title: "iteration refinement evaluation", description: "Support asked for a change and the shipment was rescheduled. The courier asked for a change and the refund was replaced. No response from the customer, so the session was refunded.", created_at: new Date("2023-12-17T13:42:02Z"), completed: false },
            { id: 208, sprint_id: 34, title: "presentation sprint review", description: "The customer asked for a change and the delivery was escalated. The report was approved — repeat case, no further action. Support confirmed the details and the claim was approved.", created_at: new Date("2023-05-10T10:13:22Z"), completed: false },
            { id: 209, sprint_id: 47, title: "evaluation development", description: "No response from support, so the invoice was refunded. The booking was cancelled — repeat case, no further action. The report was escalated following an automatic review.", created_at: new Date("2023-01-20T00:06:38Z"), completed: true },
            { id: 210, sprint_id: 27, title: "integration", description: null, created_at: new Date("2023-11-29T17:27:45Z"), completed: false },
            { id: 211, sprint_id: 21, title: "development documentation", description: "The customer confirmed the details and the refund was rejected. The refund was resolved after a routine check. The account owner confirmed the details and the refund was replaced.", created_at: new Date("2023-11-29T12:54:36Z"), completed: true },
            { id: 212, sprint_id: 26, title: "setup review research", description: "No response from support, so the delivery was refunded. Flagged as incomplete. Support completed the invoice.", created_at: new Date("2023-11-01T18:02:53Z"), completed: false },
            { id: 213, sprint_id: 9, title: "testing presentation", description: null, created_at: new Date("2023-03-12T09:49:12Z"), completed: true },
            { id: 214, sprint_id: 91, title: "review iteration sprint", description: null, created_at: new Date("2023-05-31T08:55:29Z"), completed: true },
            { id: 215, sprint_id: 42, title: "analysis iteration sprint", description: "The ticket was cancelled — partial case, no further action. The refund was cancelled after a late check. Flagged as standard. The account owner closed the appointment.", created_at: new Date("2023-05-27T15:36:24Z"), completed: true },
            { id: 216, sprint_id: 46, title: "review", description: "An operator confirmed the details and the transfer was approved. The payment was delayed after an automatic check.", created_at: new Date("2023-09-12T14:35:55Z"), completed: true },
            { id: 217, sprint_id: 49, title: "integration planning debugging", description: "The payment was processed — urgent case, no further action. Flagged as repeat. The reviewer cancelled the account. The transfer was approved after a late check.", created_at: new Date("2023-09-17T15:15:42Z"), completed: false },
            { id: 218, sprint_id: 8, title: "refinement", description: "Flagged as unusual. The courier rescheduled the item. An incomplete document was updated the same day. A repeat follow-up: the request was replaced.", created_at: new Date("2023-09-15T20:41:02Z"), completed: true },
            { id: 219, sprint_id: 58, title: "integration deployment setup", description: null, created_at: new Date("2023-06-06T17:17:05Z"), completed: true },
            { id: 220, sprint_id: 24, title: "deployment sprint", description: "The courier confirmed the details and the record was cancelled. An operator reported a minor issue; the claim was approved. An incomplete follow-up: the report was replaced.", created_at: new Date("2023-11-28T17:35:11Z"), completed: true },
            { id: 221, sprint_id: 24, title: "launch analysis", description: "No response from the supplier, so the account was processed. An operator reported an urgent issue; the ticket was replaced. A standard follow-up: the shipment was resolved.", created_at: new Date("2023-04-29T17:41:22Z"), completed: true },
            { id: 222, sprint_id: 78, title: "feedback", description: "A standard order was reopened the same day. The account was rejected following a duplicate review.", created_at: new Date("2023-02-08T09:47:35Z"), completed: true },
            { id: 223, sprint_id: 100, title: "optimization documentation research", description: "The customer asked for a change and the appointment was completed. A standard record was closed the same day.", created_at: new Date("2023-11-09T03:11:01Z"), completed: false },
            { id: 224, sprint_id: 9, title: "refinement setup", description: null, created_at: new Date("2023-05-07T15:42:02Z"), completed: true },
            { id: 225, sprint_id: 15, title: "sprint debugging planning", description: "An operator confirmed the details and the document was closed. An urgent follow-up: the payment was rejected.", created_at: new Date("2023-07-01T10:51:33Z"), completed: true },
            { id: 226, sprint_id: 32, title: "review", description: "The session was confirmed following a late review. An unusual follow-up: the report was processed. The courier asked for a change and the request was cancelled. Flagged as automatic. The supplier cancelled the shipment.", created_at: new Date("2023-03-14T16:40:50Z"), completed: true },
            { id: 227, sprint_id: 87, title: "feedback", description: "The delivery was refunded after a standard check. The item was completed — standard case, no further action. The reviewer reported a late issue; the ticket was processed. A manual ticket was reopened the same day.", created_at: new Date("2023-04-21T14:19:04Z"), completed: false },
            { id: 228, sprint_id: 89, title: "optimization development", description: "Flagged as duplicate. The account owner updated the appointment. Flagged as standard. The team escalated the shipment. A minor follow-up: the item was resolved. A duplicate follow-up: the payment was reopened.", created_at: new Date("2023-05-19T12:13:45Z"), completed: true },
            { id: 229, sprint_id: 31, title: "configuration design launch", description: "A routine follow-up: the delivery was updated. The request was reopened — routine case, no further action. The request was updated following a partial review.", created_at: new Date("2023-04-24T16:35:24Z"), completed: true },
            { id: 230, sprint_id: 17, title: "iteration development", description: "An incomplete shipment was delayed the same day. No response from the team, so the refund was replaced. The report was processed — automatic case, no further action. No response from an operator, so the document was replaced.", created_at: new Date("2023-03-13T07:22:53Z"), completed: false },
            { id: 231, sprint_id: 33, title: "development evaluation research", description: "The account owner reported a manual issue; the account was cancelled. Support asked for a change and the refund was delayed.", created_at: new Date("2023-06-29T11:39:38Z"), completed: true },
            { id: 232, sprint_id: 30, title: "planning", description: "Flagged as automatic. Support refunded the request. The request was approved after a standard check. The claim was rescheduled — repeat case, no further action.", created_at: new Date("2023-04-28T17:38:37Z"), completed: true },
            { id: 233, sprint_id: 92, title: "launch", description: "The record was updated after an incomplete check. The order was reviewed following an automatic review. The ticket was approved following a manual review. The request was resolved after a repeat check.", created_at: new Date("2023-02-27T15:25:05Z"), completed: true },
            { id: 234, sprint_id: 34, title: "development", description: "The session was cancelled following a routine review. The supplier asked for a change and the claim was closed. The reviewer reported a partial issue; the booking was resolved.", created_at: new Date("2023-05-15T10:39:06Z"), completed: false },
            { id: 235, sprint_id: 5, title: "planning", description: "No response from the customer, so the order was escalated. A standard follow-up: the delivery was approved. No response from the courier, so the record was reopened.", created_at: new Date("2023-10-18T08:34:16Z"), completed: true },
            { id: 236, sprint_id: 38, title: "configuration presentation integration", description: "The refund was refunded — manual case, no further action. A repeat follow-up: the delivery was updated.", created_at: new Date("2023-01-11T16:44:18Z"), completed: true },
            { id: 237, sprint_id: 36, title: "refinement documentation", description: null, created_at: new Date("2023-03-09T15:49:41Z"), completed: true },
            { id: 238, sprint_id: 11, title: "planning presentation integration", description: null, created_at: new Date("2023-09-04T18:27:12Z"), completed: true },
            { id: 239, sprint_id: 23, title: "development", description: "No response from the team, so the order was closed. An unusual follow-up: the report was approved. The team confirmed the details and the refund was rescheduled.", created_at: new Date("2023-03-31T10:13:14Z"), completed: true },
            { id: 240, sprint_id: 86, title: "review presentation", description: "An urgent follow-up: the item was confirmed. The document was delayed following a manual review. The transfer was escalated after a partial check.", created_at: new Date("2023-06-26T13:12:51Z"), completed: false },
            { id: 241, sprint_id: 25, title: "refinement", description: "An unusual payment was confirmed the same day. The claim was resolved following a duplicate review. The session was closed following an incomplete review. A minor follow-up: the appointment was cancelled.", created_at: new Date("2023-10-07T17:23:18Z"), completed: true },
            { id: 242, sprint_id: 15, title: "debugging", description: "Flagged as routine. The courier escalated the account. The item was reviewed after a partial check.", created_at: new Date("2023-08-23T07:10:45Z"), completed: true },
            { id: 243, sprint_id: 44, title: "documentation development", description: "The account was replaced following a partial review. The courier reported a repeat issue; the record was reviewed. The invoice was updated following a manual review. The account owner reported a standard issue; the report was reviewed.", created_at: new Date("2023-02-26T11:05:51Z"), completed: true },
            { id: 244, sprint_id: 8, title: "configuration debugging", description: null, created_at: new Date("2023-10-19T16:54:29Z"), completed: false },
            { id: 245, sprint_id: 72, title: "integration deployment", description: "Flagged as duplicate. The reviewer reopened the order. The transfer was confirmed after a partial check. The courier asked for a change and the appointment was cancelled. The supplier asked for a change and the booking was reviewed.", created_at: new Date("2023-01-28T17:32:05Z"), completed: true },
            { id: 246, sprint_id: 66, title: "configuration refinement integration", description: "The account owner reported a duplicate issue; the delivery was escalated. The record was escalated following an automatic review. An incomplete follow-up: the shipment was delayed.", created_at: new Date("2023-08-07T05:43:06Z"), completed: true },
            { id: 247, sprint_id: 57, title: "integration", description: "A minor item was approved the same day. A duplicate follow-up: the payment was closed. Flagged as repeat. The account owner reopened the account.", created_at: new Date("2023-08-03T13:42:54Z"), completed: false },
            { id: 248, sprint_id: 4, title: "evaluation", description: "The team asked for a change and the shipment was replaced. A routine follow-up: the order was delayed. The appointment was escalated following a duplicate review. A minor follow-up: the appointment was completed.", created_at: new Date("2023-01-28T10:27:37Z"), completed: true },
            { id: 249, sprint_id: 70, title: "analysis refinement", description: "A duplicate follow-up: the claim was closed. No response from support, so the invoice was rejected.", created_at: new Date("2023-01-28T14:29:56Z"), completed: true },
            { id: 250, sprint_id: 13, title: "documentation testing", description: "Flagged as routine. The team rescheduled the record. The document was delayed — urgent case, no further action. Support asked for a change and the appointment was reopened. A minor follow-up: the report was escalated.", created_at: new Date("2023-11-18T08:53:39Z"), completed: false },
            { id: 251, sprint_id: 15, title: "analysis launch refinement", description: "Flagged as duplicate. The reviewer approved the invoice. No response from the reviewer, so the booking was resolved.", created_at: new Date("2023-09-06T16:41:20Z"), completed: true },
            { id: 252, sprint_id: 38, title: "launch debugging deployment", description: "Flagged as routine. An operator escalated the request. No response from the customer, so the session was rejected.", created_at: new Date("2023-10-08T10:53:23Z"), completed: true },
            { id: 253, sprint_id: 80, title: "refinement", description: "No response from the account owner, so the payment was reviewed. The account owner asked for a change and the item was cancelled.", created_at: new Date("2023-11-29T13:24:52Z"), completed: false },
            { id: 254, sprint_id: 55, title: "review feedback refinement", description: "A repeat transfer was rejected the same day. A partial follow-up: the claim was resolved. The refund was rejected after a partial check.", created_at: new Date("2023-02-04T19:43:12Z"), completed: true },
            { id: 255, sprint_id: 29, title: "iteration", description: "The booking was updated — urgent case, no further action. The delivery was reopened — unusual case, no further action.", created_at: new Date("2023-02-06T15:49:02Z"), completed: true },
            { id: 256, sprint_id: 37, title: "refinement review debugging", description: "An operator asked for a change and the session was closed. The item was refunded after a minor check.", created_at: new Date("2023-08-03T11:35:17Z"), completed: true },
            { id: 257, sprint_id: 89, title: "feedback planning", description: "Flagged as partial. The team replaced the delivery. The appointment was rejected after a minor check. An operator asked for a change and the booking was rejected. Flagged as incomplete. The supplier rejected the booking.", created_at: new Date("2023-09-06T15:38:10Z"), completed: true },
            { id: 258, sprint_id: 25, title: "development optimization", description: "The report was updated — urgent case, no further action. No response from an operator, so the document was resolved. The ticket was rescheduled after an unusual check.", created_at: new Date("2023-06-01T13:10:23Z"), completed: true },
            { id: 259, sprint_id: 33, title: "testing design", description: "The shipment was processed following an unusual review. No response from the customer, so the transfer was reviewed. The session was closed after a duplicate check.", created_at: new Date("2023-11-30T17:56:13Z"), completed: true },
            { id: 260, sprint_id: 49, title: "research configuration", description: "The order was updated — incomplete case, no further action. No response from the supplier, so the item was closed. The delivery was processed after an incomplete check. The appointment was processed after an automatic check.", created_at: new Date("2023-12-20T17:14:39Z"), completed: true },
            { id: 261, sprint_id: 78, title: "optimization feedback testing", description: "The payment was rescheduled following a manual review. The payment was cancelled — duplicate case, no further action. Support asked for a change and the ticket was delayed. The request was confirmed — manual case, no further action.", created_at: new Date("2023-10-25T13:11:22Z"), completed: true },
            { id: 262, sprint_id: 15, title: "presentation", description: "An operator confirmed the details and the account was refunded. An unusual invoice was rescheduled the same day.", created_at: new Date("2023-03-17T19:17:50Z"), completed: true },
            { id: 263, sprint_id: 93, title: "review", description: "The account owner asked for a change and the document was delayed. A manual follow-up: the request was reopened. An unusual ticket was reopened the same day.", created_at: new Date("2023-12-19T12:20:42Z"), completed: true },
            { id: 264, sprint_id: 25, title: "configuration evaluation debugging", description: "No response from the reviewer, so the document was closed. Flagged as manual. The team reopened the transfer. A duplicate booking was reviewed the same day. The item was closed after a partial check.", created_at: new Date("2023-05-11T09:57:23Z"), completed: false },
            { id: 265, sprint_id: 85, title: "review optimization", description: null, created_at: new Date("2023-05-25T16:03:17Z"), completed: false },
            { id: 266, sprint_id: 95, title: "presentation launch development", description: "The supplier confirmed the details and the refund was reopened. The document was reopened after a minor check.", created_at: new Date("2023-01-29T10:03:07Z"), completed: true },
            { id: 267, sprint_id: 89, title: "optimization", description: "The account owner reported a manual issue; the session was completed. The courier confirmed the details and the ticket was processed.", created_at: new Date("2023-11-23T11:20:16Z"), completed: true },
            { id: 268, sprint_id: 3, title: "configuration", description: "Flagged as routine. The reviewer rejected the account. The claim was resolved after a late check.", created_at: new Date("2023-04-27T17:12:43Z"), completed: true },
            { id: 269, sprint_id: 23, title: "debugging launch", description: "Flagged as minor. Support reopened the order. The courier confirmed the details and the delivery was closed. Flagged as routine. The supplier processed the request. The ticket was resolved after an unusual check.", created_at: new Date("2023-04-23T15:34:40Z"), completed: true },
            { id: 270, sprint_id: 74, title: "iteration", description: "An automatic transfer was rescheduled the same day. Flagged as partial. An operator refunded the document.", created_at: new Date("2023-11-09T14:33:52Z"), completed: true },
            { id: 271, sprint_id: 12, title: "research optimization deployment", description: "A manual follow-up: the request was cancelled. Support asked for a change and the ticket was resolved.", created_at: new Date("2023-08-20T11:21:40Z"), completed: false },
            { id: 272, sprint_id: 4, title: "analysis", description: "Flagged as repeat. The team closed the claim. The payment was delayed — routine case, no further action. The record was processed following an automatic review.", created_at: new Date("2023-05-26T18:36:27Z"), completed: true },
            { id: 273, sprint_id: 95, title: "documentation refinement deployment", description: "The account owner reported a standard issue; the claim was resolved. The supplier asked for a change and the refund was delayed.", created_at: new Date("2023-07-11T13:22:52Z"), completed: false },
            { id: 274, sprint_id: 98, title: "launch", description: "An incomplete follow-up: the record was reopened. The booking was rejected following a minor review. No response from support, so the account was updated. The record was rejected following an unusual review.", created_at: new Date("2023-04-21T09:17:14Z"), completed: true },
            { id: 275, sprint_id: 24, title: "feedback", description: "The courier confirmed the details and the claim was rejected. The claim was cancelled following an incomplete review.", created_at: new Date("2023-11-24T20:25:39Z"), completed: true },
            { id: 276, sprint_id: 18, title: "iteration", description: "The ticket was processed after a manual check. The appointment was rejected after a routine check. The reviewer asked for a change and the item was rescheduled.", created_at: new Date("2023-06-16T12:47:29Z"), completed: false },
            { id: 277, sprint_id: 78, title: "sprint analysis debugging", description: "Flagged as duplicate. The courier closed the session. Flagged as partial. An operator processed the claim.", created_at: new Date("2023-03-24T12:10:12Z"), completed: true },
            { id: 278, sprint_id: 22, title: "documentation integration launch", description: null, created_at: new Date("2023-09-03T10:08:08Z"), completed: true },
            { id: 279, sprint_id: 79, title: "research", description: "The request was rescheduled — late case, no further action. A duplicate session was replaced the same day. The booking was escalated — urgent case, no further action. The team confirmed the details and the transfer was replaced.", created_at: new Date("2023-12-10T17:47:41Z"), completed: true },
            { id: 280, sprint_id: 60, title: "evaluation feedback debugging", description: "The session was reopened after an urgent check. Flagged as urgent. The courier rescheduled the shipment.", created_at: new Date("2023-11-15T11:23:50Z"), completed: false },
            { id: 281, sprint_id: 62, title: "research design", description: null, created_at: new Date("2023-02-23T15:26:29Z"), completed: true },
            { id: 282, sprint_id: 67, title: "development sprint iteration", description: "An unusual record was replaced the same day. The payment was approved — late case, no further action.", created_at: new Date("2023-11-23T14:03:45Z"), completed: true },
            { id: 283, sprint_id: 62, title: "optimization", description: "The supplier asked for a change and the record was resolved. The report was reviewed following an urgent review.", created_at: new Date("2023-02-04T03:55:39Z"), completed: true },
            { id: 284, sprint_id: 6, title: "sprint research optimization", description: "The reviewer reported a partial issue; the item was processed. No response from the reviewer, so the item was delayed. The supplier reported a manual issue; the appointment was delayed. Flagged as incomplete. The courier resolved the account.", created_at: new Date("2023-10-23T17:03:46Z"), completed: true },
            { id: 285, sprint_id: 40, title: "sprint", description: null, created_at: new Date("2023-05-23T13:58:51Z"), completed: false },
            { id: 286, sprint_id: 82, title: "launch debugging", description: null, created_at: new Date("2023-08-05T13:41:11Z"), completed: true },
            { id: 287, sprint_id: 87, title: "feedback", description: "Flagged as standard. The courier cancelled the item. The courier reported a standard issue; the order was replaced. The supplier confirmed the details and the claim was approved. Flagged as urgent. An operator escalated the refund.", created_at: new Date("2023-03-13T17:12:24Z"), completed: true },
            { id: 288, sprint_id: 96, title: "evaluation optimization debugging", description: "No response from the reviewer, so the item was escalated. The ticket was closed after an incomplete check. No response from an operator, so the delivery was rescheduled. The reviewer asked for a change and the booking was confirmed.", created_at: new Date("2023-03-10T08:22:06Z"), completed: true },
            { id: 289, sprint_id: 49, title: "presentation evaluation", description: "No response from the team, so the delivery was updated. An urgent follow-up: the document was rejected. Flagged as duplicate. The supplier rejected the document.", created_at: new Date("2023-06-27T10:23:09Z"), completed: true },
            { id: 290, sprint_id: 81, title: "setup refinement planning", description: "The payment was replaced following a partial review. The account was confirmed after an automatic check.", created_at: new Date("2023-07-29T13:45:35Z"), completed: false },
            { id: 291, sprint_id: 91, title: "planning research", description: "Support reported an unusual issue; the session was reopened. An operator reported a standard issue; the order was updated. An urgent follow-up: the refund was escalated. An unusual follow-up: the appointment was approved.", created_at: new Date("2023-05-26T08:04:08Z"), completed: false },
            { id: 292, sprint_id: 99, title: "development", description: "The order was approved — minor case, no further action. The order was approved following a manual review.", created_at: new Date("2023-09-20T13:04:17Z"), completed: false },
            { id: 293, sprint_id: 73, title: "optimization", description: "An operator asked for a change and the delivery was approved. The report was updated after a routine check.", created_at: new Date("2023-10-10T17:37:55Z"), completed: true },
            { id: 294, sprint_id: 94, title: "integration planning", description: "Flagged as minor. The reviewer resolved the document. The report was cancelled — automatic case, no further action. An operator asked for a change and the record was reviewed. An operator confirmed the details and the refund was resolved.", created_at: new Date("2023-12-29T09:20:30Z"), completed: false },
            { id: 295, sprint_id: 44, title: "development", description: "The account owner confirmed the details and the booking was replaced. The appointment was replaced — urgent case, no further action. An operator confirmed the details and the record was cancelled. Flagged as partial. The courier replaced the ticket.", created_at: new Date("2023-10-27T11:43:49Z"), completed: false },
            { id: 296, sprint_id: 47, title: "evaluation testing", description: "The record was rejected following a manual review. The account was confirmed — unusual case, no further action.", created_at: new Date("2023-10-24T09:34:23Z"), completed: true },
            { id: 297, sprint_id: 86, title: "setup iteration presentation", description: "The courier confirmed the details and the booking was updated. The order was replaced following a late review. The team confirmed the details and the report was refunded. No response from the customer, so the order was refunded.", created_at: new Date("2023-01-03T15:19:11Z"), completed: false },
            { id: 298, sprint_id: 43, title: "planning", description: "Flagged as minor. The reviewer reviewed the invoice. Support confirmed the details and the account was refunded. A manual follow-up: the account was rescheduled.", created_at: new Date("2023-06-01T00:41:39Z"), completed: true },
            { id: 299, sprint_id: 73, title: "iteration", description: "Support confirmed the details and the booking was approved. The booking was processed — unusual case, no further action. A repeat ticket was closed the same day.", created_at: new Date("2023-12-16T09:46:35Z"), completed: true },
            { id: 300, sprint_id: 71, title: "design optimization", description: "The courier asked for a change and the document was cancelled. A partial follow-up: the shipment was approved.", created_at: new Date("2023-07-09T12:46:33Z"), completed: false },
        ],
    });
    await prisma.comments.createMany({
        data: [
            { id: 1, task_id: 282, content: "The courier confirmed the details and the claim was escalated. Support asked for a change and the item was rescheduled. No response from an operator, so the invoice was escalated.", created_at: new Date("2023-05-27T19:55:09Z"), likes: 57, edited: false },
            { id: 2, task_id: 247, content: "The account owner reported an urgent issue; the transfer was updated. The transfer was processed following a repeat review. An urgent follow-up: the request was rejected. A late document was delayed the same day.", created_at: new Date("2023-07-21T12:31:18Z"), likes: 45, edited: true },
            { id: 3, task_id: 298, content: "The courier reported an unusual issue; the invoice was confirmed. An operator reported a standard issue; the booking was resolved.", created_at: new Date("2023-04-07T12:03:45Z"), likes: 58, edited: false },
            { id: 4, task_id: 30, content: "The claim was reopened — incomplete case, no further action. An incomplete session was processed the same day.", created_at: new Date("2023-09-18T22:00:58Z"), likes: 56, edited: false },
            { id: 5, task_id: 11, content: "A partial payment was resolved the same day. The order was refunded after a minor check. A late follow-up: the payment was confirmed.", created_at: new Date("2023-01-10T14:02:46Z"), likes: 42, edited: false },
            { id: 6, task_id: 228, content: "The booking was escalated — urgent case, no further action. A minor follow-up: the delivery was updated. The account owner confirmed the details and the session was refunded. No response from an operator, so the session was delayed.", created_at: new Date("2023-08-06T18:07:38Z"), likes: 41, edited: false },
            { id: 7, task_id: 278, content: "The team confirmed the details and the ticket was reviewed. The record was closed — duplicate case, no further action. The team asked for a change and the booking was rescheduled. An urgent follow-up: the invoice was cancelled.", created_at: new Date("2023-07-18T02:55:39Z"), likes: 43, edited: true },
            { id: 8, task_id: 280, content: "An operator confirmed the details and the order was confirmed. A repeat delivery was delayed the same day.", created_at: new Date("2023-08-02T20:53:43Z"), likes: 63, edited: true },
            { id: 9, task_id: 250, content: "The team confirmed the details and the document was updated. A duplicate record was cancelled the same day.", created_at: new Date("2023-09-26T13:42:49Z"), likes: 38, edited: false },
            { id: 10, task_id: 187, content: "The team confirmed the details and the session was escalated. No response from the courier, so the item was refunded. The reviewer reported an unusual issue; the record was cancelled. Support asked for a change and the order was reopened.", created_at: new Date("2023-08-30T12:32:40Z"), likes: 32, edited: false },
            { id: 11, task_id: 2, content: "The delivery was reopened after a late check. Flagged as urgent. The courier cancelled the refund.", created_at: new Date("2023-11-14T16:43:14Z"), likes: 49, edited: false },
            { id: 12, task_id: 237, content: "The team reported an automatic issue; the ticket was processed. No response from the reviewer, so the account was updated. The record was confirmed following a manual review. An automatic account was delayed the same day.", created_at: new Date("2023-06-25T18:32:52Z"), likes: 46, edited: true },
            { id: 13, task_id: 279, content: "Flagged as incomplete. The courier closed the appointment. The customer reported a late issue; the payment was rescheduled. No response from the customer, so the ticket was closed. The invoice was reviewed following an unusual review.", created_at: new Date("2023-02-17T07:44:13Z"), likes: 51, edited: false },
            { id: 14, task_id: 25, content: "The claim was reviewed following a minor review. The courier asked for a change and the request was completed.", created_at: new Date("2023-07-09T19:20:01Z"), likes: 30, edited: true },
            { id: 15, task_id: 39, content: "No response from support, so the order was escalated. The request was closed after an urgent check.", created_at: new Date("2023-06-15T19:28:29Z"), likes: 53, edited: false },
            { id: 16, task_id: 189, content: "The appointment was replaced — routine case, no further action. A duplicate follow-up: the transfer was processed.", created_at: new Date("2023-02-01T09:48:33Z"), likes: 51, edited: true },
            { id: 17, task_id: 58, content: "No response from the reviewer, so the refund was confirmed. The session was cancelled after a partial check. The account owner reported a partial issue; the document was resolved. An operator asked for a change and the appointment was cancelled.", created_at: new Date("2023-12-18T19:55:16Z"), likes: 53, edited: true },
            { id: 18, task_id: 69, content: "Support reported an unusual issue; the shipment was completed. The request was reopened following a duplicate review. No response from the courier, so the item was rescheduled. An operator asked for a change and the transfer was resolved.", created_at: new Date("2023-11-26T18:21:57Z"), likes: 57, edited: false },
            { id: 19, task_id: 156, content: "Flagged as standard. The customer replaced the report. No response from support, so the shipment was replaced. An operator confirmed the details and the shipment was reviewed. An operator asked for a change and the report was completed.", created_at: new Date("2023-03-01T17:43:11Z"), likes: 43, edited: true },
            { id: 20, task_id: 232, content: "The delivery was resolved following a late review. The customer asked for a change and the ticket was processed.", created_at: new Date("2023-09-15T18:15:02Z"), likes: 62, edited: true },
            { id: 21, task_id: 147, content: "The appointment was approved following an automatic review. The courier confirmed the details and the appointment was escalated. The order was reviewed following a partial review.", created_at: new Date("2023-10-29T17:33:46Z"), likes: 40, edited: false },
            { id: 22, task_id: 114, content: "A standard item was escalated the same day. An automatic follow-up: the document was replaced. The claim was cancelled after a standard check.", created_at: new Date("2023-04-27T12:03:38Z"), likes: 30, edited: false },
            { id: 23, task_id: 103, content: "The invoice was approved following a standard review. Support asked for a change and the invoice was processed. An incomplete follow-up: the request was confirmed.", created_at: new Date("2023-07-01T23:42:38Z"), likes: 54, edited: false },
            { id: 24, task_id: 219, content: "Flagged as unusual. The courier processed the booking. The appointment was reopened following a late review. No response from the supplier, so the account was cancelled. The invoice was closed following a late review.", created_at: new Date("2023-03-25T22:07:46Z"), likes: 71, edited: false },
            { id: 25, task_id: 73, content: "The transfer was delayed — unusual case, no further action. Flagged as repeat. The courier reviewed the refund. Support reported an incomplete issue; the transfer was approved. A manual follow-up: the shipment was updated.", created_at: new Date("2023-10-31T18:52:03Z"), likes: 47, edited: true },
            { id: 26, task_id: 143, content: "A repeat item was rescheduled the same day. Flagged as incomplete. The supplier completed the item. A minor item was refunded the same day.", created_at: new Date("2023-11-07T09:43:50Z"), likes: 75, edited: true },
            { id: 27, task_id: 16, content: null, created_at: new Date("2023-11-07T09:49:57Z"), likes: 52, edited: true },
            { id: 28, task_id: 229, content: "No response from the team, so the payment was closed. An incomplete account was refunded the same day. The payment was completed following a late review. A repeat follow-up: the delivery was escalated.", created_at: new Date("2023-03-16T22:54:17Z"), likes: 85, edited: false },
            { id: 29, task_id: 234, content: "No response from the team, so the claim was processed. No response from the supplier, so the payment was replaced.", created_at: new Date("2023-08-02T08:14:47Z"), likes: 35, edited: false },
            { id: 30, task_id: 138, content: "The ticket was cancelled after a partial check. A repeat follow-up: the report was closed. The customer confirmed the details and the invoice was escalated.", created_at: new Date("2023-09-23T11:20:02Z"), likes: 57, edited: false },
            { id: 31, task_id: 24, content: "A routine follow-up: the account was approved. The payment was reviewed following a manual review. The booking was completed following an unusual review. The payment was cancelled after a partial check.", created_at: new Date("2023-01-09T09:12:18Z"), likes: 47, edited: true },
            { id: 32, task_id: 113, content: "The courier reported a standard issue; the document was refunded. An unusual follow-up: the invoice was reopened. Flagged as unusual. The courier updated the refund.", created_at: new Date("2023-08-11T07:00:15Z"), likes: 33, edited: false },
            { id: 33, task_id: 244, content: "A manual follow-up: the payment was rescheduled. An operator reported a repeat issue; the booking was rescheduled. The reviewer confirmed the details and the payment was escalated.", created_at: new Date("2023-06-22T23:03:18Z"), likes: 48, edited: false },
            { id: 34, task_id: 276, content: "The request was resolved after a manual check. The booking was processed — minor case, no further action. The booking was rejected following an automatic review.", created_at: new Date("2023-11-02T19:00:31Z"), likes: 28, edited: true },
            { id: 35, task_id: 123, content: "The request was delayed — unusual case, no further action. A repeat follow-up: the booking was closed. Flagged as routine. The team refunded the refund. No response from the team, so the account was approved.", created_at: new Date("2023-09-12T08:31:46Z"), likes: 73, edited: true },
            { id: 36, task_id: 87, content: "The item was cancelled after a manual check. The payment was cancelled following a duplicate review.", created_at: new Date("2023-06-01T09:25:17Z"), likes: 18, edited: false },
            { id: 37, task_id: 133, content: "Flagged as incomplete. The reviewer approved the document. The session was closed — partial case, no further action.", created_at: new Date("2023-10-19T10:08:29Z"), likes: 65, edited: true },
            { id: 38, task_id: 91, content: "The customer confirmed the details and the appointment was cancelled. The booking was escalated after an automatic check.", created_at: new Date("2023-04-29T21:42:09Z"), likes: 51, edited: true },
            { id: 39, task_id: 28, content: "Support reported an urgent issue; the refund was closed. The reviewer asked for a change and the ticket was reviewed. No response from the team, so the ticket was processed. A routine follow-up: the record was completed.", created_at: new Date("2023-03-29T16:48:18Z"), likes: 69, edited: false },
            { id: 40, task_id: 213, content: "The account owner confirmed the details and the record was escalated. Support confirmed the details and the session was approved.", created_at: new Date("2023-11-22T02:03:45Z"), likes: 44, edited: false },
            { id: 41, task_id: 70, content: "The supplier reported a repeat issue; the item was reopened. No response from an operator, so the report was rejected. No response from the team, so the transfer was reopened.", created_at: new Date("2023-06-17T20:39:05Z"), likes: 48, edited: true },
            { id: 42, task_id: 237, content: "A routine claim was closed the same day. The refund was refunded following an incomplete review. No response from support, so the payment was cancelled. The ticket was resolved following a partial review.", created_at: new Date("2023-07-13T18:55:02Z"), likes: 48, edited: true },
            { id: 43, task_id: 125, content: "No response from the courier, so the booking was approved. No response from the courier, so the ticket was rejected. The account owner asked for a change and the booking was rejected. A standard follow-up: the record was cancelled.", created_at: new Date("2023-12-03T14:29:29Z"), likes: 78, edited: true },
            { id: 44, task_id: 3, content: "The supplier reported an incomplete issue; the claim was delayed. No response from the supplier, so the claim was updated. The item was processed — minor case, no further action. The report was confirmed — partial case, no further action.", created_at: new Date("2023-12-10T09:11:38Z"), likes: 30, edited: true },
            { id: 45, task_id: 78, content: "The delivery was delayed — manual case, no further action. No response from the reviewer, so the delivery was rejected. The courier asked for a change and the shipment was updated. A standard account was escalated the same day.", created_at: new Date("2023-06-04T14:32:22Z"), likes: 39, edited: true },
            { id: 46, task_id: 110, content: "The refund was refunded following a duplicate review. The courier asked for a change and the payment was resolved. The courier confirmed the details and the ticket was delayed.", created_at: new Date("2023-03-10T16:00:27Z"), likes: 35, edited: false },
            { id: 47, task_id: 165, content: "A minor shipment was confirmed the same day. The reviewer confirmed the details and the request was reopened.", created_at: new Date("2023-11-25T18:07:32Z"), likes: 35, edited: true },
            { id: 48, task_id: 255, content: "The account owner asked for a change and the claim was delayed. A minor ticket was reviewed the same day.", created_at: new Date("2023-04-03T14:14:47Z"), likes: 60, edited: false },
            { id: 49, task_id: 98, content: "The shipment was confirmed after a partial check. The document was confirmed following an automatic review. No response from the account owner, so the shipment was refunded.", created_at: new Date("2023-01-27T21:02:09Z"), likes: 67, edited: false },
            { id: 50, task_id: 191, content: "No response from the reviewer, so the shipment was reopened. The document was approved — duplicate case, no further action. A minor document was closed the same day.", created_at: new Date("2023-01-15T17:10:16Z"), likes: 65, edited: true },
            { id: 51, task_id: 137, content: "No response from the supplier, so the claim was cancelled. Flagged as minor. The supplier replaced the account. The shipment was approved following a repeat review. An urgent transfer was reopened the same day.", created_at: new Date("2023-06-27T00:32:12Z"), likes: 39, edited: false },
            { id: 52, task_id: 130, content: null, created_at: new Date("2023-11-17T20:37:28Z"), likes: 51, edited: false },
            { id: 53, task_id: 170, content: "The delivery was replaced — urgent case, no further action. The appointment was updated — manual case, no further action.", created_at: new Date("2023-03-04T20:23:18Z"), likes: 59, edited: false },
            { id: 54, task_id: 95, content: "A late item was updated the same day. Flagged as duplicate. The courier closed the claim.", created_at: new Date("2023-06-23T22:41:14Z"), likes: 29, edited: false },
            { id: 55, task_id: 204, content: "The customer asked for a change and the transfer was confirmed. The item was closed — incomplete case, no further action. Support asked for a change and the claim was reviewed. A routine follow-up: the account was escalated.", created_at: new Date("2023-10-18T15:56:16Z"), likes: 16, edited: true },
            { id: 56, task_id: 134, content: "The delivery was reopened — incomplete case, no further action. The shipment was escalated following a standard review.", created_at: new Date("2023-04-11T19:38:31Z"), likes: 60, edited: false },
            { id: 57, task_id: 105, content: "The invoice was reviewed after a minor check. No response from the supplier, so the record was reopened. The team confirmed the details and the transfer was updated.", created_at: new Date("2023-09-10T08:22:09Z"), likes: 47, edited: false },
            { id: 58, task_id: 268, content: null, created_at: new Date("2023-11-19T17:32:02Z"), likes: 92, edited: false },
            { id: 59, task_id: 117, content: "The team confirmed the details and the session was processed. The customer reported an automatic issue; the request was completed. Support reported an automatic issue; the record was resolved.", created_at: new Date("2023-12-16T12:35:05Z"), likes: 59, edited: false },
            { id: 60, task_id: 193, content: "A routine report was rescheduled the same day. The document was delayed — automatic case, no further action.", created_at: new Date("2023-04-04T14:25:48Z"), likes: 56, edited: true },
            { id: 61, task_id: 259, content: "The report was delayed — unusual case, no further action. The booking was resolved following a routine review. Flagged as duplicate. The reviewer escalated the invoice. The record was escalated — unusual case, no further action.", created_at: new Date("2023-05-13T10:01:31Z"), likes: 23, edited: true },
            { id: 62, task_id: 82, content: "The ticket was rescheduled — late case, no further action. An urgent follow-up: the ticket was reopened. The record was reopened — repeat case, no further action. Flagged as manual. The supplier reviewed the appointment.", created_at: new Date("2023-12-14T11:47:42Z"), likes: 54, edited: false },
            { id: 63, task_id: 99, content: "The booking was reopened — repeat case, no further action. The courier confirmed the details and the report was reopened. The order was delayed — unusual case, no further action. The claim was replaced after an incomplete check.", created_at: new Date("2023-09-10T22:05:21Z"), likes: 33, edited: false },
            { id: 64, task_id: 258, content: "Flagged as duplicate. The account owner escalated the ticket. No response from the courier, so the transfer was approved. Support confirmed the details and the claim was replaced. The courier confirmed the details and the account was escalated.", created_at: new Date("2023-03-23T23:57:30Z"), likes: 47, edited: true },
            { id: 65, task_id: 212, content: "The team reported an urgent issue; the document was reviewed. The record was cancelled following a standard review.", created_at: new Date("2023-09-21T15:13:40Z"), likes: 58, edited: true },
            { id: 66, task_id: 155, content: null, created_at: new Date("2023-04-26T22:32:46Z"), likes: 48, edited: true },
            { id: 67, task_id: 282, content: "The ticket was replaced after an incomplete check. No response from the customer, so the request was processed.", created_at: new Date("2023-07-01T14:45:21Z"), likes: 60, edited: true },
            { id: 68, task_id: 60, content: "The payment was rejected — late case, no further action. The supplier asked for a change and the request was closed. The account owner reported a manual issue; the record was rejected. The transfer was refunded — automatic case, no further action.", created_at: new Date("2023-10-02T07:15:20Z"), likes: 27, edited: false },
            { id: 69, task_id: 243, content: "A manual refund was processed the same day. No response from the team, so the record was completed.", created_at: new Date("2023-02-07T16:25:33Z"), likes: 56, edited: true },
            { id: 70, task_id: 139, content: "The supplier reported a late issue; the payment was closed. The account owner asked for a change and the order was reopened.", created_at: new Date("2023-06-11T11:13:02Z"), likes: 42, edited: true },
            { id: 71, task_id: 290, content: null, created_at: new Date("2023-02-21T22:50:35Z"), likes: 36, edited: false },
            { id: 72, task_id: 35, content: "An operator confirmed the details and the refund was confirmed. The customer confirmed the details and the document was cancelled. The account owner confirmed the details and the refund was approved.", created_at: new Date("2023-07-31T19:00:25Z"), likes: 58, edited: true },
            { id: 73, task_id: 294, content: "The courier confirmed the details and the request was closed. The order was cancelled after a late check. The supplier reported a late issue; the session was rescheduled. The session was processed following a repeat review.", created_at: new Date("2023-12-17T18:43:11Z"), likes: 52, edited: false },
            { id: 74, task_id: 18, content: "An operator reported an incomplete issue; the document was rescheduled. The payment was processed following an unusual review. No response from the customer, so the order was processed.", created_at: new Date("2023-07-18T16:03:16Z"), likes: 56, edited: false },
            { id: 75, task_id: 104, content: "The request was cancelled following a manual review. No response from support, so the request was completed.", created_at: new Date("2023-11-23T22:58:22Z"), likes: 45, edited: true },
            { id: 76, task_id: 283, content: "A duplicate request was escalated the same day. The team confirmed the details and the document was cancelled.", created_at: new Date("2023-07-08T18:32:42Z"), likes: 61, edited: true },
            { id: 77, task_id: 178, content: "The account owner confirmed the details and the delivery was updated. The shipment was reviewed after a duplicate check. Flagged as standard. The customer rejected the delivery.", created_at: new Date("2023-02-01T02:30:26Z"), likes: 70, edited: false },
            { id: 78, task_id: 179, content: "A duplicate report was completed the same day. An operator reported an unusual issue; the claim was refunded. The team reported a routine issue; the document was closed.", created_at: new Date("2023-11-01T12:20:41Z"), likes: 34, edited: false },
            { id: 79, task_id: 197, content: "No response from the customer, so the session was closed. A minor follow-up: the account was processed. The invoice was replaced after a duplicate check.", created_at: new Date("2023-12-25T22:34:34Z"), likes: 74, edited: false },
            { id: 80, task_id: 180, content: "The appointment was refunded — automatic case, no further action. The item was updated following a manual review. The courier reported a late issue; the claim was closed. The account owner asked for a change and the account was reviewed.", created_at: new Date("2023-02-04T14:14:26Z"), likes: 52, edited: true },
            { id: 81, task_id: 97, content: "The supplier reported a routine issue; the payment was processed. The supplier reported a repeat issue; the booking was escalated. The reviewer confirmed the details and the request was reviewed. The courier asked for a change and the report was cancelled.", created_at: new Date("2023-03-02T10:08:19Z"), likes: 61, edited: false },
            { id: 82, task_id: 154, content: "Support asked for a change and the booking was approved. An operator asked for a change and the delivery was resolved. The delivery was reviewed after an unusual check.", created_at: new Date("2023-09-26T17:33:16Z"), likes: 67, edited: false },
            { id: 83, task_id: 18, content: "An automatic account was resolved the same day. The account owner reported an incomplete issue; the claim was closed. The supplier asked for a change and the claim was cancelled. Flagged as automatic. Support replaced the shipment.", created_at: new Date("2023-08-21T11:19:49Z"), likes: 59, edited: false },
            { id: 84, task_id: 250, content: "A late account was completed the same day. Support confirmed the details and the session was confirmed. A late payment was reviewed the same day.", created_at: new Date("2023-01-21T07:15:51Z"), likes: 35, edited: false },
            { id: 85, task_id: 252, content: "The delivery was closed following a minor review. The booking was reopened after an automatic check. Flagged as urgent. Support cancelled the item.", created_at: new Date("2023-07-20T20:32:09Z"), likes: 71, edited: true },
            { id: 86, task_id: 254, content: "No response from the account owner, so the payment was approved. The booking was updated — manual case, no further action. The customer reported a routine issue; the transfer was rescheduled. The supplier asked for a change and the booking was rejected.", created_at: new Date("2023-05-31T20:40:20Z"), likes: 75, edited: true },
            { id: 87, task_id: 237, content: "Flagged as urgent. The supplier confirmed the payment. The customer reported an unusual issue; the payment was closed. The booking was rejected following a routine review. The delivery was reviewed — late case, no further action.", created_at: new Date("2023-05-31T16:41:07Z"), likes: 36, edited: true },
            { id: 88, task_id: 83, content: "No response from the account owner, so the record was delayed. Support asked for a change and the payment was rescheduled.", created_at: new Date("2023-10-08T19:50:57Z"), likes: 76, edited: true },
            { id: 89, task_id: 52, content: "The session was completed after a duplicate check. A standard request was rejected the same day. The account was closed — standard case, no further action.", created_at: new Date("2023-10-21T22:17:14Z"), likes: 42, edited: true },
            { id: 90, task_id: 32, content: "The ticket was resolved — incomplete case, no further action. The account was rescheduled after an incomplete check. The appointment was reviewed after a manual check. The reviewer reported a minor issue; the delivery was resolved.", created_at: new Date("2023-10-01T19:52:04Z"), likes: 44, edited: false },
            { id: 91, task_id: 178, content: "The courier reported an automatic issue; the shipment was closed. Flagged as unusual. The account owner cancelled the document. A minor follow-up: the transfer was cancelled.", created_at: new Date("2023-10-11T11:45:17Z"), likes: 34, edited: true },
            { id: 92, task_id: 26, content: "No response from support, so the claim was escalated. The shipment was rescheduled after an unusual check. The supplier asked for a change and the refund was completed. The account owner reported a routine issue; the payment was rescheduled.", created_at: new Date("2023-05-06T14:13:16Z"), likes: 47, edited: false },
            { id: 93, task_id: 143, content: "Flagged as minor. The supplier completed the record. Flagged as routine. Support processed the booking. The account was rejected — minor case, no further action. The record was rescheduled following an incomplete review.", created_at: new Date("2023-11-26T19:36:27Z"), likes: 54, edited: false },
            { id: 94, task_id: 175, content: "The booking was rescheduled — minor case, no further action. The customer asked for a change and the payment was replaced.", created_at: new Date("2023-10-06T20:46:22Z"), likes: 61, edited: true },
            { id: 95, task_id: 88, content: "An incomplete follow-up: the claim was cancelled. The customer reported a duplicate issue; the transfer was completed. A standard follow-up: the order was closed. The request was updated — minor case, no further action.", created_at: new Date("2023-06-05T14:43:01Z"), likes: 36, edited: false },
            { id: 96, task_id: 221, content: "An incomplete follow-up: the delivery was replaced. An urgent follow-up: the ticket was approved.", created_at: new Date("2023-10-30T08:30:53Z"), likes: 52, edited: false },
            { id: 97, task_id: 230, content: "The claim was escalated after a standard check. The booking was resolved following a manual review.", created_at: new Date("2023-10-05T19:19:13Z"), likes: 66, edited: false },
            { id: 98, task_id: 256, content: null, created_at: new Date("2023-09-07T04:11:21Z"), likes: 48, edited: false },
            { id: 99, task_id: 250, content: "A standard appointment was delayed the same day. The payment was escalated after an incomplete check. The reviewer asked for a change and the transfer was rejected.", created_at: new Date("2023-02-01T11:56:51Z"), likes: 40, edited: false },
            { id: 100, task_id: 110, content: null, created_at: new Date("2023-06-08T10:06:03Z"), likes: 40, edited: false },
            { id: 101, task_id: 290, content: "The supplier confirmed the details and the appointment was delayed. The shipment was updated after an automatic check.", created_at: new Date("2023-07-08T08:57:36Z"), likes: 67, edited: false },
            { id: 102, task_id: 3, content: "A manual payment was escalated the same day. Support confirmed the details and the delivery was closed. An incomplete follow-up: the ticket was reviewed.", created_at: new Date("2023-04-22T11:40:24Z"), likes: 50, edited: false },
            { id: 103, task_id: 81, content: "The record was reviewed after a duplicate check. An incomplete account was closed the same day. A repeat payment was reviewed the same day.", created_at: new Date("2023-02-04T07:52:45Z"), likes: 54, edited: true },
            { id: 104, task_id: 164, content: "An incomplete follow-up: the session was approved. The request was rejected — incomplete case, no further action. An unusual session was updated the same day. The record was completed following a late review.", created_at: new Date("2023-06-08T01:22:01Z"), likes: 20, edited: false },
            { id: 105, task_id: 168, content: "Flagged as routine. Support reopened the ticket. The shipment was approved after a routine check. Flagged as duplicate. Support processed the document.", created_at: new Date("2023-01-08T12:08:50Z"), likes: 70, edited: true },
            { id: 106, task_id: 74, content: "The account was delayed — routine case, no further action. The shipment was rejected following an urgent review. A minor follow-up: the order was closed. Flagged as repeat. An operator updated the item.", created_at: new Date("2023-03-03T20:35:09Z"), likes: 45, edited: true },
            { id: 107, task_id: 226, content: "The courier asked for a change and the ticket was replaced. An incomplete shipment was replaced the same day. The account owner reported an unusual issue; the order was resolved.", created_at: new Date("2023-05-18T12:21:50Z"), likes: 71, edited: true },
            { id: 108, task_id: 287, content: "No response from the reviewer, so the appointment was reopened. No response from the courier, so the report was replaced.", created_at: new Date("2023-05-24T13:42:38Z"), likes: 59, edited: true },
            { id: 109, task_id: 194, content: "No response from the team, so the record was cancelled. The customer confirmed the details and the document was confirmed. The claim was cancelled following an urgent review. The courier confirmed the details and the document was rejected.", created_at: new Date("2023-02-09T16:40:09Z"), likes: 80, edited: false },
            { id: 110, task_id: 287, content: "An unusual follow-up: the delivery was cancelled. Support asked for a change and the appointment was escalated. The record was rejected after a late check.", created_at: new Date("2023-11-01T16:10:17Z"), likes: 33, edited: true },
            { id: 111, task_id: 110, content: "The request was refunded following a partial review. The report was cancelled after a late check. The item was completed following an urgent review. A late follow-up: the refund was updated.", created_at: new Date("2023-06-20T17:00:49Z"), likes: 51, edited: false },
            { id: 112, task_id: 248, content: "The courier asked for a change and the session was reopened. An operator reported a routine issue; the claim was closed. An operator reported a late issue; the booking was resolved.", created_at: new Date("2023-10-05T20:23:15Z"), likes: 40, edited: false },
            { id: 113, task_id: 178, content: null, created_at: new Date("2023-03-16T21:00:53Z"), likes: 42, edited: false },
            { id: 114, task_id: 99, content: "A repeat follow-up: the session was replaced. The report was refunded — minor case, no further action. The record was processed following an incomplete review.", created_at: new Date("2023-12-07T21:19:06Z"), likes: 39, edited: false },
            { id: 115, task_id: 134, content: "A manual item was rescheduled the same day. No response from support, so the shipment was cancelled. Flagged as manual. The supplier reviewed the document. The supplier reported a minor issue; the booking was processed.", created_at: new Date("2023-08-30T21:47:11Z"), likes: 24, edited: true },
            { id: 116, task_id: 263, content: "The courier asked for a change and the report was refunded. The transfer was rescheduled after a routine check.", created_at: new Date("2023-01-29T09:14:57Z"), likes: 59, edited: true },
            { id: 117, task_id: 196, content: "The appointment was completed following an automatic review. Flagged as late. Support rejected the document. Flagged as minor. The account owner refunded the report. Flagged as partial. The supplier cancelled the claim.", created_at: new Date("2023-08-16T12:14:54Z"), likes: 29, edited: true },
            { id: 118, task_id: 99, content: "The reviewer asked for a change and the order was delayed. The reviewer asked for a change and the claim was closed. The order was reopened after an incomplete check.", created_at: new Date("2023-01-29T00:54:01Z"), likes: 69, edited: false },
            { id: 119, task_id: 162, content: "A minor invoice was processed the same day. The invoice was approved following a minor review. The supplier reported a standard issue; the invoice was updated.", created_at: new Date("2023-05-27T15:23:13Z"), likes: 49, edited: true },
            { id: 120, task_id: 179, content: "A partial follow-up: the request was rejected. The customer asked for a change and the delivery was reopened.", created_at: new Date("2023-11-30T15:00:14Z"), likes: 25, edited: false },
            { id: 121, task_id: 197, content: "The customer confirmed the details and the record was resolved. The invoice was confirmed following a minor review.", created_at: new Date("2023-10-15T22:18:42Z"), likes: 66, edited: true },
            { id: 122, task_id: 244, content: "No response from the courier, so the order was rejected. An operator confirmed the details and the invoice was delayed. The item was approved following a repeat review. The claim was closed — duplicate case, no further action.", created_at: new Date("2023-08-16T16:23:04Z"), likes: 27, edited: true },
            { id: 123, task_id: 168, content: "The reviewer asked for a change and the account was cancelled. A repeat appointment was rejected the same day. No response from the supplier, so the document was approved. No response from the customer, so the payment was confirmed.", created_at: new Date("2023-06-01T09:30:37Z"), likes: 67, edited: true },
            { id: 124, task_id: 215, content: "The delivery was rescheduled following a duplicate review. No response from the courier, so the invoice was completed.", created_at: new Date("2023-06-07T23:01:08Z"), likes: 52, edited: false },
            { id: 125, task_id: 239, content: "The team reported a standard issue; the request was replaced. The payment was confirmed following an urgent review. No response from an operator, so the claim was rescheduled. The account was refunded after a routine check.", created_at: new Date("2023-10-08T21:29:09Z"), likes: 54, edited: false },
            { id: 126, task_id: 237, content: "Flagged as urgent. The customer updated the account. The customer asked for a change and the item was replaced. No response from the reviewer, so the record was rejected.", created_at: new Date("2023-11-23T19:21:02Z"), likes: 50, edited: false },
            { id: 127, task_id: 226, content: "The refund was updated — partial case, no further action. The item was replaced following a late review. Flagged as repeat. The supplier rescheduled the item.", created_at: new Date("2023-09-04T14:45:51Z"), likes: 71, edited: false },
            { id: 128, task_id: 132, content: "The item was resolved after an incomplete check. The team reported an urgent issue; the shipment was delayed. The courier reported an incomplete issue; the report was confirmed. The account owner confirmed the details and the claim was reviewed.", created_at: new Date("2023-01-02T15:19:46Z"), likes: 63, edited: true },
            { id: 129, task_id: 187, content: "The claim was completed following an incomplete review. A standard follow-up: the payment was reviewed. An operator confirmed the details and the delivery was resolved.", created_at: new Date("2023-08-21T15:43:32Z"), likes: 49, edited: true },
            { id: 130, task_id: 82, content: "The request was rescheduled following a routine review. The customer asked for a change and the account was delayed.", created_at: new Date("2023-05-30T15:30:15Z"), likes: 72, edited: false },
            { id: 131, task_id: 177, content: "No response from the reviewer, so the booking was confirmed. Flagged as automatic. The supplier completed the ticket. The report was replaced — incomplete case, no further action.", created_at: new Date("2023-11-14T20:53:17Z"), likes: 53, edited: true },
            { id: 132, task_id: 95, content: "An unusual follow-up: the session was approved. The account owner reported an unusual issue; the order was delayed.", created_at: new Date("2023-10-12T17:01:49Z"), likes: 49, edited: true },
            { id: 133, task_id: 197, content: "Flagged as manual. An operator rescheduled the order. An urgent payment was resolved the same day.", created_at: new Date("2023-04-05T08:29:09Z"), likes: 68, edited: true },
            { id: 134, task_id: 67, content: "The customer reported an automatic issue; the report was refunded. The request was delayed after a late check. A repeat follow-up: the report was reviewed. Flagged as automatic. The account owner reopened the payment.", created_at: new Date("2023-06-08T18:44:08Z"), likes: 46, edited: true },
            { id: 135, task_id: 105, content: "No response from the team, so the shipment was replaced. Support reported a partial issue; the report was escalated.", created_at: new Date("2023-01-24T12:04:43Z"), likes: 59, edited: false },
            { id: 136, task_id: 277, content: "A late appointment was rescheduled the same day. A standard follow-up: the item was replaced.", created_at: new Date("2023-09-22T19:45:15Z"), likes: 57, edited: true },
            { id: 137, task_id: 89, content: "Flagged as incomplete. The customer escalated the payment. Support reported an urgent issue; the record was reopened. The reviewer asked for a change and the ticket was completed. No response from the supplier, so the account was refunded.", created_at: new Date("2023-01-03T17:15:56Z"), likes: 34, edited: false },
            { id: 138, task_id: 201, content: "The account owner confirmed the details and the report was confirmed. The delivery was approved — automatic case, no further action. A duplicate document was processed the same day.", created_at: new Date("2023-09-24T17:46:50Z"), likes: 52, edited: true },
            { id: 139, task_id: 243, content: "A minor follow-up: the transfer was approved. No response from the customer, so the shipment was delayed. The booking was confirmed after a partial check.", created_at: new Date("2023-07-01T16:39:34Z"), likes: 46, edited: true },
            { id: 140, task_id: 277, content: "The report was cancelled following an automatic review. The account owner reported a repeat issue; the invoice was closed. The transfer was reviewed — repeat case, no further action.", created_at: new Date("2023-10-10T18:10:15Z"), likes: 28, edited: false },
            { id: 141, task_id: 235, content: "An operator asked for a change and the record was replaced. The supplier confirmed the details and the record was completed.", created_at: new Date("2023-06-24T23:56:27Z"), likes: 72, edited: true },
            { id: 142, task_id: 183, content: "The appointment was reviewed after a partial check. The document was resolved after an incomplete check. An automatic follow-up: the record was reviewed.", created_at: new Date("2023-09-03T11:44:44Z"), likes: 53, edited: false },
            { id: 143, task_id: 128, content: "An incomplete follow-up: the report was refunded. A standard follow-up: the ticket was confirmed. An unusual follow-up: the transfer was refunded.", created_at: new Date("2023-12-20T23:58:47Z"), likes: 28, edited: true },
            { id: 144, task_id: 280, content: "Flagged as minor. The customer processed the order. A partial request was delayed the same day. The transfer was delayed after a routine check. The delivery was escalated after a standard check.", created_at: new Date("2023-07-09T12:31:17Z"), likes: 44, edited: true },
            { id: 145, task_id: 179, content: "The customer confirmed the details and the delivery was delayed. A partial session was rejected the same day.", created_at: new Date("2023-11-25T09:08:52Z"), likes: 35, edited: true },
            { id: 146, task_id: 58, content: null, created_at: new Date("2023-08-11T19:14:25Z"), likes: 45, edited: false },
            { id: 147, task_id: 183, content: "A partial request was refunded the same day. The account owner confirmed the details and the booking was completed.", created_at: new Date("2023-11-27T19:24:21Z"), likes: 61, edited: true },
            { id: 148, task_id: 214, content: "The customer asked for a change and the appointment was updated. The account owner reported a standard issue; the session was refunded.", created_at: new Date("2023-05-06T13:45:09Z"), likes: 75, edited: true },
            { id: 149, task_id: 246, content: "Flagged as automatic. The courier updated the account. The courier asked for a change and the document was cancelled. The ticket was approved — late case, no further action. Flagged as minor. The customer resolved the shipment.", created_at: new Date("2023-03-26T08:44:01Z"), likes: 60, edited: true },
            { id: 150, task_id: 203, content: "The appointment was escalated — routine case, no further action. An incomplete claim was updated the same day. The document was escalated following a standard review. The supplier reported a standard issue; the payment was rejected.", created_at: new Date("2023-03-03T19:59:24Z"), likes: 69, edited: false },
            { id: 151, task_id: 207, content: "The reviewer confirmed the details and the claim was refunded. No response from an operator, so the appointment was cancelled. The customer asked for a change and the order was updated. The shipment was replaced following an unusual review.", created_at: new Date("2023-10-17T17:23:41Z"), likes: 59, edited: true },
            { id: 152, task_id: 122, content: "An incomplete follow-up: the payment was completed. The courier confirmed the details and the booking was escalated. The appointment was updated following a manual review. The courier reported an automatic issue; the appointment was completed.", created_at: new Date("2023-03-22T12:24:40Z"), likes: 48, edited: false },
            { id: 153, task_id: 42, content: "The order was resolved following a repeat review. A manual follow-up: the account was processed. The request was escalated following a late review.", created_at: new Date("2023-01-07T16:32:28Z"), likes: 26, edited: false },
            { id: 154, task_id: 12, content: "Support confirmed the details and the refund was approved. The payment was escalated following an unusual review. No response from the courier, so the transfer was confirmed. The supplier asked for a change and the request was delayed.", created_at: new Date("2023-09-18T09:23:14Z"), likes: 54, edited: false },
            { id: 155, task_id: 239, content: null, created_at: new Date("2023-01-30T11:27:50Z"), likes: 42, edited: true },
            { id: 156, task_id: 26, content: "Flagged as incomplete. An operator confirmed the request. The order was refunded after an urgent check. The record was closed after a routine check. A duplicate follow-up: the shipment was delayed.", created_at: new Date("2023-07-28T17:27:22Z"), likes: 41, edited: true },
            { id: 157, task_id: 159, content: "The invoice was resolved after a routine check. The item was reviewed after a late check. The document was refunded — late case, no further action. No response from the customer, so the request was rescheduled.", created_at: new Date("2023-11-12T07:35:44Z"), likes: 60, edited: false },
            { id: 158, task_id: 274, content: "An incomplete follow-up: the request was cancelled. An incomplete follow-up: the order was processed.", created_at: new Date("2023-06-14T17:01:59Z"), likes: 43, edited: false },
            { id: 159, task_id: 85, content: null, created_at: new Date("2023-09-05T14:57:28Z"), likes: 47, edited: true },
            { id: 160, task_id: 231, content: "The reviewer asked for a change and the claim was rescheduled. No response from the supplier, so the session was replaced. A partial follow-up: the document was escalated.", created_at: new Date("2023-03-30T14:08:12Z"), likes: 47, edited: false },
            { id: 161, task_id: 264, content: "Flagged as duplicate. The team reopened the claim. A duplicate follow-up: the document was updated.", created_at: new Date("2023-03-14T13:55:46Z"), likes: 55, edited: false },
            { id: 162, task_id: 182, content: "The customer confirmed the details and the transfer was updated. The invoice was updated — late case, no further action. A standard follow-up: the record was rescheduled. The refund was cancelled following a late review.", created_at: new Date("2023-06-02T18:34:29Z"), likes: 33, edited: false },
            { id: 163, task_id: 242, content: "The booking was escalated — standard case, no further action. The document was resolved after a manual check.", created_at: new Date("2023-11-29T16:33:15Z"), likes: 64, edited: true },
            { id: 164, task_id: 221, content: null, created_at: new Date("2023-09-29T19:58:57Z"), likes: 41, edited: false },
            { id: 165, task_id: 295, content: "Flagged as unusual. The reviewer reopened the shipment. An urgent order was refunded the same day.", created_at: new Date("2023-09-15T20:08:10Z"), likes: 78, edited: true },
            { id: 166, task_id: 295, content: "The transfer was confirmed — manual case, no further action. The refund was rejected after a manual check.", created_at: new Date("2023-10-03T11:28:28Z"), likes: 71, edited: true },
            { id: 167, task_id: 185, content: "The item was processed after an urgent check. Flagged as late. The supplier rescheduled the session. An incomplete follow-up: the refund was refunded.", created_at: new Date("2023-03-19T12:57:45Z"), likes: 33, edited: false },
            { id: 168, task_id: 136, content: "A manual follow-up: the invoice was resolved. Support asked for a change and the payment was escalated. The account owner asked for a change and the delivery was reviewed.", created_at: new Date("2023-10-01T19:56:57Z"), likes: 50, edited: true },
            { id: 169, task_id: 102, content: "The report was cancelled — automatic case, no further action. The ticket was updated after a partial check. The transfer was reviewed after a routine check.", created_at: new Date("2023-12-14T11:20:19Z"), likes: 67, edited: false },
            { id: 170, task_id: 56, content: "An incomplete shipment was confirmed the same day. The invoice was escalated after a standard check.", created_at: new Date("2023-05-07T20:06:22Z"), likes: 65, edited: true },
            { id: 171, task_id: 151, content: "The courier asked for a change and the record was refunded. The session was resolved after an urgent check. A routine document was replaced the same day. A duplicate claim was processed the same day.", created_at: new Date("2023-02-18T08:45:55Z"), likes: 32, edited: true },
            { id: 172, task_id: 295, content: "A manual follow-up: the report was replaced. The shipment was rejected following an unusual review.", created_at: new Date("2023-09-13T16:00:24Z"), likes: 66, edited: false },
            { id: 173, task_id: 20, content: "A repeat session was updated the same day. No response from support, so the transfer was cancelled. The item was rescheduled following a duplicate review.", created_at: new Date("2023-10-05T00:14:34Z"), likes: 27, edited: true },
            { id: 174, task_id: 248, content: "The shipment was replaced following a repeat review. The appointment was reviewed after a repeat check. The supplier asked for a change and the payment was resolved. Flagged as unusual. The supplier processed the payment.", created_at: new Date("2023-09-06T09:09:30Z"), likes: 93, edited: true },
            { id: 175, task_id: 298, content: "No response from the customer, so the item was rescheduled. The account owner reported a partial issue; the invoice was approved. An automatic request was processed the same day.", created_at: new Date("2023-12-14T17:13:24Z"), likes: 29, edited: true },
            { id: 176, task_id: 119, content: "No response from the supplier, so the document was rescheduled. The supplier confirmed the details and the ticket was rescheduled. A standard shipment was resolved the same day. A duplicate report was rescheduled the same day.", created_at: new Date("2023-07-11T11:21:49Z"), likes: 66, edited: true },
            { id: 177, task_id: 99, content: "A minor booking was delayed the same day. The invoice was updated following a manual review. Support asked for a change and the record was rejected. A repeat claim was reopened the same day.", created_at: new Date("2023-01-22T10:37:53Z"), likes: 67, edited: false },
            { id: 178, task_id: 173, content: "The request was updated after an automatic check. The booking was approved — unusual case, no further action. The shipment was cancelled following an unusual review. The item was confirmed after an urgent check.", created_at: new Date("2023-11-30T16:05:48Z"), likes: 51, edited: false },
            { id: 179, task_id: 292, content: null, created_at: new Date("2023-07-26T12:44:34Z"), likes: 73, edited: false },
            { id: 180, task_id: 156, content: "A manual order was replaced the same day. The booking was processed following a standard review. The customer asked for a change and the shipment was confirmed.", created_at: new Date("2023-01-09T08:20:42Z"), likes: 32, edited: false },
            { id: 181, task_id: 215, content: "A minor document was escalated the same day. The request was resolved following a minor review. A repeat follow-up: the document was processed. An incomplete request was rescheduled the same day.", created_at: new Date("2023-10-12T19:01:18Z"), likes: 35, edited: true },
            { id: 182, task_id: 103, content: "Flagged as incomplete. The customer resolved the appointment. Flagged as standard. An operator delayed the record. The reviewer confirmed the details and the order was reviewed. An unusual refund was confirmed the same day.", created_at: new Date("2023-02-28T16:45:16Z"), likes: 74, edited: false },
            { id: 183, task_id: 277, content: "The courier confirmed the details and the delivery was delayed. No response from the supplier, so the booking was confirmed.", created_at: new Date("2023-03-20T23:20:04Z"), likes: 46, edited: true },
            { id: 184, task_id: 103, content: "The courier confirmed the details and the document was resolved. Support asked for a change and the appointment was rejected. The item was closed following a standard review. The customer confirmed the details and the ticket was delayed.", created_at: new Date("2023-11-29T19:12:22Z"), likes: 51, edited: false },
            { id: 185, task_id: 235, content: "Support asked for a change and the invoice was updated. An operator asked for a change and the refund was replaced. The invoice was delayed after a duplicate check.", created_at: new Date("2023-04-27T14:31:56Z"), likes: 51, edited: true },
            { id: 186, task_id: 26, content: "The team reported a duplicate issue; the document was rescheduled. Support asked for a change and the booking was reopened. The team asked for a change and the account was refunded.", created_at: new Date("2023-03-03T18:07:38Z"), likes: 80, edited: true },
            { id: 187, task_id: 201, content: "The appointment was rejected following a partial review. The booking was reviewed — manual case, no further action. The order was escalated following a late review. An urgent booking was cancelled the same day.", created_at: new Date("2023-12-09T07:32:06Z"), likes: 48, edited: false },
            { id: 188, task_id: 300, content: "The transfer was confirmed — urgent case, no further action. A partial follow-up: the appointment was delayed. The refund was closed — partial case, no further action. A partial refund was rejected the same day.", created_at: new Date("2023-11-09T10:34:16Z"), likes: 48, edited: true },
            { id: 189, task_id: 62, content: "A manual follow-up: the claim was completed. No response from the reviewer, so the appointment was updated.", created_at: new Date("2023-04-05T17:07:34Z"), likes: 54, edited: true },
            { id: 190, task_id: 46, content: "The team reported a late issue; the ticket was replaced. A manual claim was escalated the same day. The customer confirmed the details and the request was updated. An operator confirmed the details and the shipment was cancelled.", created_at: new Date("2023-12-25T11:21:02Z"), likes: 43, edited: true },
            { id: 191, task_id: 58, content: "The appointment was replaced after an unusual check. An operator asked for a change and the booking was updated. The courier asked for a change and the item was completed. Flagged as standard. The courier reopened the claim.", created_at: new Date("2023-08-24T21:02:26Z"), likes: 70, edited: false },
            { id: 192, task_id: 7, content: "The session was cancelled following a standard review. The invoice was rescheduled after a standard check. The refund was reviewed — automatic case, no further action.", created_at: new Date("2023-04-07T19:49:28Z"), likes: 44, edited: true },
            { id: 193, task_id: 293, content: "No response from the supplier, so the payment was rejected. The record was closed following a routine review.", created_at: new Date("2023-01-07T11:05:39Z"), likes: 39, edited: true },
            { id: 194, task_id: 243, content: "A repeat appointment was replaced the same day. Flagged as urgent. The supplier rescheduled the appointment. A repeat follow-up: the delivery was closed.", created_at: new Date("2023-05-02T21:28:57Z"), likes: 60, edited: false },
            { id: 195, task_id: 167, content: "An incomplete follow-up: the shipment was completed. A standard payment was reopened the same day. A repeat follow-up: the booking was processed. The courier asked for a change and the payment was delayed.", created_at: new Date("2023-04-16T19:00:49Z"), likes: 65, edited: false },
            { id: 196, task_id: 163, content: "An operator confirmed the details and the document was escalated. Flagged as routine. Support rescheduled the invoice. Flagged as minor. The courier closed the document. No response from the courier, so the booking was resolved.", created_at: new Date("2023-01-19T18:13:15Z"), likes: 68, edited: false },
            { id: 197, task_id: 38, content: "Flagged as late. The supplier updated the appointment. The delivery was approved following an unusual review.", created_at: new Date("2023-10-27T13:17:58Z"), likes: 23, edited: false },
            { id: 198, task_id: 300, content: "The reviewer confirmed the details and the transfer was closed. The supplier confirmed the details and the booking was replaced. An unusual invoice was delayed the same day.", created_at: new Date("2023-06-16T15:46:23Z"), likes: 52, edited: false },
            { id: 199, task_id: 35, content: "No response from the customer, so the order was resolved. The team reported a late issue; the document was updated.", created_at: new Date("2023-11-01T11:19:25Z"), likes: 62, edited: true },
            { id: 200, task_id: 292, content: "The item was confirmed — urgent case, no further action. The courier reported a minor issue; the shipment was completed. Flagged as repeat. An operator reviewed the refund.", created_at: new Date("2023-01-21T08:08:28Z"), likes: 42, edited: false },
            { id: 201, task_id: 293, content: "No response from the reviewer, so the booking was confirmed. The customer reported an incomplete issue; the request was approved.", created_at: new Date("2023-07-16T09:50:59Z"), likes: 47, edited: true },
            { id: 202, task_id: 141, content: "The appointment was refunded — automatic case, no further action. A manual item was cancelled the same day. The refund was updated after a late check.", created_at: new Date("2023-08-03T10:11:50Z"), likes: 31, edited: true },
            { id: 203, task_id: 258, content: "No response from the customer, so the record was rescheduled. An operator asked for a change and the claim was rejected. The delivery was closed following a manual review.", created_at: new Date("2023-01-16T16:05:42Z"), likes: 57, edited: false },
            { id: 204, task_id: 36, content: "A minor follow-up: the transfer was cancelled. A standard ticket was replaced the same day.", created_at: new Date("2023-06-26T20:34:56Z"), likes: 34, edited: false },
            { id: 205, task_id: 128, content: "The team confirmed the details and the record was reopened. The report was cancelled — minor case, no further action.", created_at: new Date("2023-01-16T10:02:02Z"), likes: 71, edited: false },
            { id: 206, task_id: 14, content: "The ticket was resolved following a duplicate review. An incomplete account was replaced the same day.", created_at: new Date("2023-09-17T06:56:29Z"), likes: 40, edited: true },
            { id: 207, task_id: 49, content: "A standard follow-up: the account was resolved. An operator reported a duplicate issue; the refund was refunded. A routine follow-up: the report was processed.", created_at: new Date("2023-07-30T05:52:58Z"), likes: 66, edited: false },
            { id: 208, task_id: 258, content: null, created_at: new Date("2023-05-11T20:50:43Z"), likes: 49, edited: true },
            { id: 209, task_id: 8, content: "The invoice was processed after a manual check. The item was resolved following a repeat review.", created_at: new Date("2023-09-30T13:21:53Z"), likes: 37, edited: true },
            { id: 210, task_id: 195, content: "The payment was escalated after an automatic check. A late payment was completed the same day. An unusual document was reviewed the same day. A routine invoice was rejected the same day.", created_at: new Date("2023-05-11T13:36:25Z"), likes: 38, edited: false },
            { id: 211, task_id: 179, content: "The transfer was approved — automatic case, no further action. No response from the customer, so the booking was resolved.", created_at: new Date("2023-08-23T22:17:09Z"), likes: 44, edited: true },
            { id: 212, task_id: 5, content: "An unusual booking was closed the same day. The customer asked for a change and the shipment was updated. The appointment was closed following an incomplete review. Flagged as automatic. The customer rescheduled the delivery.", created_at: new Date("2023-09-04T22:54:04Z"), likes: 86, edited: true },
            { id: 213, task_id: 122, content: "The item was delayed — duplicate case, no further action. The courier asked for a change and the document was updated. Support confirmed the details and the item was approved.", created_at: new Date("2023-07-15T14:42:59Z"), likes: 56, edited: false },
            { id: 214, task_id: 151, content: "A partial refund was escalated the same day. The session was resolved after an automatic check.", created_at: new Date("2023-04-21T09:51:57Z"), likes: 53, edited: false },
            { id: 215, task_id: 115, content: "An incomplete follow-up: the payment was closed. A partial follow-up: the ticket was rejected.", created_at: new Date("2023-11-29T19:15:19Z"), likes: 58, edited: true },
            { id: 216, task_id: 247, content: "The request was reopened after a minor check. An automatic follow-up: the item was closed.", created_at: new Date("2023-10-13T08:29:05Z"), likes: 45, edited: false },
            { id: 217, task_id: 299, content: "No response from support, so the report was processed. A partial follow-up: the shipment was confirmed. The refund was cancelled after an incomplete check.", created_at: new Date("2023-09-11T13:02:07Z"), likes: 63, edited: true },
            { id: 218, task_id: 159, content: "The customer asked for a change and the ticket was escalated. The document was refunded following a standard review.", created_at: new Date("2023-03-04T13:30:35Z"), likes: 39, edited: true },
            { id: 219, task_id: 220, content: "The team asked for a change and the claim was delayed. The customer confirmed the details and the appointment was delayed. The transfer was delayed — standard case, no further action.", created_at: new Date("2023-07-23T07:16:40Z"), likes: 31, edited: true },
            { id: 220, task_id: 254, content: "The document was approved after a standard check. The account was reviewed after an incomplete check. Flagged as urgent. The customer confirmed the invoice. The reviewer confirmed the details and the claim was completed.", created_at: new Date("2023-01-16T23:13:16Z"), likes: 52, edited: false },
            { id: 221, task_id: 24, content: "The account owner confirmed the details and the item was reviewed. An unusual appointment was delayed the same day.", created_at: new Date("2023-08-30T14:07:45Z"), likes: 53, edited: false },
            { id: 222, task_id: 112, content: "The supplier confirmed the details and the appointment was completed. The request was confirmed following a minor review. A manual shipment was reopened the same day. An operator asked for a change and the ticket was rescheduled.", created_at: new Date("2023-05-12T17:04:22Z"), likes: 43, edited: false },
            { id: 223, task_id: 202, content: "The delivery was closed after a minor check. A manual request was escalated the same day. The ticket was reviewed after a duplicate check. A minor booking was reopened the same day.", created_at: new Date("2023-03-17T18:35:31Z"), likes: 40, edited: false },
            { id: 224, task_id: 90, content: null, created_at: new Date("2023-04-18T16:03:50Z"), likes: 56, edited: false },
            { id: 225, task_id: 203, content: "Support confirmed the details and the request was rescheduled. Flagged as late. The courier cancelled the request.", created_at: new Date("2023-03-03T17:12:27Z"), likes: 56, edited: true },
            { id: 226, task_id: 137, content: "Flagged as incomplete. The supplier completed the account. A standard follow-up: the report was resolved.", created_at: new Date("2023-05-11T21:39:29Z"), likes: 45, edited: false },
            { id: 227, task_id: 71, content: "The team confirmed the details and the document was completed. The document was closed after a minor check. No response from the supplier, so the refund was reviewed.", created_at: new Date("2023-05-03T21:52:16Z"), likes: 24, edited: false },
            { id: 228, task_id: 102, content: "A manual follow-up: the record was rescheduled. The account owner reported a duplicate issue; the record was confirmed. The account was reopened — late case, no further action.", created_at: new Date("2023-08-08T07:46:31Z"), likes: 54, edited: true },
            { id: 229, task_id: 86, content: "The appointment was reviewed — routine case, no further action. The appointment was rejected — duplicate case, no further action. The ticket was reviewed following an automatic review. The shipment was completed — minor case, no further action.", created_at: new Date("2023-09-20T00:42:05Z"), likes: 42, edited: false },
            { id: 230, task_id: 68, content: null, created_at: new Date("2023-05-04T23:44:15Z"), likes: 48, edited: false },
            { id: 231, task_id: 255, content: "Support asked for a change and the ticket was escalated. The customer reported an unusual issue; the appointment was delayed. The record was completed — duplicate case, no further action.", created_at: new Date("2023-11-17T19:32:48Z"), likes: 31, edited: true },
            { id: 232, task_id: 236, content: "The team confirmed the details and the booking was reviewed. No response from the courier, so the delivery was processed. Support confirmed the details and the ticket was reopened.", created_at: new Date("2023-05-30T14:43:59Z"), likes: 27, edited: true },
            { id: 233, task_id: 159, content: "The supplier confirmed the details and the request was updated. Support reported a duplicate issue; the claim was refunded.", created_at: new Date("2023-04-22T18:49:19Z"), likes: 53, edited: false },
            { id: 234, task_id: 261, content: "The supplier reported a manual issue; the session was confirmed. No response from the supplier, so the account was processed. The refund was processed — automatic case, no further action. The account owner reported a routine issue; the record was closed.", created_at: new Date("2023-06-19T22:46:28Z"), likes: 55, edited: false },
            { id: 235, task_id: 262, content: "A manual follow-up: the order was rescheduled. The invoice was resolved following a manual review.", created_at: new Date("2023-07-23T22:40:27Z"), likes: 60, edited: false },
            { id: 236, task_id: 11, content: "A standard transfer was closed the same day. No response from the account owner, so the ticket was processed. The invoice was completed following an unusual review. The item was completed following a repeat review.", created_at: new Date("2023-03-11T15:50:06Z"), likes: 71, edited: false },
            { id: 237, task_id: 55, content: "An operator reported a duplicate issue; the booking was approved. Support confirmed the details and the transfer was rescheduled.", created_at: new Date("2023-08-16T18:00:26Z"), likes: 68, edited: false },
            { id: 238, task_id: 64, content: "The transfer was rescheduled following a duplicate review. The ticket was confirmed after a minor check. The report was rescheduled following an automatic review.", created_at: new Date("2023-07-02T17:54:28Z"), likes: 51, edited: false },
            { id: 239, task_id: 188, content: "The session was cancelled — automatic case, no further action. An unusual follow-up: the request was replaced.", created_at: new Date("2023-08-19T18:20:04Z"), likes: 65, edited: true },
            { id: 240, task_id: 3, content: "The supplier asked for a change and the refund was replaced. The session was rejected — manual case, no further action. The team confirmed the details and the account was escalated. The team asked for a change and the appointment was reviewed.", created_at: new Date("2023-12-15T22:07:45Z"), likes: 50, edited: true },
            { id: 241, task_id: 231, content: "No response from the customer, so the document was confirmed. An operator confirmed the details and the order was reviewed. An operator asked for a change and the claim was escalated. No response from support, so the transfer was resolved.", created_at: new Date("2023-07-16T21:10:26Z"), likes: 33, edited: false },
            { id: 242, task_id: 175, content: "An incomplete follow-up: the request was rescheduled. A routine claim was escalated the same day. The shipment was cancelled after a repeat check. An urgent follow-up: the item was rejected.", created_at: new Date("2023-06-08T18:02:45Z"), likes: 44, edited: false },
            { id: 243, task_id: 243, content: "No response from an operator, so the document was updated. The team asked for a change and the payment was escalated. An operator confirmed the details and the account was delayed.", created_at: new Date("2023-07-25T13:20:00Z"), likes: 62, edited: true },
            { id: 244, task_id: 54, content: "No response from the courier, so the record was escalated. The shipment was delayed following a routine review. The record was delayed — duplicate case, no further action. The refund was reopened following a standard review.", created_at: new Date("2023-10-01T08:52:56Z"), likes: 70, edited: true },
            { id: 245, task_id: 100, content: "The reviewer reported a routine issue; the report was reviewed. A duplicate follow-up: the request was confirmed. The appointment was replaced following an urgent review. The booking was processed — repeat case, no further action.", created_at: new Date("2023-04-10T23:04:14Z"), likes: 32, edited: true },
            { id: 246, task_id: 109, content: null, created_at: new Date("2023-08-15T13:36:36Z"), likes: 46, edited: false },
            { id: 247, task_id: 208, content: "No response from the courier, so the session was updated. The customer confirmed the details and the booking was updated. Flagged as routine. The account owner reviewed the report.", created_at: new Date("2023-08-14T09:04:26Z"), likes: 66, edited: false },
            { id: 248, task_id: 181, content: "No response from an operator, so the shipment was processed. No response from the team, so the order was reopened.", created_at: new Date("2023-07-26T21:24:47Z"), likes: 35, edited: false },
            { id: 249, task_id: 77, content: "A duplicate booking was refunded the same day. A partial follow-up: the refund was approved. No response from the reviewer, so the document was cancelled.", created_at: new Date("2023-12-09T14:48:44Z"), likes: 34, edited: false },
            { id: 250, task_id: 181, content: "The payment was cancelled after a partial check. The reviewer reported a repeat issue; the order was confirmed. Flagged as automatic. The team refunded the invoice.", created_at: new Date("2023-03-14T14:10:24Z"), likes: 46, edited: false },
            { id: 251, task_id: 271, content: "The reviewer reported a repeat issue; the appointment was closed. The supplier reported a routine issue; the order was rescheduled. Flagged as automatic. The reviewer rejected the account. A repeat claim was confirmed the same day.", created_at: new Date("2023-10-06T00:20:14Z"), likes: 47, edited: true },
            { id: 252, task_id: 28, content: "Flagged as automatic. The supplier replaced the order. Flagged as minor. The account owner confirmed the refund. The supplier confirmed the details and the claim was escalated.", created_at: new Date("2023-03-20T22:30:45Z"), likes: 24, edited: true },
            { id: 253, task_id: 213, content: "The account owner confirmed the details and the record was refunded. A routine follow-up: the request was replaced. The courier confirmed the details and the session was delayed. The item was rescheduled following a routine review.", created_at: new Date("2023-07-30T16:17:30Z"), likes: 55, edited: false },
            { id: 254, task_id: 242, content: "The appointment was cancelled after a routine check. The reviewer confirmed the details and the session was rejected.", created_at: new Date("2023-01-08T15:26:21Z"), likes: 52, edited: true },
            { id: 255, task_id: 177, content: "The shipment was reopened following a routine review. An unusual record was replaced the same day.", created_at: new Date("2023-12-19T15:33:56Z"), likes: 53, edited: true },
            { id: 256, task_id: 13, content: "The order was delayed following a repeat review. Support reported a repeat issue; the session was confirmed. The reviewer reported a late issue; the document was approved.", created_at: new Date("2023-05-20T12:22:19Z"), likes: 22, edited: false },
            { id: 257, task_id: 64, content: "The document was processed — incomplete case, no further action. A standard follow-up: the payment was refunded. Flagged as automatic. The customer completed the invoice. The shipment was closed — automatic case, no further action.", created_at: new Date("2023-09-12T13:40:49Z"), likes: 19, edited: false },
            { id: 258, task_id: 299, content: null, created_at: new Date("2023-06-13T14:56:44Z"), likes: 42, edited: true },
            { id: 259, task_id: 296, content: "The courier reported a duplicate issue; the refund was confirmed. The team confirmed the details and the order was closed. The account owner asked for a change and the item was rescheduled.", created_at: new Date("2023-05-27T22:43:35Z"), likes: 50, edited: true },
            { id: 260, task_id: 60, content: "The delivery was reopened after an unusual check. The customer confirmed the details and the report was cancelled. The customer asked for a change and the invoice was rejected.", created_at: new Date("2023-10-31T17:14:07Z"), likes: 53, edited: false },
            { id: 261, task_id: 28, content: "No response from the account owner, so the session was reviewed. An unusual follow-up: the transfer was rejected.", created_at: new Date("2023-11-21T08:30:45Z"), likes: 81, edited: false },
            { id: 262, task_id: 193, content: "The claim was reviewed after a standard check. The courier reported an unusual issue; the ticket was processed. The account owner asked for a change and the record was resolved.", created_at: new Date("2023-09-07T15:24:07Z"), likes: 66, edited: true },
            { id: 263, task_id: 275, content: "Flagged as routine. Support confirmed the ticket. The supplier asked for a change and the claim was reopened. Flagged as minor. The supplier processed the shipment.", created_at: new Date("2023-02-21T20:37:45Z"), likes: 57, edited: true },
            { id: 264, task_id: 181, content: "An automatic follow-up: the order was rescheduled. The account owner reported a manual issue; the session was cancelled. The reviewer confirmed the details and the transfer was escalated. No response from the supplier, so the transfer was resolved.", created_at: new Date("2023-03-16T23:19:50Z"), likes: 51, edited: true },
            { id: 265, task_id: 149, content: "An operator asked for a change and the report was confirmed. The supplier confirmed the details and the shipment was replaced.", created_at: new Date("2023-01-25T20:43:36Z"), likes: 37, edited: true },
            { id: 266, task_id: 12, content: null, created_at: new Date("2023-04-27T15:27:19Z"), likes: 53, edited: false },
            { id: 267, task_id: 168, content: "An urgent follow-up: the ticket was approved. The account was reviewed following an automatic review.", created_at: new Date("2023-08-10T12:34:17Z"), likes: 60, edited: false },
            { id: 268, task_id: 150, content: "The account owner confirmed the details and the transfer was replaced. The account was closed after a routine check. An urgent follow-up: the claim was reopened.", created_at: new Date("2023-12-15T12:28:14Z"), likes: 57, edited: true },
            { id: 269, task_id: 134, content: "Flagged as unusual. The team approved the account. The request was processed following an unusual review. An operator asked for a change and the report was resolved.", created_at: new Date("2023-11-25T17:40:32Z"), likes: 79, edited: true },
            { id: 270, task_id: 220, content: null, created_at: new Date("2023-06-20T20:04:53Z"), likes: 49, edited: false },
            { id: 271, task_id: 53, content: "The session was replaced after an urgent check. The team confirmed the details and the item was rejected.", created_at: new Date("2023-12-21T09:45:04Z"), likes: 53, edited: false },
            { id: 272, task_id: 70, content: "An urgent follow-up: the shipment was cancelled. The account owner reported a repeat issue; the ticket was reopened.", created_at: new Date("2023-10-20T18:41:39Z"), likes: 72, edited: false },
            { id: 273, task_id: 238, content: "Flagged as repeat. Support resolved the order. An operator reported a partial issue; the document was updated.", created_at: new Date("2023-07-04T19:19:20Z"), likes: 62, edited: true },
            { id: 274, task_id: 88, content: "The team asked for a change and the invoice was replaced. A late transfer was rescheduled the same day. A manual follow-up: the report was replaced.", created_at: new Date("2023-01-24T07:30:30Z"), likes: 50, edited: true },
            { id: 275, task_id: 28, content: "Support confirmed the details and the booking was escalated. Flagged as standard. Support reviewed the order. No response from the team, so the payment was rejected.", created_at: new Date("2023-09-18T10:06:13Z"), likes: 53, edited: false },
            { id: 276, task_id: 244, content: "The courier asked for a change and the booking was replaced. An operator asked for a change and the session was closed.", created_at: new Date("2023-09-26T20:43:52Z"), likes: 41, edited: true },
            { id: 277, task_id: 20, content: "The claim was confirmed after a routine check. The customer reported a manual issue; the payment was approved. Flagged as routine. The account owner confirmed the document.", created_at: new Date("2023-04-28T08:20:52Z"), likes: 46, edited: false },
            { id: 278, task_id: 50, content: "Flagged as minor. The account owner resolved the record. The team confirmed the details and the item was cancelled.", created_at: new Date("2023-02-10T19:34:14Z"), likes: 59, edited: true },
            { id: 279, task_id: 93, content: "An incomplete follow-up: the session was completed. The payment was updated following an incomplete review. The ticket was rejected following a late review. The claim was updated following a late review.", created_at: new Date("2023-08-08T06:46:28Z"), likes: 60, edited: false },
            { id: 280, task_id: 11, content: "Flagged as minor. The team updated the payment. The courier reported a routine issue; the item was approved. The session was cancelled following a late review. A late follow-up: the document was resolved.", created_at: new Date("2023-12-23T22:07:48Z"), likes: 64, edited: false },
            { id: 281, task_id: 72, content: "An incomplete request was confirmed the same day. The account was rescheduled — standard case, no further action.", created_at: new Date("2023-11-04T19:20:54Z"), likes: 63, edited: false },
            { id: 282, task_id: 140, content: "An unusual delivery was delayed the same day. The order was cancelled following an unusual review. Flagged as standard. The reviewer refunded the payment. No response from the account owner, so the claim was rejected.", created_at: new Date("2023-07-18T20:10:20Z"), likes: 14, edited: false },
            { id: 283, task_id: 223, content: null, created_at: new Date("2023-04-24T13:30:45Z"), likes: 53, edited: true },
            { id: 284, task_id: 89, content: "Flagged as duplicate. The team updated the payment. The account owner asked for a change and the invoice was escalated. An unusual invoice was rescheduled the same day.", created_at: new Date("2023-06-28T11:23:08Z"), likes: 32, edited: false },
            { id: 285, task_id: 124, content: "The ticket was refunded following a duplicate review. The delivery was closed after a late check.", created_at: new Date("2023-08-10T11:25:27Z"), likes: 49, edited: true },
            { id: 286, task_id: 53, content: null, created_at: new Date("2023-01-04T15:14:53Z"), likes: 53, edited: true },
            { id: 287, task_id: 289, content: null, created_at: new Date("2023-02-01T16:50:00Z"), likes: 58, edited: true },
            { id: 288, task_id: 300, content: "Flagged as urgent. The courier reopened the report. The appointment was reviewed after an incomplete check. The payment was approved — minor case, no further action. A partial record was completed the same day.", created_at: new Date("2023-01-31T16:42:19Z"), likes: 31, edited: true },
            { id: 289, task_id: 247, content: "A routine follow-up: the report was approved. Flagged as standard. The supplier approved the shipment.", created_at: new Date("2023-05-30T10:49:34Z"), likes: 60, edited: false },
            { id: 290, task_id: 50, content: "Flagged as incomplete. The reviewer cancelled the shipment. No response from the customer, so the account was confirmed. The shipment was completed following a minor review.", created_at: new Date("2023-08-06T15:45:21Z"), likes: 51, edited: false },
            { id: 291, task_id: 244, content: "A partial follow-up: the booking was refunded. The claim was replaced after a standard check. An urgent claim was reopened the same day.", created_at: new Date("2023-06-12T12:22:49Z"), likes: 48, edited: true },
            { id: 292, task_id: 137, content: "A late item was updated the same day. No response from the reviewer, so the payment was delayed. A manual follow-up: the session was escalated.", created_at: new Date("2023-10-25T12:13:43Z"), likes: 72, edited: false },
            { id: 293, task_id: 274, content: "The customer asked for a change and the claim was approved. Flagged as unusual. Support confirmed the shipment. Support confirmed the details and the report was resolved. Support asked for a change and the claim was confirmed.", created_at: new Date("2023-06-27T22:47:07Z"), likes: 52, edited: false },
            { id: 294, task_id: 247, content: "The customer confirmed the details and the claim was updated. Flagged as duplicate. The customer updated the payment.", created_at: new Date("2023-06-27T10:21:11Z"), likes: 51, edited: false },
            { id: 295, task_id: 63, content: "An operator reported a standard issue; the appointment was closed. The delivery was processed following a minor review. A duplicate follow-up: the item was refunded. The ticket was closed following a repeat review.", created_at: new Date("2023-09-30T20:26:51Z"), likes: 52, edited: true },
            { id: 296, task_id: 207, content: "The account owner reported a manual issue; the record was updated. A minor follow-up: the transfer was updated. The supplier reported a partial issue; the item was resolved.", created_at: new Date("2023-08-28T10:10:36Z"), likes: 48, edited: true },
            { id: 297, task_id: 238, content: "Flagged as manual. The customer completed the session. A duplicate account was approved the same day.", created_at: new Date("2023-11-04T10:55:20Z"), likes: 66, edited: true },
            { id: 298, task_id: 258, content: "The request was closed following an urgent review. The report was replaced following a manual review. No response from the supplier, so the appointment was rejected.", created_at: new Date("2023-11-20T21:47:27Z"), likes: 84, edited: true },
            { id: 299, task_id: 187, content: "An urgent follow-up: the transfer was delayed. The team asked for a change and the report was confirmed. An automatic follow-up: the document was closed. The ticket was cancelled after a repeat check.", created_at: new Date("2023-06-19T20:16:47Z"), likes: 49, edited: true },
            { id: 300, task_id: 177, content: "A manual follow-up: the invoice was closed. The delivery was cancelled after a routine check. Support reported an unusual issue; the payment was processed.", created_at: new Date("2023-02-20T14:54:36Z"), likes: 40, edited: true },
            { id: 301, task_id: 16, content: "The request was cancelled — incomplete case, no further action. The team confirmed the details and the appointment was updated. The document was approved following a duplicate review. The customer reported a routine issue; the refund was updated.", created_at: new Date("2023-12-27T14:14:09Z"), likes: 34, edited: true },
            { id: 302, task_id: 117, content: "The delivery was processed — late case, no further action. The delivery was approved after an automatic check. The record was approved following a minor review. An operator confirmed the details and the payment was closed.", created_at: new Date("2023-11-18T16:09:17Z"), likes: 46, edited: false },
            { id: 303, task_id: 79, content: "Flagged as standard. The account owner rescheduled the transfer. An incomplete follow-up: the invoice was reopened. The item was delayed — minor case, no further action.", created_at: new Date("2023-07-28T16:52:45Z"), likes: 52, edited: false },
            { id: 304, task_id: 218, content: "The shipment was replaced after a manual check. The team confirmed the details and the ticket was cancelled. An operator reported an unusual issue; the appointment was refunded. The delivery was refunded following a duplicate review.", created_at: new Date("2023-10-09T10:47:49Z"), likes: 48, edited: true },
            { id: 305, task_id: 197, content: "A late session was delayed the same day. No response from the supplier, so the shipment was resolved. The supplier confirmed the details and the transfer was updated. The report was replaced — repeat case, no further action.", created_at: new Date("2023-10-21T21:08:51Z"), likes: 50, edited: false },
            { id: 306, task_id: 178, content: "Support asked for a change and the payment was reopened. An automatic order was escalated the same day.", created_at: new Date("2023-07-01T15:03:01Z"), likes: 59, edited: false },
            { id: 307, task_id: 210, content: "A late payment was updated the same day. The order was rescheduled following an urgent review.", created_at: new Date("2023-01-08T08:37:38Z"), likes: 20, edited: false },
            { id: 308, task_id: 109, content: null, created_at: new Date("2023-12-29T13:24:40Z"), likes: 38, edited: false },
            { id: 309, task_id: 275, content: "The request was replaced after a duplicate check. Flagged as unusual. The account owner reviewed the record.", created_at: new Date("2023-09-19T08:15:37Z"), likes: 39, edited: true },
            { id: 310, task_id: 250, content: "The customer asked for a change and the delivery was completed. A partial follow-up: the shipment was delayed. The claim was rescheduled — partial case, no further action.", created_at: new Date("2023-02-18T18:13:29Z"), likes: 37, edited: true },
            { id: 311, task_id: 253, content: null, created_at: new Date("2023-08-16T08:16:40Z"), likes: 45, edited: true },
            { id: 312, task_id: 177, content: "The item was reopened — minor case, no further action. The courier confirmed the details and the payment was refunded. A routine follow-up: the claim was delayed. The record was replaced following an automatic review.", created_at: new Date("2023-12-02T18:10:01Z"), likes: 58, edited: false },
            { id: 313, task_id: 244, content: "The shipment was delayed following a standard review. An unusual follow-up: the transfer was completed. The ticket was refunded — duplicate case, no further action. An automatic follow-up: the account was confirmed.", created_at: new Date("2023-04-02T18:55:06Z"), likes: 45, edited: false },
            { id: 314, task_id: 119, content: "Flagged as manual. The team processed the payment. The courier asked for a change and the shipment was escalated. The item was completed — manual case, no further action.", created_at: new Date("2023-11-15T14:51:08Z"), likes: 45, edited: true },
            { id: 315, task_id: 24, content: "The transfer was completed following a routine review. The claim was reviewed following an urgent review.", created_at: new Date("2023-01-29T20:07:47Z"), likes: 40, edited: false },
            { id: 316, task_id: 144, content: "The courier reported an unusual issue; the refund was closed. An urgent request was resolved the same day.", created_at: new Date("2023-07-30T19:36:48Z"), likes: 69, edited: false },
            { id: 317, task_id: 74, content: "A standard follow-up: the item was refunded. A repeat follow-up: the payment was updated. No response from support, so the booking was closed. A repeat item was processed the same day.", created_at: new Date("2023-03-29T06:07:04Z"), likes: 48, edited: false },
            { id: 318, task_id: 150, content: "The customer reported an incomplete issue; the item was closed. The invoice was replaced after a manual check. A duplicate ticket was rescheduled the same day.", created_at: new Date("2023-12-16T23:27:17Z"), likes: 49, edited: true },
            { id: 319, task_id: 216, content: "The courier confirmed the details and the shipment was replaced. The request was closed after a minor check. The reviewer confirmed the details and the session was delayed.", created_at: new Date("2023-06-10T21:05:27Z"), likes: 57, edited: true },
            { id: 320, task_id: 31, content: "No response from support, so the account was approved. The reviewer asked for a change and the account was reopened.", created_at: new Date("2023-11-07T11:38:50Z"), likes: 51, edited: true },
            { id: 321, task_id: 256, content: "The supplier reported a manual issue; the claim was refunded. Flagged as standard. The reviewer resolved the document. The account was completed after an unusual check. No response from the reviewer, so the document was reviewed.", created_at: new Date("2023-05-06T20:48:32Z"), likes: 52, edited: true },
            { id: 322, task_id: 121, content: "The courier confirmed the details and the report was approved. The invoice was resolved after a late check. The account owner reported a repeat issue; the delivery was rejected. Flagged as late. The supplier reopened the claim.", created_at: new Date("2023-01-17T12:18:20Z"), likes: 51, edited: true },
            { id: 323, task_id: 20, content: "The claim was resolved after an urgent check. The account owner asked for a change and the booking was completed. A routine order was escalated the same day.", created_at: new Date("2023-02-08T19:34:17Z"), likes: 42, edited: true },
            { id: 324, task_id: 237, content: "The customer reported a late issue; the shipment was refunded. Flagged as unusual. The courier updated the delivery.", created_at: new Date("2023-02-23T14:44:05Z"), likes: 56, edited: false },
            { id: 325, task_id: 228, content: "The payment was cancelled — standard case, no further action. The order was cancelled — partial case, no further action. A partial shipment was confirmed the same day. The supplier asked for a change and the refund was completed.", created_at: new Date("2023-10-28T20:48:34Z"), likes: 36, edited: true },
            { id: 326, task_id: 129, content: "An urgent follow-up: the transfer was completed. An operator asked for a change and the session was rejected.", created_at: new Date("2023-10-12T21:58:23Z"), likes: 28, edited: true },
            { id: 327, task_id: 111, content: "An unusual document was confirmed the same day. An urgent claim was rejected the same day. The document was completed following a repeat review. The account was updated — automatic case, no further action.", created_at: new Date("2023-04-10T13:22:07Z"), likes: 69, edited: true },
            { id: 328, task_id: 53, content: "Flagged as routine. The supplier delayed the account. No response from an operator, so the delivery was closed.", created_at: new Date("2023-12-10T18:15:00Z"), likes: 51, edited: true },
            { id: 329, task_id: 288, content: "A repeat request was approved the same day. An unusual follow-up: the shipment was replaced. The shipment was reopened after a routine check.", created_at: new Date("2023-07-28T16:08:13Z"), likes: 54, edited: false },
            { id: 330, task_id: 162, content: "No response from the courier, so the item was processed. No response from the courier, so the order was refunded.", created_at: new Date("2023-12-06T00:26:38Z"), likes: 48, edited: false },
            { id: 331, task_id: 44, content: "The reviewer asked for a change and the invoice was processed. The record was escalated after an unusual check. A routine delivery was refunded the same day.", created_at: new Date("2023-08-31T06:56:04Z"), likes: 36, edited: true },
            { id: 332, task_id: 177, content: null, created_at: new Date("2023-05-16T13:50:25Z"), likes: 62, edited: false },
            { id: 333, task_id: 44, content: "No response from the team, so the appointment was closed. The booking was rescheduled after an unusual check. An automatic follow-up: the report was approved. The document was completed — duplicate case, no further action.", created_at: new Date("2023-11-24T14:19:01Z"), likes: 37, edited: false },
            { id: 334, task_id: 234, content: "The document was rejected — urgent case, no further action. Flagged as automatic. The supplier rejected the report. The booking was updated after a partial check. The courier asked for a change and the booking was rejected.", created_at: new Date("2023-01-14T21:00:46Z"), likes: 42, edited: false },
            { id: 335, task_id: 168, content: "The order was approved following an unusual review. The account owner reported an automatic issue; the item was escalated. An urgent follow-up: the transfer was refunded. No response from an operator, so the appointment was reopened.", created_at: new Date("2023-01-31T16:53:40Z"), likes: 40, edited: false },
            { id: 336, task_id: 131, content: "A standard follow-up: the ticket was completed. No response from the supplier, so the invoice was cancelled. The supplier confirmed the details and the report was reopened. The invoice was escalated after a standard check.", created_at: new Date("2023-12-04T12:00:12Z"), likes: 38, edited: true },
            { id: 337, task_id: 181, content: "An operator reported a minor issue; the booking was approved. An unusual follow-up: the record was refunded. Flagged as partial. An operator reopened the refund. The supplier reported a partial issue; the refund was refunded.", created_at: new Date("2023-01-08T16:35:57Z"), likes: 48, edited: false },
            { id: 338, task_id: 209, content: null, created_at: new Date("2023-03-11T22:16:08Z"), likes: 38, edited: true },
            { id: 339, task_id: 26, content: "The team confirmed the details and the request was replaced. A partial follow-up: the shipment was refunded.", created_at: new Date("2023-06-17T17:52:12Z"), likes: 91, edited: true },
            { id: 340, task_id: 296, content: "Flagged as incomplete. The reviewer reopened the request. No response from the account owner, so the request was updated.", created_at: new Date("2023-04-19T16:16:35Z"), likes: 62, edited: false },
            { id: 341, task_id: 237, content: "The invoice was reviewed after a late check. A partial follow-up: the request was reviewed.", created_at: new Date("2023-12-04T23:22:51Z"), likes: 64, edited: false },
            { id: 342, task_id: 119, content: "A repeat follow-up: the session was processed. An incomplete follow-up: the delivery was resolved. An operator confirmed the details and the shipment was cancelled.", created_at: new Date("2023-05-02T07:25:30Z"), likes: 46, edited: false },
            { id: 343, task_id: 179, content: "A standard follow-up: the transfer was cancelled. The supplier confirmed the details and the order was escalated.", created_at: new Date("2023-04-06T14:37:04Z"), likes: 76, edited: true },
            { id: 344, task_id: 79, content: "A manual follow-up: the item was delayed. The document was cancelled — partial case, no further action.", created_at: new Date("2023-10-20T13:20:19Z"), likes: 35, edited: true },
            { id: 345, task_id: 286, content: "A partial follow-up: the order was updated. Support reported a partial issue; the item was refunded.", created_at: new Date("2023-05-10T22:37:04Z"), likes: 40, edited: true },
            { id: 346, task_id: 223, content: null, created_at: new Date("2023-05-17T22:58:34Z"), likes: 47, edited: true },
            { id: 347, task_id: 124, content: "An operator asked for a change and the invoice was rejected. The report was approved after an urgent check. The document was closed after a repeat check. The reviewer reported a partial issue; the refund was reviewed.", created_at: new Date("2023-11-19T05:51:35Z"), likes: 24, edited: true },
            { id: 348, task_id: 259, content: "Support reported an incomplete issue; the delivery was cancelled. The session was escalated following a minor review. A minor invoice was cancelled the same day. No response from the supplier, so the report was refunded.", created_at: new Date("2023-03-17T06:11:16Z"), likes: 41, edited: true },
            { id: 349, task_id: 75, content: null, created_at: new Date("2023-03-09T21:39:01Z"), likes: 52, edited: true },
            { id: 350, task_id: 33, content: "Flagged as standard. The account owner cancelled the claim. Support asked for a change and the ticket was resolved. The team reported a duplicate issue; the report was resolved.", created_at: new Date("2023-10-19T16:14:44Z"), likes: 76, edited: true },
            { id: 351, task_id: 125, content: "The shipment was delayed after a repeat check. Flagged as automatic. The team reopened the item. The courier confirmed the details and the item was confirmed.", created_at: new Date("2023-07-10T19:38:12Z"), likes: 63, edited: false },
            { id: 352, task_id: 13, content: "An incomplete follow-up: the record was processed. A manual ticket was delayed the same day.", created_at: new Date("2023-10-24T10:27:48Z"), likes: 88, edited: true },
            { id: 353, task_id: 46, content: "No response from support, so the appointment was completed. The account owner confirmed the details and the transfer was reopened.", created_at: new Date("2023-04-30T17:09:01Z"), likes: 28, edited: true },
            { id: 354, task_id: 134, content: "The payment was resolved after a minor check. The team asked for a change and the transfer was completed. The shipment was refunded after a routine check.", created_at: new Date("2023-09-14T18:40:32Z"), likes: 29, edited: false },
            { id: 355, task_id: 286, content: "Support asked for a change and the order was rejected. The appointment was delayed after an urgent check. The request was reviewed — minor case, no further action. The team asked for a change and the payment was updated.", created_at: new Date("2023-04-04T20:25:30Z"), likes: 48, edited: false },
            { id: 356, task_id: 164, content: "The payment was processed following a partial review. The order was confirmed following an unusual review. Flagged as routine. The courier escalated the document. The supplier asked for a change and the claim was approved.", created_at: new Date("2023-04-22T20:36:36Z"), likes: 72, edited: true },
            { id: 357, task_id: 108, content: "The record was refunded following a duplicate review. Flagged as routine. The reviewer escalated the payment. No response from the reviewer, so the invoice was escalated. A duplicate order was processed the same day.", created_at: new Date("2023-01-16T18:20:58Z"), likes: 37, edited: true },
            { id: 358, task_id: 133, content: "No response from the supplier, so the payment was approved. The booking was rejected following a minor review. The delivery was reviewed — partial case, no further action. Flagged as standard. The team replaced the session.", created_at: new Date("2023-01-31T11:12:52Z"), likes: 81, edited: true },
            { id: 359, task_id: 197, content: "An unusual follow-up: the item was completed. Flagged as late. The team reviewed the report.", created_at: new Date("2023-01-12T19:01:21Z"), likes: 62, edited: false },
            { id: 360, task_id: 206, content: "The transfer was reviewed following a duplicate review. A minor report was delayed the same day. The shipment was rejected after an incomplete check.", created_at: new Date("2023-01-10T19:51:46Z"), likes: 45, edited: true },
            { id: 361, task_id: 170, content: "The courier asked for a change and the account was reviewed. The claim was cancelled after a partial check. Flagged as incomplete. The supplier reviewed the order.", created_at: new Date("2023-11-05T14:01:02Z"), likes: 59, edited: false },
            { id: 362, task_id: 299, content: "The claim was cancelled after a standard check. An incomplete claim was cancelled the same day.", created_at: new Date("2023-12-20T15:45:12Z"), likes: 42, edited: true },
            { id: 363, task_id: 89, content: "A late follow-up: the document was completed. The claim was refunded — partial case, no further action. The courier asked for a change and the request was updated. The delivery was delayed after a duplicate check.", created_at: new Date("2023-01-07T09:29:47Z"), likes: 54, edited: true },
            { id: 364, task_id: 64, content: null, created_at: new Date("2023-07-27T19:07:13Z"), likes: 60, edited: false },
            { id: 365, task_id: 264, content: "The customer confirmed the details and the document was cancelled. The team reported a standard issue; the request was replaced. The customer asked for a change and the order was escalated.", created_at: new Date("2023-12-29T14:07:27Z"), likes: 59, edited: true },
            { id: 366, task_id: 82, content: "A standard follow-up: the claim was rescheduled. The session was escalated following an unusual review. The item was rescheduled after an automatic check.", created_at: new Date("2023-07-24T21:33:19Z"), likes: 50, edited: true },
            { id: 367, task_id: 138, content: "The customer confirmed the details and the report was approved. The reviewer asked for a change and the report was cancelled. The order was reopened after an automatic check.", created_at: new Date("2023-10-05T08:25:42Z"), likes: 53, edited: true },
            { id: 368, task_id: 100, content: "Support asked for a change and the appointment was resolved. The booking was reviewed after a partial check. An incomplete follow-up: the delivery was replaced. The account owner reported an incomplete issue; the request was approved.", created_at: new Date("2023-10-11T13:14:15Z"), likes: 44, edited: true },
            { id: 369, task_id: 193, content: "Support asked for a change and the item was resolved. An operator reported a standard issue; the refund was confirmed.", created_at: new Date("2023-05-05T20:15:50Z"), likes: 59, edited: true },
            { id: 370, task_id: 262, content: "The account was resolved following a manual review. The account was rescheduled — manual case, no further action. A minor ticket was cancelled the same day.", created_at: new Date("2023-07-16T08:06:59Z"), likes: 67, edited: false },
            { id: 371, task_id: 115, content: "The customer reported a routine issue; the booking was approved. A manual request was refunded the same day. The team asked for a change and the shipment was confirmed.", created_at: new Date("2023-02-24T18:49:00Z"), likes: 53, edited: true },
            { id: 372, task_id: 197, content: "An urgent follow-up: the delivery was rescheduled. No response from the reviewer, so the invoice was refunded. The item was refunded following an automatic review.", created_at: new Date("2023-09-02T14:24:22Z"), likes: 37, edited: true },
            { id: 373, task_id: 55, content: "The customer confirmed the details and the transfer was reopened. A manual follow-up: the session was processed.", created_at: new Date("2023-11-25T18:51:44Z"), likes: 49, edited: false },
            { id: 374, task_id: 209, content: null, created_at: new Date("2023-11-07T13:15:53Z"), likes: 39, edited: true },
            { id: 375, task_id: 90, content: "The document was confirmed after a partial check. Flagged as late. The customer delayed the claim. The account was rescheduled following an automatic review. The delivery was cancelled — incomplete case, no further action.", created_at: new Date("2023-11-29T19:41:11Z"), likes: 57, edited: true },
            { id: 376, task_id: 247, content: "The account owner asked for a change and the delivery was rejected. The transfer was rejected following an urgent review. The customer reported a routine issue; the report was closed.", created_at: new Date("2023-04-16T14:07:23Z"), likes: 67, edited: false },
            { id: 377, task_id: 207, content: "The request was escalated following an incomplete review. An operator asked for a change and the item was cancelled.", created_at: new Date("2023-07-04T00:20:20Z"), likes: 30, edited: false },
            { id: 378, task_id: 125, content: "Support asked for a change and the transfer was completed. Support reported a repeat issue; the transfer was cancelled.", created_at: new Date("2023-08-08T07:24:22Z"), likes: 56, edited: true },
            { id: 379, task_id: 254, content: "The courier confirmed the details and the appointment was processed. The refund was rejected after an urgent check. A minor payment was completed the same day.", created_at: new Date("2023-12-05T09:29:28Z"), likes: 55, edited: true },
            { id: 380, task_id: 134, content: "Flagged as minor. The customer replaced the transfer. The account owner reported an unusual issue; the refund was processed. Flagged as unusual. The courier reviewed the ticket. A late follow-up: the delivery was delayed.", created_at: new Date("2023-09-30T13:33:01Z"), likes: 51, edited: false },
            { id: 381, task_id: 250, content: "The invoice was refunded after a manual check. The session was confirmed — urgent case, no further action.", created_at: new Date("2023-05-29T12:07:04Z"), likes: 37, edited: false },
            { id: 382, task_id: 73, content: "The delivery was processed following a standard review. The ticket was delayed — partial case, no further action. An operator reported a standard issue; the item was cancelled.", created_at: new Date("2023-03-05T07:15:43Z"), likes: 51, edited: false },
            { id: 383, task_id: 152, content: "The courier asked for a change and the record was updated. An operator reported a routine issue; the record was updated.", created_at: new Date("2023-08-23T14:05:28Z"), likes: 37, edited: true },
            { id: 384, task_id: 252, content: "The transfer was processed — urgent case, no further action. No response from the supplier, so the payment was closed.", created_at: new Date("2023-12-30T10:29:50Z"), likes: 57, edited: true },
            { id: 385, task_id: 12, content: "The order was escalated following an incomplete review. Flagged as incomplete. The supplier approved the report. A partial ticket was replaced the same day. The reviewer reported a partial issue; the claim was delayed.", created_at: new Date("2023-03-05T11:17:13Z"), likes: 60, edited: true },
            { id: 386, task_id: 275, content: "The customer confirmed the details and the invoice was rejected. A standard delivery was escalated the same day. The document was approved following an urgent review. The courier confirmed the details and the appointment was replaced.", created_at: new Date("2023-12-23T19:28:49Z"), likes: 64, edited: false },
            { id: 387, task_id: 28, content: "The customer reported a standard issue; the order was completed. A repeat payment was approved the same day.", created_at: new Date("2023-03-06T08:12:10Z"), likes: 66, edited: true },
            { id: 388, task_id: 218, content: "The record was resolved — minor case, no further action. An operator asked for a change and the record was rejected.", created_at: new Date("2023-03-18T19:25:54Z"), likes: 30, edited: true },
            { id: 389, task_id: 169, content: "A minor report was refunded the same day. The courier asked for a change and the account was resolved.", created_at: new Date("2023-10-11T11:01:00Z"), likes: 14, edited: false },
            { id: 390, task_id: 255, content: "Flagged as incomplete. The reviewer refunded the document. No response from an operator, so the delivery was reviewed. The supplier reported a duplicate issue; the appointment was reviewed. An operator reported an automatic issue; the request was confirmed.", created_at: new Date("2023-04-21T11:45:00Z"), likes: 46, edited: false },
            { id: 391, task_id: 48, content: "The reviewer reported a repeat issue; the invoice was closed. The shipment was approved — urgent case, no further action.", created_at: new Date("2023-11-13T13:30:00Z"), likes: 69, edited: true },
            { id: 392, task_id: 110, content: "The claim was reviewed — minor case, no further action. The document was reviewed — late case, no further action.", created_at: new Date("2023-06-10T03:58:09Z"), likes: 39, edited: true },
            { id: 393, task_id: 252, content: "The booking was replaced following an automatic review. A standard follow-up: the record was processed. Flagged as unusual. The reviewer confirmed the shipment.", created_at: new Date("2023-07-02T08:27:47Z"), likes: 26, edited: true },
            { id: 394, task_id: 113, content: "The item was escalated after a repeat check. Support asked for a change and the ticket was reviewed.", created_at: new Date("2023-08-08T10:04:06Z"), likes: 29, edited: false },
            { id: 395, task_id: 173, content: "The document was replaced following a partial review. Flagged as repeat. The account owner escalated the item. Flagged as minor. The team refunded the shipment.", created_at: new Date("2023-05-30T20:32:14Z"), likes: 34, edited: false },
            { id: 396, task_id: 182, content: "The supplier asked for a change and the booking was closed. The item was confirmed after an urgent check.", created_at: new Date("2023-10-11T19:16:26Z"), likes: 41, edited: true },
            { id: 397, task_id: 44, content: "No response from the supplier, so the payment was reopened. The ticket was completed — duplicate case, no further action. The order was reviewed after a minor check. An incomplete appointment was rescheduled the same day.", created_at: new Date("2023-12-07T07:59:55Z"), likes: 54, edited: false },
            { id: 398, task_id: 147, content: "The reviewer confirmed the details and the delivery was rejected. An unusual account was rescheduled the same day. A manual order was reviewed the same day.", created_at: new Date("2023-08-28T12:17:08Z"), likes: 63, edited: false },
            { id: 399, task_id: 195, content: "The reviewer asked for a change and the refund was rescheduled. An urgent record was processed the same day. The team asked for a change and the item was updated. Flagged as duplicate. The team processed the transfer.", created_at: new Date("2023-01-01T14:29:01Z"), likes: 53, edited: true },
            { id: 400, task_id: 95, content: "Flagged as automatic. Support updated the appointment. A routine follow-up: the record was resolved. No response from the reviewer, so the ticket was replaced. No response from the account owner, so the payment was delayed.", created_at: new Date("2023-09-11T23:34:36Z"), likes: 46, edited: false },
            { id: 401, task_id: 167, content: "The team asked for a change and the transfer was escalated. Flagged as manual. The courier replaced the shipment.", created_at: new Date("2023-01-29T18:06:44Z"), likes: 65, edited: false },
            { id: 402, task_id: 176, content: "The refund was confirmed after a duplicate check. A partial invoice was rescheduled the same day. An unusual follow-up: the shipment was replaced.", created_at: new Date("2023-04-03T14:56:47Z"), likes: 38, edited: false },
            { id: 403, task_id: 214, content: "An automatic claim was cancelled the same day. Flagged as incomplete. The account owner cancelled the order.", created_at: new Date("2023-11-15T10:12:44Z"), likes: 66, edited: false },
            { id: 404, task_id: 32, content: "Flagged as incomplete. The account owner refunded the account. The supplier reported a duplicate issue; the document was confirmed.", created_at: new Date("2023-03-04T14:51:26Z"), likes: 72, edited: false },
            { id: 405, task_id: 172, content: "The ticket was cancelled after a minor check. Flagged as minor. The customer rejected the session.", created_at: new Date("2023-01-06T14:14:53Z"), likes: 51, edited: true },
            { id: 406, task_id: 168, content: "The report was escalated following a routine review. The document was resolved following a routine review. The payment was confirmed — repeat case, no further action. Support confirmed the details and the refund was resolved.", created_at: new Date("2023-05-30T14:53:40Z"), likes: 43, edited: false },
            { id: 407, task_id: 232, content: null, created_at: new Date("2023-01-20T16:47:40Z"), likes: 49, edited: true },
            { id: 408, task_id: 125, content: "An automatic follow-up: the request was updated. Flagged as incomplete. The supplier approved the document.", created_at: new Date("2023-03-01T18:23:24Z"), likes: 49, edited: true },
            { id: 409, task_id: 74, content: "The customer reported an automatic issue; the delivery was closed. A duplicate follow-up: the appointment was completed. No response from the reviewer, so the claim was delayed.", created_at: new Date("2023-07-24T11:14:40Z"), likes: 56, edited: true },
            { id: 410, task_id: 285, content: "The shipment was rescheduled following a duplicate review. No response from the team, so the item was replaced. A routine appointment was rejected the same day.", created_at: new Date("2023-11-10T10:38:23Z"), likes: 60, edited: true },
            { id: 411, task_id: 177, content: "The courier confirmed the details and the order was closed. The shipment was refunded following an automatic review.", created_at: new Date("2023-11-10T12:27:54Z"), likes: 39, edited: false },
            { id: 412, task_id: 80, content: "The supplier confirmed the details and the order was delayed. The account was cancelled — duplicate case, no further action. Flagged as repeat. Support escalated the document.", created_at: new Date("2023-06-23T03:46:38Z"), likes: 41, edited: true },
            { id: 413, task_id: 205, content: "The ticket was updated following a routine review. Flagged as incomplete. The courier rejected the record. The reviewer reported an incomplete issue; the refund was closed.", created_at: new Date("2023-04-15T05:01:37Z"), likes: 44, edited: true },
            { id: 414, task_id: 7, content: "The booking was updated after a routine check. No response from the courier, so the record was rejected.", created_at: new Date("2023-11-16T03:31:06Z"), likes: 38, edited: false },
            { id: 415, task_id: 231, content: "The account was closed following a routine review. The supplier confirmed the details and the claim was replaced. The request was reviewed after an urgent check. The supplier reported an unusual issue; the document was rescheduled.", created_at: new Date("2023-09-20T00:36:02Z"), likes: 63, edited: true },
            { id: 416, task_id: 220, content: "The supplier asked for a change and the account was closed. The transfer was approved after a partial check.", created_at: new Date("2023-10-02T09:42:34Z"), likes: 47, edited: true },
            { id: 417, task_id: 295, content: "Flagged as unusual. The reviewer reviewed the claim. The reviewer reported a minor issue; the item was approved. The report was approved after a routine check. The document was approved after a minor check.", created_at: new Date("2023-12-17T10:56:46Z"), likes: 54, edited: false },
            { id: 418, task_id: 83, content: "The reviewer asked for a change and the request was refunded. The appointment was refunded — routine case, no further action. The shipment was replaced — automatic case, no further action.", created_at: new Date("2023-09-12T11:10:40Z"), likes: 47, edited: true },
            { id: 419, task_id: 116, content: "A manual document was processed the same day. The courier confirmed the details and the request was updated. The reviewer reported an unusual issue; the claim was replaced.", created_at: new Date("2023-03-18T15:04:24Z"), likes: 14, edited: true },
            { id: 420, task_id: 81, content: null, created_at: new Date("2023-07-08T05:01:42Z"), likes: 64, edited: false },
            { id: 421, task_id: 188, content: "No response from the customer, so the report was replaced. The transfer was escalated following a manual review. The session was updated — repeat case, no further action. The courier asked for a change and the claim was rejected.", created_at: new Date("2023-03-23T16:08:15Z"), likes: 57, edited: true },
            { id: 422, task_id: 121, content: "Flagged as minor. The supplier replaced the delivery. The supplier asked for a change and the payment was cancelled. The session was resolved following a partial review. The record was delayed after a minor check.", created_at: new Date("2023-11-10T11:05:22Z"), likes: 25, edited: true },
            { id: 423, task_id: 124, content: "The courier asked for a change and the ticket was closed. Flagged as standard. The account owner delayed the booking. The reviewer confirmed the details and the shipment was replaced. The ticket was refunded following a standard review.", created_at: new Date("2023-09-01T00:08:42Z"), likes: 36, edited: false },
            { id: 424, task_id: 60, content: "The courier confirmed the details and the shipment was closed. An operator asked for a change and the transfer was escalated.", created_at: new Date("2023-12-04T08:11:49Z"), likes: 65, edited: true },
            { id: 425, task_id: 159, content: "The account owner reported an unusual issue; the item was refunded. No response from support, so the document was replaced. The document was delayed following a standard review.", created_at: new Date("2023-12-05T17:21:09Z"), likes: 70, edited: true },
            { id: 426, task_id: 299, content: "The ticket was approved following a repeat review. A duplicate transfer was closed the same day. Flagged as routine. Support closed the record.", created_at: new Date("2023-01-20T13:42:08Z"), likes: 46, edited: true },
            { id: 427, task_id: 116, content: "The team asked for a change and the document was processed. Support confirmed the details and the item was escalated.", created_at: new Date("2023-07-13T19:20:24Z"), likes: 40, edited: true },
            { id: 428, task_id: 159, content: "The supplier reported an incomplete issue; the report was resolved. A late shipment was replaced the same day.", created_at: new Date("2023-05-01T15:49:40Z"), likes: 43, edited: false },
            { id: 429, task_id: 82, content: "The delivery was escalated following a duplicate review. The document was escalated — automatic case, no further action.", created_at: new Date("2023-02-01T00:31:47Z"), likes: 54, edited: true },
            { id: 430, task_id: 281, content: "The booking was cancelled after an automatic check. The report was reopened after an urgent check. The ticket was processed following an automatic review. The transfer was completed — manual case, no further action.", created_at: new Date("2023-07-22T21:13:23Z"), likes: 37, edited: false },
            { id: 431, task_id: 152, content: "The appointment was replaced — manual case, no further action. An unusual follow-up: the delivery was reopened. The request was confirmed — manual case, no further action. No response from an operator, so the delivery was processed.", created_at: new Date("2023-09-21T14:29:16Z"), likes: 44, edited: false },
            { id: 432, task_id: 140, content: "A partial order was cancelled the same day. The request was delayed following a routine review. A manual follow-up: the transfer was refunded.", created_at: new Date("2023-04-21T19:51:52Z"), likes: 68, edited: false },
            { id: 433, task_id: 155, content: "The report was reviewed — standard case, no further action. The supplier asked for a change and the report was resolved.", created_at: new Date("2023-11-13T13:22:54Z"), likes: 55, edited: true },
            { id: 434, task_id: 259, content: "A duplicate follow-up: the refund was cancelled. The document was reviewed after a minor check. The team confirmed the details and the session was closed.", created_at: new Date("2023-05-16T22:10:01Z"), likes: 82, edited: false },
            { id: 435, task_id: 132, content: "No response from an operator, so the session was replaced. No response from the reviewer, so the payment was escalated. The courier asked for a change and the delivery was rejected. An operator asked for a change and the report was resolved.", created_at: new Date("2023-07-20T18:23:06Z"), likes: 69, edited: false },
            { id: 436, task_id: 126, content: "The reviewer asked for a change and the claim was rejected. Flagged as routine. The reviewer processed the item. The supplier asked for a change and the shipment was refunded.", created_at: new Date("2023-05-02T07:11:17Z"), likes: 26, edited: false },
            { id: 437, task_id: 213, content: null, created_at: new Date("2023-02-26T16:57:56Z"), likes: 65, edited: false },
            { id: 438, task_id: 100, content: "An urgent follow-up: the order was closed. An unusual invoice was cancelled the same day. The item was confirmed — repeat case, no further action.", created_at: new Date("2023-01-09T16:47:26Z"), likes: 67, edited: true },
            { id: 439, task_id: 112, content: "A duplicate account was refunded the same day. Flagged as manual. The team reviewed the booking.", created_at: new Date("2023-06-11T08:52:23Z"), likes: 69, edited: true },
            { id: 440, task_id: 109, content: "A minor follow-up: the request was closed. Flagged as routine. Support confirmed the record. No response from the account owner, so the order was resolved. The reviewer reported a repeat issue; the refund was completed.", created_at: new Date("2023-04-29T21:50:44Z"), likes: 59, edited: true },
            { id: 441, task_id: 27, content: "A repeat report was rescheduled the same day. The order was delayed after a late check.", created_at: new Date("2023-09-16T16:11:14Z"), likes: 29, edited: false },
            { id: 442, task_id: 221, content: "A duplicate shipment was refunded the same day. The report was cancelled — partial case, no further action.", created_at: new Date("2023-05-04T16:55:39Z"), likes: 39, edited: true },
            { id: 443, task_id: 291, content: "The ticket was reviewed following a repeat review. The document was reviewed after a duplicate check. The account owner asked for a change and the document was confirmed.", created_at: new Date("2023-10-09T06:26:17Z"), likes: 29, edited: true },
            { id: 444, task_id: 104, content: "The record was delayed after a standard check. The claim was reopened following a manual review.", created_at: new Date("2023-09-07T16:55:09Z"), likes: 56, edited: false },
            { id: 445, task_id: 223, content: "The account was reviewed following an incomplete review. The appointment was refunded after an automatic check. The record was rescheduled after an incomplete check. An incomplete record was reopened the same day.", created_at: new Date("2023-08-08T16:51:06Z"), likes: 47, edited: true },
            { id: 446, task_id: 283, content: "No response from the reviewer, so the report was processed. The account owner confirmed the details and the payment was rejected. The reviewer reported an urgent issue; the item was cancelled.", created_at: new Date("2023-09-20T11:49:55Z"), likes: 67, edited: false },
            { id: 447, task_id: 99, content: null, created_at: new Date("2023-07-10T16:15:09Z"), likes: 26, edited: true },
            { id: 448, task_id: 35, content: "The record was escalated — partial case, no further action. The delivery was processed after a repeat check.", created_at: new Date("2023-02-16T16:42:43Z"), likes: 61, edited: false },
            { id: 449, task_id: 157, content: "The document was reopened — incomplete case, no further action. A duplicate follow-up: the transfer was confirmed. The transfer was rescheduled — standard case, no further action. Flagged as late. The reviewer rescheduled the appointment.", created_at: new Date("2023-03-29T19:24:28Z"), likes: 70, edited: true },
            { id: 450, task_id: 120, content: "The team confirmed the details and the ticket was reopened. The report was resolved following an unusual review. An operator confirmed the details and the report was reviewed. No response from the reviewer, so the item was confirmed.", created_at: new Date("2023-04-06T19:44:06Z"), likes: 22, edited: true },
            { id: 451, task_id: 65, content: "No response from the supplier, so the appointment was updated. The request was rescheduled — manual case, no further action. A duplicate follow-up: the account was replaced. Flagged as late. The supplier updated the shipment.", created_at: new Date("2023-07-11T17:50:45Z"), likes: 46, edited: false },
            { id: 452, task_id: 57, content: "The document was confirmed after a partial check. Flagged as late. Support rescheduled the invoice. No response from an operator, so the invoice was closed. The reviewer reported a repeat issue; the item was closed.", created_at: new Date("2023-01-01T04:23:17Z"), likes: 33, edited: true },
            { id: 453, task_id: 197, content: null, created_at: new Date("2023-01-21T19:22:33Z"), likes: 30, edited: true },
            { id: 454, task_id: 226, content: "Flagged as minor. An operator reopened the order. No response from the account owner, so the order was rejected. Support asked for a change and the refund was updated.", created_at: new Date("2023-01-03T14:31:25Z"), likes: 82, edited: false },
            { id: 455, task_id: 291, content: "The customer confirmed the details and the payment was reviewed. No response from the reviewer, so the record was rescheduled. A minor follow-up: the ticket was completed. A repeat invoice was cancelled the same day.", created_at: new Date("2023-04-08T20:25:36Z"), likes: 54, edited: false },
            { id: 456, task_id: 56, content: null, created_at: new Date("2023-07-23T18:37:15Z"), likes: 68, edited: true },
            { id: 457, task_id: 244, content: "The supplier reported a minor issue; the request was delayed. The request was reopened following a duplicate review. The customer asked for a change and the request was closed.", created_at: new Date("2023-10-18T18:40:26Z"), likes: 59, edited: true },
            { id: 458, task_id: 83, content: "Flagged as repeat. The team replaced the transfer. A late session was reopened the same day. A standard follow-up: the order was refunded. A routine follow-up: the order was updated.", created_at: new Date("2023-02-17T21:03:59Z"), likes: 75, edited: true },
            { id: 459, task_id: 54, content: "An operator reported an urgent issue; the delivery was resolved. The booking was reopened — minor case, no further action.", created_at: new Date("2023-07-20T21:01:20Z"), likes: 52, edited: true },
            { id: 460, task_id: 59, content: "A duplicate ticket was reopened the same day. The document was replaced — minor case, no further action.", created_at: new Date("2023-05-13T15:08:05Z"), likes: 70, edited: false },
            { id: 461, task_id: 155, content: "The customer asked for a change and the item was delayed. The appointment was rescheduled after a duplicate check. The record was delayed — standard case, no further action.", created_at: new Date("2023-11-13T19:00:28Z"), likes: 62, edited: false },
            { id: 462, task_id: 81, content: "The courier confirmed the details and the order was updated. Flagged as late. An operator reviewed the document. The refund was replaced after a partial check.", created_at: new Date("2023-07-16T17:38:26Z"), likes: 25, edited: true },
            { id: 463, task_id: 202, content: "An incomplete refund was reopened the same day. The reviewer reported a standard issue; the record was escalated. Flagged as standard. The account owner updated the shipment.", created_at: new Date("2023-11-04T15:16:11Z"), likes: 28, edited: true },
            { id: 464, task_id: 25, content: null, created_at: new Date("2023-08-19T17:32:34Z"), likes: 85, edited: false },
            { id: 465, task_id: 21, content: "Flagged as manual. The reviewer replaced the session. The team reported an automatic issue; the report was rescheduled. Flagged as routine. The reviewer completed the account.", created_at: new Date("2023-07-28T20:06:09Z"), likes: 23, edited: true },
            { id: 466, task_id: 299, content: "No response from the reviewer, so the record was completed. The payment was reviewed — manual case, no further action. The account was confirmed following a minor review. Flagged as minor. The team rescheduled the document.", created_at: new Date("2023-10-09T15:01:14Z"), likes: 41, edited: true },
            { id: 467, task_id: 297, content: "The team asked for a change and the invoice was closed. A late follow-up: the record was rejected.", created_at: new Date("2023-08-25T20:47:58Z"), likes: 43, edited: false },
            { id: 468, task_id: 12, content: "The team reported a routine issue; the report was rescheduled. The shipment was refunded — manual case, no further action. No response from support, so the request was delayed.", created_at: new Date("2023-03-27T15:14:53Z"), likes: 40, edited: true },
            { id: 469, task_id: 208, content: "The request was confirmed following a manual review. The team asked for a change and the payment was reopened. The order was completed following a minor review. A duplicate follow-up: the claim was completed.", created_at: new Date("2023-09-04T13:01:08Z"), likes: 62, edited: true },
            { id: 470, task_id: 147, content: null, created_at: new Date("2023-02-12T20:56:58Z"), likes: 47, edited: true },
            { id: 471, task_id: 218, content: "Support confirmed the details and the document was reopened. A duplicate follow-up: the item was updated. A routine order was resolved the same day.", created_at: new Date("2023-03-13T15:22:31Z"), likes: 49, edited: true },
            { id: 472, task_id: 82, content: "A minor follow-up: the account was replaced. No response from the reviewer, so the record was reviewed. The appointment was approved following an automatic review. The courier asked for a change and the session was processed.", created_at: new Date("2023-05-22T12:54:20Z"), likes: 42, edited: true },
            { id: 473, task_id: 90, content: "No response from the courier, so the claim was confirmed. An urgent follow-up: the request was reopened. A repeat request was processed the same day.", created_at: new Date("2023-04-09T18:00:10Z"), likes: 75, edited: true },
            { id: 474, task_id: 204, content: "The supplier reported a minor issue; the report was rescheduled. A standard session was refunded the same day.", created_at: new Date("2023-01-10T17:17:40Z"), likes: 40, edited: false },
            { id: 475, task_id: 203, content: null, created_at: new Date("2023-11-02T20:26:45Z"), likes: 61, edited: false },
            { id: 476, task_id: 245, content: "An automatic follow-up: the payment was reopened. No response from an operator, so the ticket was reviewed. Flagged as late. An operator completed the report.", created_at: new Date("2023-10-02T11:01:26Z"), likes: 46, edited: false },
            { id: 477, task_id: 116, content: "The customer asked for a change and the item was confirmed. The report was escalated — repeat case, no further action.", created_at: new Date("2023-10-01T19:17:58Z"), likes: 43, edited: true },
            { id: 478, task_id: 203, content: "An automatic follow-up: the item was delayed. Support reported a duplicate issue; the item was rejected. Flagged as minor. An operator rejected the appointment.", created_at: new Date("2023-08-21T17:38:26Z"), likes: 52, edited: true },
            { id: 479, task_id: 239, content: "Flagged as repeat. The courier delayed the order. The supplier confirmed the details and the session was rejected.", created_at: new Date("2023-04-28T15:03:49Z"), likes: 49, edited: false },
            { id: 480, task_id: 88, content: "Support asked for a change and the invoice was resolved. An urgent item was delayed the same day. The courier reported a manual issue; the refund was replaced.", created_at: new Date("2023-04-04T20:28:02Z"), likes: 26, edited: true },
            { id: 481, task_id: 231, content: "The courier reported a late issue; the transfer was approved. The reviewer reported an urgent issue; the order was replaced. The customer reported a manual issue; the record was reopened.", created_at: new Date("2023-02-05T23:04:42Z"), likes: 77, edited: true },
            { id: 482, task_id: 176, content: "The request was closed after a repeat check. Flagged as repeat. Support closed the booking.", created_at: new Date("2023-02-05T21:31:03Z"), likes: 58, edited: false },
            { id: 483, task_id: 262, content: "The team asked for a change and the report was escalated. Flagged as repeat. The team reopened the item.", created_at: new Date("2023-07-15T20:10:43Z"), likes: 59, edited: false },
            { id: 484, task_id: 16, content: "An operator reported an automatic issue; the order was reopened. Support asked for a change and the booking was rescheduled.", created_at: new Date("2023-05-23T17:57:59Z"), likes: 27, edited: false },
            { id: 485, task_id: 109, content: "The payment was rescheduled after an unusual check. The session was completed following a late review. The request was rescheduled after a late check.", created_at: new Date("2023-10-24T15:53:43Z"), likes: 36, edited: false },
            { id: 486, task_id: 280, content: "A standard follow-up: the order was delayed. The claim was escalated after a late check.", created_at: new Date("2023-06-25T10:35:52Z"), likes: 69, edited: true },
            { id: 487, task_id: 149, content: "Flagged as urgent. The courier updated the transfer. The customer confirmed the details and the shipment was rejected. An operator reported a late issue; the shipment was rejected. Flagged as late. Support completed the booking.", created_at: new Date("2023-03-08T15:28:38Z"), likes: 60, edited: false },
            { id: 488, task_id: 13, content: "The account owner asked for a change and the shipment was reviewed. The session was rescheduled after a manual check.", created_at: new Date("2023-06-20T19:10:29Z"), likes: 38, edited: false },
            { id: 489, task_id: 139, content: null, created_at: new Date("2023-10-19T09:35:54Z"), likes: 42, edited: false },
            { id: 490, task_id: 225, content: "The courier confirmed the details and the account was replaced. The reviewer confirmed the details and the document was processed. Flagged as standard. An operator reopened the report.", created_at: new Date("2023-03-03T12:54:08Z"), likes: 35, edited: false },
            { id: 491, task_id: 273, content: "Flagged as late. The account owner completed the appointment. The ticket was reviewed after a repeat check. Flagged as incomplete. The supplier approved the payment. A late follow-up: the payment was escalated.", created_at: new Date("2023-10-09T19:36:18Z"), likes: 54, edited: true },
            { id: 492, task_id: 65, content: "The reviewer confirmed the details and the request was processed. The supplier asked for a change and the delivery was refunded. The account owner reported an incomplete issue; the shipment was escalated.", created_at: new Date("2023-09-04T11:29:16Z"), likes: 26, edited: true },
            { id: 493, task_id: 79, content: "The account was approved following a manual review. The claim was reopened following a routine review.", created_at: new Date("2023-06-13T17:48:18Z"), likes: 22, edited: false },
            { id: 494, task_id: 277, content: "The shipment was reopened following a late review. The shipment was reopened — standard case, no further action. A repeat follow-up: the account was reviewed.", created_at: new Date("2023-02-24T16:53:19Z"), likes: 46, edited: false },
            { id: 495, task_id: 271, content: "The customer reported an automatic issue; the session was replaced. The report was resolved after a minor check.", created_at: new Date("2023-12-26T20:54:36Z"), likes: 67, edited: true },
            { id: 496, task_id: 190, content: "A minor follow-up: the refund was closed. The team asked for a change and the record was confirmed. No response from support, so the transfer was confirmed. The delivery was processed — late case, no further action.", created_at: new Date("2023-02-11T15:39:36Z"), likes: 72, edited: false },
            { id: 497, task_id: 228, content: "Support asked for a change and the item was cancelled. The claim was resolved following an urgent review.", created_at: new Date("2023-04-09T13:05:54Z"), likes: 71, edited: false },
            { id: 498, task_id: 173, content: null, created_at: new Date("2023-02-06T11:47:56Z"), likes: 43, edited: true },
            { id: 499, task_id: 206, content: "The document was rescheduled — duplicate case, no further action. Flagged as repeat. The customer approved the booking. The request was closed — manual case, no further action.", created_at: new Date("2023-02-08T16:07:35Z"), likes: 47, edited: false },
            { id: 500, task_id: 85, content: "The shipment was rejected following a late review. The report was replaced following a standard review.", created_at: new Date("2023-05-27T16:53:41Z"), likes: 48, edited: true },
        ],
    });
    await prisma.users.createMany({
        data: [
            { id: 1, full_name: "Grace Baker", email: "grace.baker@example.com", role: "admin" },
            { id: 2, full_name: "Ethan Reyes", email: "ethan.reyes@example.net", role: "member" },
            { id: 3, full_name: "Rosa Cruz", email: "rosa.cruz@example.org", role: "admin" },
            { id: 4, full_name: "Tomas Davis", email: "tomas.davis@example.org", role: "admin" },
            { id: 5, full_name: "Rafael Wang", email: "rafael.wang@example.com", role: "admin" },
            { id: 6, full_name: "Isaac Lopez", email: "isaac.lopez@example.com", role: "admin" },
            { id: 7, full_name: null, email: null, role: "admin" },
            { id: 8, full_name: "Deniz Patel", email: "deniz.patel@example.net", role: "admin" },
            { id: 9, full_name: "Ibrahim Jensen", email: "ibrahim.jensen@example.com", role: "member" },
            { id: 10, full_name: null, email: null, role: "admin" },
            { id: 11, full_name: null, email: null, role: "member" },
            { id: 12, full_name: "Theo Fischer", email: "theo.fischer@example.com", role: "admin" },
            { id: 13, full_name: "Yara Weber", email: "yara.weber@example.com", role: "member" },
            { id: 14, full_name: "Chen Lee", email: "chen.lee@example.org", role: "admin" },
            { id: 15, full_name: "Diego Hughes", email: "diego.hughes@example.org", role: "admin" },
            { id: 16, full_name: null, email: null, role: "member" },
            { id: 17, full_name: null, email: null, role: "admin" },
            { id: 18, full_name: "Deniz Yilmaz", email: "deniz.yilmaz@example.org", role: "admin" },
            { id: 19, full_name: "Jade Ahmed", email: "jade.ahmed@example.net", role: "admin" },
            { id: 20, full_name: null, email: null, role: "admin" },
            { id: 21, full_name: "Ines Smith", email: "ines.smith@example.org", role: "admin" },
            { id: 22, full_name: "Zara Schneider", email: "zara.schneider@example.com", role: "admin" },
            { id: 23, full_name: "Hana Costa", email: "hana.costa@example.org", role: "admin" },
            { id: 24, full_name: "Sam Bauer", email: "sam.bauer@example.com", role: "admin" },
            { id: 25, full_name: "Alice Baker", email: "alice.baker@example.net", role: "admin" },
            { id: 26, full_name: "Andre Lee", email: "andre.lee@example.com", role: "admin" },
            { id: 27, full_name: "Chloe Sato", email: "chloe.sato@example.net", role: "admin" },
            { id: 28, full_name: "David Singh", email: "david.singh@example.com", role: "admin" },
            { id: 29, full_name: "Diego Young", email: "diego.young@example.org", role: "admin" },
            { id: 30, full_name: "Mei Castro", email: "mei.castro@example.net", role: "admin" },
            { id: 31, full_name: "Nadia Fischer", email: "nadia.fischer@example.com", role: "member" },
            { id: 32, full_name: "Pedro Smith", email: "pedro.smith@example.net", role: "admin" },
            { id: 33, full_name: null, email: null, role: "admin" },
            { id: 34, full_name: "Chen Oliveira", email: null, role: "admin" },
            { id: 35, full_name: "Yara Singh", email: "yara.singh@example.net", role: "admin" },
            { id: 36, full_name: null, email: null, role: "admin" },
            { id: 37, full_name: "Jack Larsen", email: "jack.larsen@example.com", role: "member" },
            { id: 38, full_name: "Elif Chen", email: "elif.chen@example.org", role: "member" },
            { id: 39, full_name: "Mei Castro", email: "mei.castro@example.org", role: "admin" },
            { id: 40, full_name: null, email: null, role: "member" },
            { id: 41, full_name: "Carla Baker", email: "carla.baker@example.net", role: "member" },
            { id: 42, full_name: "Sam Dubois", email: "sam.dubois@example.com", role: "admin" },
            { id: 43, full_name: "Ibrahim Baker", email: "ibrahim.baker@example.org", role: "admin" },
            { id: 44, full_name: "Ana Wilson", email: "ana.wilson@example.net", role: "admin" },
            { id: 45, full_name: "Olivia Khan", email: "olivia.khan@example.org", role: "member" },
            { id: 46, full_name: null, email: null, role: "admin" },
            { id: 47, full_name: "Alice Tanaka", email: "alice.tanaka@example.org", role: "member" },
            { id: 48, full_name: "Amir Weber", email: "amir.weber@example.net", role: "admin" },
            { id: 49, full_name: "Kai Bennett", email: "kai.bennett@example.org", role: "member" },
            { id: 50, full_name: "Felix Miller", email: "felix.miller@example.com", role: "admin" },
        ],
    });
    await prisma.messages.createMany({
        data: [
            { id: 1, sprint_id: 65, sender_id: 38, content: "The team reported a routine issue; the shipment was reviewed. The account owner confirmed the details and the item was updated. An incomplete follow-up: the record was refunded.", sent_at: new Date("2023-01-30T19:23:08Z"), message_type: "update", attachments: 2 },
            { id: 2, sprint_id: 86, sender_id: 15, content: null, sent_at: new Date("2023-03-03T18:33:55Z"), message_type: "update", attachments: 2 },
            { id: 3, sprint_id: 82, sender_id: 10, content: "The transfer was completed after a late check. The team reported a partial issue; the shipment was delayed. A repeat transfer was approved the same day.", sent_at: new Date("2023-06-14T09:11:04Z"), message_type: "feedback", attachments: 3 },
            { id: 4, sprint_id: 75, sender_id: 36, content: "An urgent record was approved the same day. A late follow-up: the item was refunded.", sent_at: new Date("2023-02-10T18:14:34Z"), message_type: "question", attachments: 4 },
            { id: 5, sprint_id: 48, sender_id: 34, content: null, sent_at: new Date("2023-04-29T10:00:48Z"), message_type: "question", attachments: 3 },
            { id: 6, sprint_id: 79, sender_id: 12, content: "The ticket was reopened — unusual case, no further action. The account owner asked for a change and the refund was resolved. The reviewer reported a routine issue; the transfer was updated. An operator asked for a change and the transfer was completed.", sent_at: new Date("2023-04-09T13:19:49Z"), message_type: "update", attachments: 2 },
            { id: 7, sprint_id: 93, sender_id: 24, content: "A partial document was rejected the same day. The reviewer asked for a change and the refund was escalated. The order was reopened after a manual check.", sent_at: new Date("2023-09-13T07:47:44Z"), message_type: "question", attachments: 3 },
            { id: 8, sprint_id: 92, sender_id: 44, content: "Flagged as incomplete. The account owner refunded the record. A duplicate request was escalated the same day. The account owner asked for a change and the delivery was reviewed.", sent_at: new Date("2023-01-02T13:59:19Z"), message_type: "question", attachments: 2 },
            { id: 9, sprint_id: 45, sender_id: 22, content: "The order was completed — partial case, no further action. Flagged as standard. The team refunded the report. Flagged as manual. The reviewer rescheduled the item.", sent_at: new Date("2023-02-09T10:08:34Z"), message_type: "update", attachments: 2 },
            { id: 10, sprint_id: 49, sender_id: 25, content: "The team asked for a change and the claim was updated. Flagged as partial. The team processed the document. No response from the customer, so the item was replaced. Support asked for a change and the ticket was rescheduled.", sent_at: new Date("2023-08-19T21:50:47Z"), message_type: "question", attachments: 1 },
            { id: 11, sprint_id: 40, sender_id: 43, content: "The account was escalated following a late review. Support confirmed the details and the shipment was rejected. The delivery was completed after a duplicate check.", sent_at: new Date("2023-01-27T18:34:08Z"), message_type: "question", attachments: 2 },
            { id: 12, sprint_id: 32, sender_id: 11, content: null, sent_at: new Date("2023-02-28T15:54:04Z"), message_type: "feedback", attachments: 2 },
            { id: 13, sprint_id: 76, sender_id: 33, content: "An automatic invoice was processed the same day. A late follow-up: the shipment was confirmed. An urgent follow-up: the claim was confirmed.", sent_at: new Date("2023-03-20T22:25:15Z"), message_type: "update", attachments: 3 },
            { id: 14, sprint_id: 4, sender_id: 27, content: "The request was delayed following an urgent review. The team asked for a change and the item was processed.", sent_at: new Date("2023-06-25T11:20:40Z"), message_type: "feedback", attachments: 3 },
            { id: 15, sprint_id: 50, sender_id: 1, content: "The appointment was delayed following a repeat review. The transfer was approved after a manual check.", sent_at: new Date("2023-07-29T08:07:15Z"), message_type: "feedback", attachments: 3 },
            { id: 16, sprint_id: 82, sender_id: 7, content: null, sent_at: new Date("2023-01-25T02:36:46Z"), message_type: "update", attachments: 3 },
            { id: 17, sprint_id: 66, sender_id: 38, content: "An operator confirmed the details and the order was approved. The item was approved — routine case, no further action. A duplicate item was rescheduled the same day. The invoice was delayed following an automatic review.", sent_at: new Date("2023-03-04T19:49:14Z"), message_type: "question", attachments: 1 },
            { id: 18, sprint_id: 72, sender_id: 46, content: "The payment was delayed — duplicate case, no further action. An automatic follow-up: the document was processed.", sent_at: new Date("2023-01-30T14:43:40Z"), message_type: "update", attachments: 1 },
            { id: 19, sprint_id: 67, sender_id: 38, content: "The report was rescheduled — minor case, no further action. The appointment was completed following an automatic review. The customer asked for a change and the order was refunded. The shipment was completed — minor case, no further action.", sent_at: new Date("2023-10-05T20:27:54Z"), message_type: "question", attachments: 2 },
            { id: 20, sprint_id: 44, sender_id: 17, content: "A manual follow-up: the booking was closed. The document was reviewed following a duplicate review. A standard follow-up: the refund was reopened.", sent_at: new Date("2023-10-31T05:18:03Z"), message_type: "feedback", attachments: 3 },
            { id: 21, sprint_id: 100, sender_id: 8, content: "The appointment was replaced after an automatic check. Support asked for a change and the claim was refunded.", sent_at: new Date("2023-01-06T06:48:17Z"), message_type: "update", attachments: 4 },
            { id: 22, sprint_id: 56, sender_id: 6, content: "Flagged as automatic. The account owner refunded the ticket. An urgent item was updated the same day. The team reported a standard issue; the ticket was completed.", sent_at: new Date("2023-11-26T09:46:21Z"), message_type: "question", attachments: 4 },
            { id: 23, sprint_id: 89, sender_id: 50, content: "An urgent follow-up: the account was completed. The appointment was reopened after an incomplete check. The request was rescheduled — manual case, no further action.", sent_at: new Date("2023-02-14T22:44:56Z"), message_type: "update", attachments: 3 },
            { id: 24, sprint_id: 4, sender_id: 19, content: null, sent_at: new Date("2023-01-24T12:26:37Z"), message_type: "update", attachments: 2 },
            { id: 25, sprint_id: 91, sender_id: 44, content: "The booking was rescheduled following a duplicate review. A minor follow-up: the claim was closed. The customer asked for a change and the order was updated. The record was processed following a manual review.", sent_at: new Date("2023-03-04T12:44:48Z"), message_type: "update", attachments: 2 },
            { id: 26, sprint_id: 31, sender_id: 5, content: "The record was refunded following a repeat review. A minor order was cancelled the same day. The booking was updated following a routine review. The item was processed after a duplicate check.", sent_at: new Date("2023-02-08T09:49:08Z"), message_type: "update", attachments: 3 },
            { id: 27, sprint_id: 83, sender_id: 2, content: "An automatic follow-up: the record was escalated. The booking was reopened after a duplicate check. The team asked for a change and the item was updated.", sent_at: new Date("2023-09-24T09:18:09Z"), message_type: "feedback", attachments: 3 },
            { id: 28, sprint_id: 81, sender_id: 44, content: "A repeat delivery was rejected the same day. An automatic item was rejected the same day. The appointment was cancelled — repeat case, no further action. The record was rejected after an incomplete check.", sent_at: new Date("2023-11-08T01:42:52Z"), message_type: "update", attachments: 3 },
            { id: 29, sprint_id: 96, sender_id: 2, content: "The payment was updated after a routine check. An operator confirmed the details and the appointment was delayed. The report was completed following a duplicate review. Flagged as manual. An operator reviewed the ticket.", sent_at: new Date("2023-12-11T17:44:08Z"), message_type: "question", attachments: 2 },
            { id: 30, sprint_id: 41, sender_id: 30, content: "The booking was closed — minor case, no further action. The supplier confirmed the details and the invoice was closed. Flagged as late. The courier updated the shipment.", sent_at: new Date("2023-06-14T07:13:41Z"), message_type: "feedback", attachments: 3 },
            { id: 31, sprint_id: 25, sender_id: 24, content: "The account was completed following an incomplete review. The record was delayed following an urgent review.", sent_at: new Date("2023-06-19T22:20:23Z"), message_type: "update", attachments: 2 },
            { id: 32, sprint_id: 55, sender_id: 1, content: "The supplier reported a standard issue; the record was reopened. Flagged as minor. The customer approved the document. The request was rescheduled following a partial review. Flagged as standard. The supplier delayed the delivery.", sent_at: new Date("2023-05-30T18:30:31Z"), message_type: "question", attachments: 2 },
            { id: 33, sprint_id: 70, sender_id: 6, content: "The report was processed after an incomplete check. A minor appointment was replaced the same day.", sent_at: new Date("2023-10-30T22:29:40Z"), message_type: "update", attachments: 3 },
            { id: 34, sprint_id: 41, sender_id: 5, content: "A manual record was rejected the same day. No response from an operator, so the record was approved. A minor item was closed the same day. A duplicate follow-up: the report was rejected.", sent_at: new Date("2023-04-12T06:06:14Z"), message_type: "question", attachments: 2 },
            { id: 35, sprint_id: 28, sender_id: 23, content: "The refund was replaced — routine case, no further action. A partial session was completed the same day. Flagged as routine. The account owner completed the record.", sent_at: new Date("2023-11-24T17:56:56Z"), message_type: "question", attachments: 1 },
            { id: 36, sprint_id: 56, sender_id: 8, content: "The reviewer asked for a change and the shipment was confirmed. Support reported an urgent issue; the record was approved.", sent_at: new Date("2023-09-16T19:53:27Z"), message_type: "question", attachments: 4 },
            { id: 37, sprint_id: 28, sender_id: 3, content: "The supplier reported a late issue; the item was updated. The claim was replaced after a partial check. The reviewer asked for a change and the ticket was confirmed. The supplier asked for a change and the account was escalated.", sent_at: new Date("2023-04-21T19:17:24Z"), message_type: "update", attachments: 2 },
            { id: 38, sprint_id: 80, sender_id: 29, content: "Flagged as partial. The courier rescheduled the invoice. The account owner reported an automatic issue; the request was updated. No response from the team, so the delivery was approved. A manual transfer was reviewed the same day.", sent_at: new Date("2023-04-07T18:26:54Z"), message_type: "question", attachments: 2 },
            { id: 39, sprint_id: 11, sender_id: 28, content: "An urgent appointment was reviewed the same day. The order was approved — unusual case, no further action. The account was completed — repeat case, no further action. A standard follow-up: the refund was resolved.", sent_at: new Date("2023-11-15T05:20:52Z"), message_type: "feedback", attachments: 3 },
            { id: 40, sprint_id: 72, sender_id: 28, content: "Support asked for a change and the document was reopened. Flagged as standard. The courier cancelled the shipment. The transfer was processed following a repeat review.", sent_at: new Date("2023-11-10T09:44:57Z"), message_type: "update", attachments: 2 },
            { id: 41, sprint_id: 5, sender_id: 7, content: "The ticket was approved after a late check. The invoice was completed after a repeat check.", sent_at: new Date("2023-05-13T12:39:12Z"), message_type: "question", attachments: 2 },
            { id: 42, sprint_id: 93, sender_id: 32, content: "The payment was processed — incomplete case, no further action. The refund was delayed following an urgent review. An operator confirmed the details and the invoice was closed.", sent_at: new Date("2023-11-25T22:02:34Z"), message_type: "question", attachments: 3 },
            { id: 43, sprint_id: 86, sender_id: 24, content: "The invoice was reopened following an incomplete review. The customer reported an incomplete issue; the refund was escalated. The account was processed following a minor review.", sent_at: new Date("2023-06-17T10:21:51Z"), message_type: "question", attachments: 2 },
            { id: 44, sprint_id: 29, sender_id: 46, content: "An urgent delivery was processed the same day. A minor transfer was resolved the same day.", sent_at: new Date("2023-10-24T18:08:12Z"), message_type: "update", attachments: 3 },
            { id: 45, sprint_id: 64, sender_id: 8, content: "The claim was escalated after an urgent check. No response from the reviewer, so the payment was updated. The item was reopened after a repeat check. The invoice was rescheduled — minor case, no further action.", sent_at: new Date("2023-08-07T17:55:08Z"), message_type: "update", attachments: 3 },
            { id: 46, sprint_id: 98, sender_id: 45, content: "The ticket was closed after an incomplete check. Support reported a manual issue; the refund was delayed.", sent_at: new Date("2023-02-27T14:31:12Z"), message_type: "update", attachments: 2 },
            { id: 47, sprint_id: 3, sender_id: 38, content: null, sent_at: new Date("2023-11-25T00:43:48Z"), message_type: "feedback", attachments: 2 },
            { id: 48, sprint_id: 62, sender_id: 18, content: "An incomplete follow-up: the report was escalated. The delivery was cancelled — standard case, no further action.", sent_at: new Date("2023-05-09T15:57:21Z"), message_type: "update", attachments: 1 },
            { id: 49, sprint_id: 79, sender_id: 6, content: "The account owner asked for a change and the account was confirmed. A manual follow-up: the claim was replaced. A partial follow-up: the request was updated.", sent_at: new Date("2023-03-05T13:54:40Z"), message_type: "question", attachments: 2 },
            { id: 50, sprint_id: 47, sender_id: 37, content: "An urgent session was rescheduled the same day. The report was delayed — automatic case, no further action. No response from the team, so the payment was approved. The courier reported an urgent issue; the request was rescheduled.", sent_at: new Date("2023-06-15T19:47:54Z"), message_type: "update", attachments: 2 },
            { id: 51, sprint_id: 30, sender_id: 2, content: "Support asked for a change and the session was rescheduled. An operator asked for a change and the record was rescheduled. A minor follow-up: the session was rejected. Flagged as duplicate. The account owner rejected the transfer.", sent_at: new Date("2023-01-24T17:31:27Z"), message_type: "update", attachments: 2 },
            { id: 52, sprint_id: 29, sender_id: 48, content: "Flagged as urgent. The team rescheduled the order. The document was resolved after a repeat check. No response from support, so the report was cancelled.", sent_at: new Date("2023-08-22T17:09:59Z"), message_type: "update", attachments: 2 },
            { id: 53, sprint_id: 90, sender_id: 24, content: "The payment was replaced following a standard review. The booking was delayed following a late review.", sent_at: new Date("2023-01-02T12:35:43Z"), message_type: "update", attachments: 4 },
            { id: 54, sprint_id: 18, sender_id: 35, content: null, sent_at: new Date("2023-02-02T16:53:43Z"), message_type: "update", attachments: 4 },
            { id: 55, sprint_id: 24, sender_id: 8, content: "Support confirmed the details and the record was refunded. The session was escalated after a minor check.", sent_at: new Date("2023-06-22T22:11:09Z"), message_type: "update", attachments: 3 },
            { id: 56, sprint_id: 46, sender_id: 33, content: "The shipment was escalated after an automatic check. Flagged as routine. The courier approved the request. The claim was refunded after a routine check. A manual invoice was rescheduled the same day.", sent_at: new Date("2023-01-13T22:43:31Z"), message_type: "feedback", attachments: 1 },
            { id: 57, sprint_id: 93, sender_id: 14, content: "The transfer was completed following an incomplete review. The shipment was rejected after a repeat check.", sent_at: new Date("2023-09-12T15:14:14Z"), message_type: "update", attachments: 3 },
            { id: 58, sprint_id: 8, sender_id: 25, content: "The supplier asked for a change and the appointment was cancelled. A minor report was updated the same day. An urgent follow-up: the claim was processed. The reviewer confirmed the details and the account was refunded.", sent_at: new Date("2023-01-08T13:56:47Z"), message_type: "feedback", attachments: 4 },
            { id: 59, sprint_id: 70, sender_id: 42, content: "The supplier reported a minor issue; the document was refunded. The refund was cancelled following a minor review.", sent_at: new Date("2023-07-02T21:01:15Z"), message_type: "update", attachments: 3 },
            { id: 60, sprint_id: 41, sender_id: 21, content: "Flagged as incomplete. Support approved the session. An operator asked for a change and the transfer was approved.", sent_at: new Date("2023-11-21T01:12:52Z"), message_type: "feedback", attachments: 3 },
            { id: 61, sprint_id: 96, sender_id: 28, content: "The account owner confirmed the details and the account was closed. The document was delayed after an unusual check.", sent_at: new Date("2023-06-24T19:14:02Z"), message_type: "update", attachments: 2 },
            { id: 62, sprint_id: 40, sender_id: 47, content: "The report was reopened — duplicate case, no further action. A repeat shipment was confirmed the same day. Flagged as late. The courier confirmed the order. The shipment was processed following a partial review.", sent_at: new Date("2023-09-29T22:39:25Z"), message_type: "update", attachments: 3 },
            { id: 63, sprint_id: 80, sender_id: 19, content: "Flagged as incomplete. The team replaced the record. The payment was escalated following a manual review.", sent_at: new Date("2023-03-27T19:00:55Z"), message_type: "question", attachments: 4 },
            { id: 64, sprint_id: 98, sender_id: 38, content: "An unusual invoice was confirmed the same day. Support asked for a change and the session was updated. No response from the courier, so the booking was confirmed.", sent_at: new Date("2023-12-22T17:12:07Z"), message_type: "update", attachments: 3 },
            { id: 65, sprint_id: 41, sender_id: 17, content: "Flagged as minor. The team approved the session. The reviewer confirmed the details and the delivery was rejected. Flagged as standard. The team processed the refund. The claim was reviewed after an urgent check.", sent_at: new Date("2023-02-22T11:09:43Z"), message_type: "question", attachments: 3 },
            { id: 66, sprint_id: 48, sender_id: 29, content: null, sent_at: new Date("2023-01-14T19:26:11Z"), message_type: "update", attachments: 3 },
            { id: 67, sprint_id: 79, sender_id: 20, content: "Flagged as partial. Support rescheduled the booking. The supplier confirmed the details and the invoice was confirmed. A routine follow-up: the payment was confirmed.", sent_at: new Date("2023-07-19T15:16:09Z"), message_type: "feedback", attachments: 2 },
            { id: 68, sprint_id: 17, sender_id: 25, content: null, sent_at: new Date("2023-08-06T10:27:29Z"), message_type: "question", attachments: 2 },
            { id: 69, sprint_id: 14, sender_id: 4, content: "Flagged as urgent. The account owner reopened the appointment. The supplier confirmed the details and the request was rescheduled.", sent_at: new Date("2023-05-11T11:53:47Z"), message_type: "question", attachments: 2 },
            { id: 70, sprint_id: 34, sender_id: 21, content: "No response from the courier, so the request was updated. Support reported a minor issue; the appointment was delayed.", sent_at: new Date("2023-07-24T20:50:34Z"), message_type: "question", attachments: 2 },
            { id: 71, sprint_id: 45, sender_id: 28, content: "The document was completed — manual case, no further action. The account owner confirmed the details and the payment was approved. The shipment was processed — unusual case, no further action. No response from the supplier, so the delivery was closed.", sent_at: new Date("2023-06-22T14:51:53Z"), message_type: "question", attachments: 3 },
            { id: 72, sprint_id: 73, sender_id: 26, content: "The supplier reported a duplicate issue; the ticket was escalated. The account owner asked for a change and the shipment was rescheduled. A late follow-up: the session was completed. The team asked for a change and the ticket was resolved.", sent_at: new Date("2023-09-11T19:05:07Z"), message_type: "update", attachments: 2 },
            { id: 73, sprint_id: 90, sender_id: 41, content: "Flagged as late. The courier replaced the ticket. The refund was replaced after a partial check. A standard follow-up: the booking was rejected.", sent_at: new Date("2023-05-31T11:44:37Z"), message_type: "question", attachments: 3 },
            { id: 74, sprint_id: 9, sender_id: 15, content: "The supplier confirmed the details and the invoice was reviewed. An incomplete follow-up: the account was confirmed.", sent_at: new Date("2023-07-21T14:15:06Z"), message_type: "question", attachments: 3 },
            { id: 75, sprint_id: 51, sender_id: 31, content: "The report was cancelled after a late check. The shipment was completed following a late review. An operator asked for a change and the session was delayed.", sent_at: new Date("2023-12-04T15:51:31Z"), message_type: "update", attachments: 2 },
            { id: 76, sprint_id: 15, sender_id: 50, content: "The supplier reported an incomplete issue; the shipment was updated. The order was updated — automatic case, no further action. The customer reported a standard issue; the report was cancelled.", sent_at: new Date("2023-08-07T07:02:26Z"), message_type: "update", attachments: 1 },
            { id: 77, sprint_id: 27, sender_id: 34, content: null, sent_at: new Date("2023-11-28T19:06:50Z"), message_type: "feedback", attachments: 2 },
            { id: 78, sprint_id: 12, sender_id: 26, content: "The invoice was confirmed — incomplete case, no further action. The transfer was rescheduled — unusual case, no further action. An unusual delivery was processed the same day.", sent_at: new Date("2023-05-19T21:06:44Z"), message_type: "update", attachments: 2 },
            { id: 79, sprint_id: 70, sender_id: 29, content: null, sent_at: new Date("2023-01-05T12:43:37Z"), message_type: "question", attachments: 3 },
            { id: 80, sprint_id: 5, sender_id: 49, content: "The refund was closed after an urgent check. The payment was completed — routine case, no further action. The courier confirmed the details and the report was delayed.", sent_at: new Date("2023-09-27T13:19:44Z"), message_type: "update", attachments: 2 },
            { id: 81, sprint_id: 26, sender_id: 35, content: "Flagged as standard. The team cancelled the invoice. Flagged as duplicate. Support refunded the account. No response from an operator, so the account was rejected.", sent_at: new Date("2023-12-01T17:54:10Z"), message_type: "update", attachments: 2 },
            { id: 82, sprint_id: 76, sender_id: 28, content: "The document was reopened after an unusual check. A routine report was rejected the same day. The account was closed — incomplete case, no further action. The session was refunded following a routine review.", sent_at: new Date("2023-11-03T10:34:19Z"), message_type: "question", attachments: 3 },
            { id: 83, sprint_id: 100, sender_id: 44, content: "The account owner asked for a change and the delivery was processed. Flagged as automatic. The supplier processed the appointment. The item was resolved following an incomplete review.", sent_at: new Date("2023-06-20T10:05:12Z"), message_type: "update", attachments: 1 },
            { id: 84, sprint_id: 2, sender_id: 27, content: "An urgent follow-up: the request was rescheduled. The customer confirmed the details and the transfer was closed.", sent_at: new Date("2023-04-14T18:16:10Z"), message_type: "update", attachments: 2 },
            { id: 85, sprint_id: 70, sender_id: 12, content: "The reviewer reported an automatic issue; the order was reviewed. A partial follow-up: the claim was reviewed. The delivery was replaced — late case, no further action.", sent_at: new Date("2023-02-02T08:16:52Z"), message_type: "update", attachments: 3 },
            { id: 86, sprint_id: 21, sender_id: 34, content: "The claim was replaced following a duplicate review. The document was closed after an urgent check. The supplier confirmed the details and the appointment was confirmed.", sent_at: new Date("2023-06-01T11:54:51Z"), message_type: "question", attachments: 3 },
            { id: 87, sprint_id: 82, sender_id: 30, content: "A partial delivery was approved the same day. Flagged as minor. The reviewer rescheduled the payment.", sent_at: new Date("2023-05-25T13:32:49Z"), message_type: "update", attachments: 2 },
            { id: 88, sprint_id: 23, sender_id: 39, content: "The courier reported an unusual issue; the account was escalated. A duplicate payment was updated the same day. The account owner confirmed the details and the appointment was reopened.", sent_at: new Date("2023-12-24T09:06:42Z"), message_type: "update", attachments: 4 },
            { id: 89, sprint_id: 64, sender_id: 24, content: "A late follow-up: the appointment was reopened. The payment was reviewed — automatic case, no further action.", sent_at: new Date("2023-11-12T20:27:32Z"), message_type: "question", attachments: 3 },
            { id: 90, sprint_id: 18, sender_id: 26, content: "An incomplete follow-up: the booking was rescheduled. The delivery was reviewed following a repeat review. A routine refund was replaced the same day.", sent_at: new Date("2023-07-10T22:45:33Z"), message_type: "update", attachments: 4 },
            { id: 91, sprint_id: 86, sender_id: 2, content: "The account was updated — duplicate case, no further action. A repeat follow-up: the delivery was escalated.", sent_at: new Date("2023-01-17T07:56:16Z"), message_type: "update", attachments: 2 },
            { id: 92, sprint_id: 83, sender_id: 26, content: "The team reported a minor issue; the item was refunded. The reviewer confirmed the details and the invoice was refunded.", sent_at: new Date("2023-03-20T14:36:35Z"), message_type: "update", attachments: 2 },
            { id: 93, sprint_id: 22, sender_id: 9, content: "The record was escalated after an incomplete check. The ticket was cancelled following a late review. Flagged as minor. Support refunded the claim.", sent_at: new Date("2023-10-30T19:28:23Z"), message_type: "update", attachments: 3 },
            { id: 94, sprint_id: 25, sender_id: 12, content: "The request was confirmed after an automatic check. Flagged as standard. The team approved the delivery. The supplier confirmed the details and the appointment was resolved. Flagged as automatic. The account owner delayed the payment.", sent_at: new Date("2023-11-25T10:17:31Z"), message_type: "question", attachments: 3 },
            { id: 95, sprint_id: 49, sender_id: 18, content: null, sent_at: new Date("2023-09-05T09:53:21Z"), message_type: "question", attachments: 1 },
            { id: 96, sprint_id: 58, sender_id: 10, content: "The customer asked for a change and the delivery was rescheduled. The order was replaced after an urgent check. Support reported a late issue; the refund was rejected.", sent_at: new Date("2023-02-16T16:56:37Z"), message_type: "update", attachments: 2 },
            { id: 97, sprint_id: 73, sender_id: 8, content: "The booking was updated — unusual case, no further action. Flagged as partial. The courier closed the record. A minor claim was completed the same day. The reviewer reported a duplicate issue; the document was confirmed.", sent_at: new Date("2023-07-25T10:22:48Z"), message_type: "feedback", attachments: 2 },
            { id: 98, sprint_id: 72, sender_id: 36, content: "An urgent delivery was resolved the same day. The account was refunded after a manual check. The booking was refunded following an urgent review.", sent_at: new Date("2023-08-26T15:07:57Z"), message_type: "question", attachments: 2 },
            { id: 99, sprint_id: 6, sender_id: 30, content: "The account owner reported a routine issue; the transfer was rejected. The transfer was approved following a routine review. The transfer was reviewed — standard case, no further action.", sent_at: new Date("2023-12-23T20:54:41Z"), message_type: "feedback", attachments: 2 },
            { id: 100, sprint_id: 70, sender_id: 22, content: "Flagged as unusual. The team completed the transfer. A routine follow-up: the item was confirmed. The appointment was processed — urgent case, no further action. The shipment was cancelled after a repeat check.", sent_at: new Date("2023-07-09T14:58:40Z"), message_type: "update", attachments: 2 },
            { id: 101, sprint_id: 51, sender_id: 50, content: null, sent_at: new Date("2023-06-15T08:03:14Z"), message_type: "update", attachments: 2 },
            { id: 102, sprint_id: 37, sender_id: 48, content: "The supplier asked for a change and the refund was closed. Flagged as incomplete. Support closed the account. The document was delayed after an unusual check. A duplicate item was updated the same day.", sent_at: new Date("2023-11-14T09:57:36Z"), message_type: "question", attachments: 2 },
            { id: 103, sprint_id: 45, sender_id: 26, content: "The team reported an automatic issue; the report was rejected. The shipment was delayed after a partial check.", sent_at: new Date("2023-01-09T09:38:26Z"), message_type: "feedback", attachments: 4 },
            { id: 104, sprint_id: 3, sender_id: 2, content: "An operator confirmed the details and the shipment was closed. Flagged as duplicate. The reviewer closed the record. Flagged as standard. The reviewer escalated the refund.", sent_at: new Date("2023-10-23T18:01:29Z"), message_type: "update", attachments: 3 },
            { id: 105, sprint_id: 79, sender_id: 46, content: "An operator asked for a change and the appointment was resolved. An automatic follow-up: the delivery was completed. No response from the supplier, so the request was delayed. A manual follow-up: the document was escalated.", sent_at: new Date("2023-03-11T11:43:30Z"), message_type: "question", attachments: 2 },
            { id: 106, sprint_id: 84, sender_id: 27, content: "The account owner asked for a change and the payment was rescheduled. The courier confirmed the details and the ticket was delayed. The supplier asked for a change and the claim was escalated. The account owner asked for a change and the document was cancelled.", sent_at: new Date("2023-09-26T08:44:30Z"), message_type: "update", attachments: 2 },
            { id: 107, sprint_id: 77, sender_id: 33, content: null, sent_at: new Date("2023-01-01T21:14:04Z"), message_type: "update", attachments: 4 },
            { id: 108, sprint_id: 19, sender_id: 23, content: "The team confirmed the details and the claim was refunded. The customer confirmed the details and the document was updated. The appointment was approved — urgent case, no further action.", sent_at: new Date("2023-02-02T10:23:12Z"), message_type: "question", attachments: 3 },
            { id: 109, sprint_id: 66, sender_id: 43, content: "No response from an operator, so the ticket was updated. A repeat follow-up: the payment was escalated. The item was processed — unusual case, no further action.", sent_at: new Date("2023-10-26T12:41:02Z"), message_type: "feedback", attachments: 3 },
            { id: 110, sprint_id: 70, sender_id: 32, content: "The order was cancelled following an urgent review. A partial follow-up: the invoice was resolved. A manual record was reviewed the same day. The session was closed — routine case, no further action.", sent_at: new Date("2023-04-20T19:33:32Z"), message_type: "question", attachments: 2 },
            { id: 111, sprint_id: 59, sender_id: 42, content: "An automatic session was resolved the same day. The account was escalated after a routine check.", sent_at: new Date("2023-02-28T20:33:20Z"), message_type: "update", attachments: 2 },
            { id: 112, sprint_id: 66, sender_id: 11, content: "No response from the customer, so the request was reviewed. The claim was reviewed — duplicate case, no further action.", sent_at: new Date("2023-08-21T16:31:56Z"), message_type: "question", attachments: 2 },
            { id: 113, sprint_id: 59, sender_id: 30, content: null, sent_at: new Date("2023-04-02T21:59:46Z"), message_type: "feedback", attachments: 2 },
            { id: 114, sprint_id: 39, sender_id: 41, content: "Flagged as unusual. The account owner delayed the record. No response from support, so the payment was closed. A standard ticket was approved the same day. Flagged as repeat. An operator reviewed the account.", sent_at: new Date("2023-04-21T12:01:39Z"), message_type: "question", attachments: 2 },
            { id: 115, sprint_id: 2, sender_id: 19, content: "The invoice was reviewed after a repeat check. The courier reported a partial issue; the item was reviewed. An automatic follow-up: the ticket was escalated.", sent_at: new Date("2023-12-19T08:33:28Z"), message_type: "feedback", attachments: 2 },
            { id: 116, sprint_id: 89, sender_id: 37, content: "The ticket was escalated after a late check. The courier asked for a change and the item was delayed.", sent_at: new Date("2023-10-30T12:16:14Z"), message_type: "question", attachments: 3 },
            { id: 117, sprint_id: 35, sender_id: 28, content: "The transfer was reviewed after an incomplete check. The account owner confirmed the details and the report was reopened. The order was reopened — repeat case, no further action.", sent_at: new Date("2023-04-08T16:26:22Z"), message_type: "update", attachments: 3 },
            { id: 118, sprint_id: 40, sender_id: 23, content: "A repeat follow-up: the transfer was resolved. The session was approved after a minor check. No response from the reviewer, so the report was reviewed. The reviewer asked for a change and the ticket was completed.", sent_at: new Date("2023-07-22T18:06:12Z"), message_type: "update", attachments: 3 },
            { id: 119, sprint_id: 47, sender_id: 30, content: "The delivery was delayed following an unusual review. The team confirmed the details and the report was confirmed. Flagged as unusual. The customer confirmed the ticket. A repeat request was updated the same day.", sent_at: new Date("2023-01-15T16:06:27Z"), message_type: "question", attachments: 3 },
            { id: 120, sprint_id: 77, sender_id: 32, content: "The account owner reported a routine issue; the session was refunded. The shipment was approved — manual case, no further action. A minor account was updated the same day. The customer asked for a change and the refund was reopened.", sent_at: new Date("2023-11-03T09:14:48Z"), message_type: "update", attachments: 3 },
            { id: 121, sprint_id: 34, sender_id: 21, content: "Flagged as unusual. An operator resolved the record. The booking was reviewed — routine case, no further action. Support reported a partial issue; the order was reopened. The document was replaced — routine case, no further action.", sent_at: new Date("2023-03-11T01:14:28Z"), message_type: "feedback", attachments: 3 },
            { id: 122, sprint_id: 85, sender_id: 31, content: "The invoice was reopened after a standard check. The team confirmed the details and the account was completed.", sent_at: new Date("2023-03-31T16:41:21Z"), message_type: "question", attachments: 2 },
            { id: 123, sprint_id: 76, sender_id: 21, content: "The account was reviewed after a minor check. An urgent appointment was refunded the same day. The request was resolved — automatic case, no further action.", sent_at: new Date("2023-12-20T21:01:48Z"), message_type: "update", attachments: 3 },
            { id: 124, sprint_id: 80, sender_id: 43, content: "A routine shipment was completed the same day. No response from an operator, so the claim was completed. The customer reported a duplicate issue; the appointment was replaced. The supplier reported a standard issue; the payment was updated.", sent_at: new Date("2023-06-10T20:03:14Z"), message_type: "update", attachments: 2 },
            { id: 125, sprint_id: 21, sender_id: 37, content: "The courier asked for a change and the refund was reviewed. An automatic ticket was delayed the same day. The account was escalated — standard case, no further action. Flagged as incomplete. An operator reopened the request.", sent_at: new Date("2023-01-26T11:20:56Z"), message_type: "question", attachments: 4 },
            { id: 126, sprint_id: 57, sender_id: 20, content: "The supplier confirmed the details and the item was reviewed. The team confirmed the details and the order was reviewed.", sent_at: new Date("2023-09-02T01:13:49Z"), message_type: "update", attachments: 2 },
            { id: 127, sprint_id: 43, sender_id: 36, content: "Flagged as late. The supplier completed the transfer. No response from the courier, so the order was escalated. A manual delivery was resolved the same day. No response from the reviewer, so the payment was completed.", sent_at: new Date("2023-03-16T11:58:10Z"), message_type: "update", attachments: 3 },
            { id: 128, sprint_id: 88, sender_id: 22, content: "No response from an operator, so the appointment was delayed. Flagged as partial. The account owner cancelled the record.", sent_at: new Date("2023-04-11T14:05:00Z"), message_type: "question", attachments: 2 },
            { id: 129, sprint_id: 17, sender_id: 38, content: "A repeat follow-up: the order was closed. Support asked for a change and the transfer was refunded. No response from the account owner, so the transfer was reopened.", sent_at: new Date("2023-01-09T20:17:22Z"), message_type: "question", attachments: 2 },
            { id: 130, sprint_id: 34, sender_id: 6, content: "The order was confirmed — routine case, no further action. The record was updated following an urgent review. The account owner asked for a change and the invoice was reopened.", sent_at: new Date("2023-11-05T10:37:42Z"), message_type: "question", attachments: 2 },
            { id: 131, sprint_id: 23, sender_id: 49, content: "The delivery was confirmed following a partial review. The payment was processed — incomplete case, no further action. Flagged as unusual. The team updated the shipment.", sent_at: new Date("2023-12-10T13:16:17Z"), message_type: "update", attachments: 4 },
            { id: 132, sprint_id: 24, sender_id: 23, content: "The supplier asked for a change and the payment was reviewed. Flagged as late. Support closed the report.", sent_at: new Date("2023-06-05T20:55:44Z"), message_type: "question", attachments: 3 },
            { id: 133, sprint_id: 77, sender_id: 28, content: "An operator asked for a change and the session was cancelled. The delivery was rescheduled after an unusual check. The delivery was rescheduled — partial case, no further action.", sent_at: new Date("2023-07-02T19:54:53Z"), message_type: "update", attachments: 3 },
            { id: 134, sprint_id: 20, sender_id: 44, content: null, sent_at: new Date("2023-04-25T11:30:40Z"), message_type: "question", attachments: 3 },
            { id: 135, sprint_id: 26, sender_id: 24, content: "Flagged as routine. The reviewer delayed the appointment. No response from the customer, so the record was approved. No response from the courier, so the document was reopened.", sent_at: new Date("2023-08-05T05:22:27Z"), message_type: "question", attachments: 1 },
            { id: 136, sprint_id: 52, sender_id: 46, content: "An operator asked for a change and the report was approved. The courier reported an urgent issue; the order was closed. An incomplete follow-up: the refund was completed. Flagged as routine. The courier approved the session.", sent_at: new Date("2023-04-09T23:17:56Z"), message_type: "update", attachments: 2 },
            { id: 137, sprint_id: 99, sender_id: 19, content: "A partial delivery was processed the same day. Flagged as standard. The customer cancelled the booking. The customer asked for a change and the invoice was reviewed. A standard record was updated the same day.", sent_at: new Date("2023-10-29T08:32:13Z"), message_type: "update", attachments: 3 },
            { id: 138, sprint_id: 16, sender_id: 37, content: "A partial follow-up: the report was reopened. An automatic account was delayed the same day.", sent_at: new Date("2023-04-15T18:39:54Z"), message_type: "question", attachments: 2 },
            { id: 139, sprint_id: 24, sender_id: 10, content: "Support asked for a change and the document was closed. The order was confirmed after an unusual check.", sent_at: new Date("2023-06-28T20:12:41Z"), message_type: "update", attachments: 4 },
            { id: 140, sprint_id: 10, sender_id: 14, content: "Support confirmed the details and the refund was completed. An operator asked for a change and the shipment was processed. Flagged as late. The reviewer replaced the payment.", sent_at: new Date("2023-10-29T20:28:34Z"), message_type: "feedback", attachments: 1 },
            { id: 141, sprint_id: 72, sender_id: 23, content: "The document was confirmed after a duplicate check. The team asked for a change and the item was rejected. The record was rejected — partial case, no further action. Flagged as manual. The supplier closed the order.", sent_at: new Date("2023-02-18T15:38:57Z"), message_type: "feedback", attachments: 2 },
            { id: 142, sprint_id: 39, sender_id: 14, content: "The payment was cancelled after a routine check. The item was approved — partial case, no further action.", sent_at: new Date("2023-10-07T13:02:48Z"), message_type: "question", attachments: 1 },
            { id: 143, sprint_id: 9, sender_id: 39, content: "The record was rejected following a late review. A partial follow-up: the claim was cancelled. An automatic claim was refunded the same day.", sent_at: new Date("2023-05-16T22:16:00Z"), message_type: "question", attachments: 4 },
            { id: 144, sprint_id: 98, sender_id: 5, content: "The booking was confirmed following a repeat review. An urgent follow-up: the order was completed.", sent_at: new Date("2023-02-20T17:32:58Z"), message_type: "feedback", attachments: 1 },
            { id: 145, sprint_id: 41, sender_id: 1, content: "The record was delayed — standard case, no further action. The customer asked for a change and the invoice was delayed.", sent_at: new Date("2023-09-11T13:21:30Z"), message_type: "update", attachments: 2 },
            { id: 146, sprint_id: 74, sender_id: 40, content: "A repeat document was escalated the same day. No response from support, so the claim was delayed. The team confirmed the details and the payment was completed.", sent_at: new Date("2023-07-20T14:49:55Z"), message_type: "update", attachments: 3 },
            { id: 147, sprint_id: 19, sender_id: 46, content: "Flagged as automatic. An operator resolved the request. The record was reviewed — incomplete case, no further action.", sent_at: new Date("2023-04-03T16:30:22Z"), message_type: "feedback", attachments: 3 },
            { id: 148, sprint_id: 27, sender_id: 43, content: "A late item was confirmed the same day. The reviewer reported an unusual issue; the order was replaced. The team asked for a change and the document was approved.", sent_at: new Date("2023-01-27T19:15:21Z"), message_type: "update", attachments: 2 },
            { id: 149, sprint_id: 61, sender_id: 41, content: "A partial follow-up: the refund was updated. The reviewer reported a repeat issue; the invoice was closed. Flagged as standard. The courier rejected the appointment. The document was processed after an automatic check.", sent_at: new Date("2023-02-14T17:53:06Z"), message_type: "question", attachments: 3 },
            { id: 150, sprint_id: 96, sender_id: 18, content: "No response from the customer, so the payment was completed. An operator reported a minor issue; the appointment was approved. A repeat shipment was rejected the same day.", sent_at: new Date("2023-02-09T10:33:19Z"), message_type: "feedback", attachments: 4 },
            { id: 151, sprint_id: 88, sender_id: 24, content: "The transfer was completed — unusual case, no further action. Flagged as manual. The courier refunded the report. The account owner reported a manual issue; the transfer was reopened.", sent_at: new Date("2023-08-22T02:03:44Z"), message_type: "feedback", attachments: 2 },
            { id: 152, sprint_id: 33, sender_id: 9, content: "The reviewer reported a duplicate issue; the account was rejected. No response from an operator, so the report was refunded.", sent_at: new Date("2023-02-14T19:51:28Z"), message_type: "feedback", attachments: 4 },
            { id: 153, sprint_id: 25, sender_id: 44, content: "The report was closed following an incomplete review. The team reported a manual issue; the account was escalated. No response from the team, so the refund was delayed. The report was resolved following an unusual review.", sent_at: new Date("2023-12-18T18:48:34Z"), message_type: "update", attachments: 1 },
            { id: 154, sprint_id: 27, sender_id: 18, content: "No response from support, so the claim was replaced. An operator confirmed the details and the account was cancelled.", sent_at: new Date("2023-03-05T21:24:26Z"), message_type: "update", attachments: 3 },
            { id: 155, sprint_id: 81, sender_id: 11, content: null, sent_at: new Date("2023-10-21T12:24:07Z"), message_type: "feedback", attachments: 3 },
            { id: 156, sprint_id: 37, sender_id: 20, content: "An incomplete invoice was updated the same day. No response from the account owner, so the document was confirmed. The booking was refunded — standard case, no further action. The payment was replaced following an unusual review.", sent_at: new Date("2023-11-22T06:17:29Z"), message_type: "question", attachments: 3 },
            { id: 157, sprint_id: 82, sender_id: 29, content: "No response from the reviewer, so the shipment was reviewed. An operator asked for a change and the refund was updated. The courier reported a manual issue; the document was updated. The reviewer confirmed the details and the record was updated.", sent_at: new Date("2023-01-07T13:38:12Z"), message_type: "update", attachments: 2 },
            { id: 158, sprint_id: 57, sender_id: 28, content: null, sent_at: new Date("2023-01-20T22:59:55Z"), message_type: "update", attachments: 2 },
            { id: 159, sprint_id: 4, sender_id: 13, content: "The shipment was processed — standard case, no further action. The supplier reported a partial issue; the transfer was escalated.", sent_at: new Date("2023-07-02T05:32:29Z"), message_type: "update", attachments: 3 },
            { id: 160, sprint_id: 26, sender_id: 7, content: "No response from an operator, so the booking was reopened. A duplicate follow-up: the transfer was replaced.", sent_at: new Date("2023-06-02T17:29:53Z"), message_type: "update", attachments: 2 },
            { id: 161, sprint_id: 64, sender_id: 7, content: "No response from an operator, so the report was delayed. The account owner asked for a change and the appointment was resolved. Support reported a standard issue; the refund was updated. The customer confirmed the details and the document was delayed.", sent_at: new Date("2023-08-17T20:06:54Z"), message_type: "feedback", attachments: 3 },
            { id: 162, sprint_id: 9, sender_id: 38, content: "The record was refunded following an incomplete review. The team asked for a change and the payment was cancelled.", sent_at: new Date("2023-05-17T19:35:35Z"), message_type: "update", attachments: 2 },
            { id: 163, sprint_id: 19, sender_id: 12, content: "The courier reported a duplicate issue; the booking was resolved. No response from the team, so the appointment was completed.", sent_at: new Date("2023-07-09T18:03:58Z"), message_type: "question", attachments: 2 },
            { id: 164, sprint_id: 4, sender_id: 14, content: "A manual follow-up: the payment was delayed. The item was reviewed following an urgent review.", sent_at: new Date("2023-10-24T18:39:11Z"), message_type: "question", attachments: 3 },
            { id: 165, sprint_id: 64, sender_id: 11, content: "The transfer was escalated following a late review. An incomplete follow-up: the shipment was resolved. The reviewer asked for a change and the claim was reopened. The payment was processed after an unusual check.", sent_at: new Date("2023-02-12T18:25:14Z"), message_type: "question", attachments: 3 },
            { id: 166, sprint_id: 51, sender_id: 36, content: "The customer reported a routine issue; the refund was completed. Flagged as duplicate. The account owner processed the booking.", sent_at: new Date("2023-10-06T11:54:11Z"), message_type: "question", attachments: 3 },
            { id: 167, sprint_id: 66, sender_id: 37, content: "The supplier asked for a change and the record was processed. An unusual claim was refunded the same day. Flagged as minor. The courier delayed the payment. The team asked for a change and the transfer was rejected.", sent_at: new Date("2023-05-19T18:54:33Z"), message_type: "feedback", attachments: 3 },
            { id: 168, sprint_id: 28, sender_id: 50, content: "No response from an operator, so the booking was updated. No response from the supplier, so the claim was replaced.", sent_at: new Date("2023-03-13T19:55:29Z"), message_type: "update", attachments: 3 },
            { id: 169, sprint_id: 44, sender_id: 34, content: "An operator reported a routine issue; the order was rescheduled. The booking was approved following a partial review. The item was closed after a duplicate check. A repeat follow-up: the report was reviewed.", sent_at: new Date("2023-12-30T12:40:50Z"), message_type: "update", attachments: 1 },
            { id: 170, sprint_id: 37, sender_id: 5, content: null, sent_at: new Date("2023-10-28T18:54:04Z"), message_type: "question", attachments: 3 },
            { id: 171, sprint_id: 17, sender_id: 10, content: "The payment was approved — incomplete case, no further action. A minor follow-up: the item was rejected. No response from the reviewer, so the invoice was completed. A partial document was confirmed the same day.", sent_at: new Date("2023-11-02T19:17:18Z"), message_type: "question", attachments: 2 },
            { id: 172, sprint_id: 25, sender_id: 29, content: "No response from the courier, so the ticket was confirmed. A routine follow-up: the ticket was cancelled. Flagged as late. An operator confirmed the claim. The ticket was refunded following an urgent review.", sent_at: new Date("2023-08-27T19:13:10Z"), message_type: "question", attachments: 2 },
            { id: 173, sprint_id: 49, sender_id: 11, content: "An automatic report was resolved the same day. No response from an operator, so the refund was reviewed. The courier confirmed the details and the request was delayed.", sent_at: new Date("2023-09-19T14:44:02Z"), message_type: "feedback", attachments: 3 },
            { id: 174, sprint_id: 4, sender_id: 39, content: "The refund was delayed after a manual check. Flagged as manual. The account owner resolved the ticket. An urgent appointment was replaced the same day.", sent_at: new Date("2023-07-11T12:55:56Z"), message_type: "update", attachments: 3 },
            { id: 175, sprint_id: 61, sender_id: 41, content: null, sent_at: new Date("2023-08-31T09:29:12Z"), message_type: "feedback", attachments: 2 },
            { id: 176, sprint_id: 67, sender_id: 25, content: "The reviewer asked for a change and the ticket was replaced. The report was closed — partial case, no further action.", sent_at: new Date("2023-04-26T16:25:14Z"), message_type: "question", attachments: 3 },
            { id: 177, sprint_id: 4, sender_id: 36, content: "The account was rescheduled — manual case, no further action. The customer asked for a change and the record was escalated. The refund was closed — partial case, no further action.", sent_at: new Date("2023-03-30T15:33:12Z"), message_type: "update", attachments: 3 },
            { id: 178, sprint_id: 14, sender_id: 24, content: "The transfer was cancelled after a repeat check. Flagged as duplicate. The account owner rescheduled the booking.", sent_at: new Date("2023-02-14T19:06:36Z"), message_type: "feedback", attachments: 4 },
            { id: 179, sprint_id: 79, sender_id: 43, content: "The courier confirmed the details and the document was resolved. An incomplete follow-up: the shipment was confirmed. The customer reported a late issue; the transfer was rescheduled. The booking was rescheduled — duplicate case, no further action.", sent_at: new Date("2023-06-11T17:55:20Z"), message_type: "update", attachments: 3 },
            { id: 180, sprint_id: 64, sender_id: 24, content: "An automatic follow-up: the order was reopened. An operator reported a standard issue; the item was reviewed. The request was replaced after an urgent check.", sent_at: new Date("2023-07-14T17:11:11Z"), message_type: "question", attachments: 2 },
            { id: 181, sprint_id: 81, sender_id: 5, content: "No response from the customer, so the invoice was processed. The account owner asked for a change and the request was reopened. The record was closed after a minor check. Flagged as manual. The account owner approved the session.", sent_at: new Date("2023-01-21T14:08:47Z"), message_type: "update", attachments: 3 },
            { id: 182, sprint_id: 51, sender_id: 44, content: "A repeat report was completed the same day. A repeat follow-up: the order was approved. Support asked for a change and the appointment was completed. Flagged as incomplete. The reviewer confirmed the document.", sent_at: new Date("2023-08-06T13:02:06Z"), message_type: "question", attachments: 2 },
            { id: 183, sprint_id: 3, sender_id: 16, content: "The request was cancelled following a repeat review. The payment was replaced after a standard check. The courier asked for a change and the transfer was replaced.", sent_at: new Date("2023-06-04T09:45:47Z"), message_type: "question", attachments: 2 },
            { id: 184, sprint_id: 70, sender_id: 11, content: "A minor transfer was closed the same day. The reviewer asked for a change and the booking was rejected. Support reported a partial issue; the report was rejected.", sent_at: new Date("2023-03-04T20:15:03Z"), message_type: "update", attachments: 3 },
            { id: 185, sprint_id: 84, sender_id: 24, content: "The booking was reopened — repeat case, no further action. Flagged as partial. The customer reviewed the appointment. Flagged as repeat. The account owner replaced the booking. A manual account was reopened the same day.", sent_at: new Date("2023-07-25T14:27:19Z"), message_type: "feedback", attachments: 2 },
            { id: 186, sprint_id: 41, sender_id: 43, content: "A duplicate follow-up: the refund was reviewed. The document was delayed — duplicate case, no further action. An incomplete report was cancelled the same day. The team reported a manual issue; the request was confirmed.", sent_at: new Date("2023-05-02T17:03:01Z"), message_type: "update", attachments: 3 },
            { id: 187, sprint_id: 37, sender_id: 10, content: "The document was replaced — automatic case, no further action. The delivery was updated after a duplicate check. The account owner confirmed the details and the payment was completed. The claim was delayed — urgent case, no further action.", sent_at: new Date("2023-03-18T22:37:23Z"), message_type: "feedback", attachments: 2 },
            { id: 188, sprint_id: 98, sender_id: 37, content: "The appointment was reviewed following a partial review. Flagged as minor. The reviewer replaced the document. The reviewer reported a partial issue; the record was updated.", sent_at: new Date("2023-09-19T20:03:08Z"), message_type: "feedback", attachments: 2 },
            { id: 189, sprint_id: 36, sender_id: 13, content: "No response from the customer, so the item was rejected. The customer reported an incomplete issue; the request was delayed. An incomplete claim was reopened the same day.", sent_at: new Date("2023-10-16T12:48:13Z"), message_type: "question", attachments: 2 },
            { id: 190, sprint_id: 44, sender_id: 12, content: "An operator asked for a change and the account was approved. Support asked for a change and the invoice was rescheduled. Flagged as minor. The account owner approved the booking.", sent_at: new Date("2023-04-19T14:12:51Z"), message_type: "update", attachments: 1 },
            { id: 191, sprint_id: 28, sender_id: 3, content: "Support reported a late issue; the session was reviewed. The account owner confirmed the details and the account was updated.", sent_at: new Date("2023-07-11T09:45:59Z"), message_type: "question", attachments: 3 },
            { id: 192, sprint_id: 29, sender_id: 22, content: "The payment was confirmed after an urgent check. Flagged as standard. The team processed the payment. Flagged as partial. Support processed the session. The item was delayed after a manual check.", sent_at: new Date("2023-02-01T21:32:08Z"), message_type: "question", attachments: 3 },
            { id: 193, sprint_id: 77, sender_id: 12, content: "The supplier reported a late issue; the appointment was refunded. The account owner asked for a change and the account was confirmed. The document was approved — duplicate case, no further action.", sent_at: new Date("2023-04-26T20:54:08Z"), message_type: "question", attachments: 3 },
            { id: 194, sprint_id: 10, sender_id: 12, content: "Flagged as manual. The courier rescheduled the claim. The document was rejected after an unusual check.", sent_at: new Date("2023-04-07T18:22:33Z"), message_type: "question", attachments: 3 },
            { id: 195, sprint_id: 79, sender_id: 11, content: "The report was confirmed — urgent case, no further action. The delivery was replaced following a partial review.", sent_at: new Date("2023-04-20T16:35:19Z"), message_type: "update", attachments: 3 },
            { id: 196, sprint_id: 65, sender_id: 48, content: "The transfer was reviewed after an incomplete check. The courier asked for a change and the transfer was approved. Flagged as manual. The reviewer rejected the refund. No response from the customer, so the order was refunded.", sent_at: new Date("2023-07-03T12:08:27Z"), message_type: "feedback", attachments: 3 },
            { id: 197, sprint_id: 98, sender_id: 23, content: "No response from an operator, so the invoice was confirmed. The claim was resolved after a manual check. The customer confirmed the details and the request was escalated. A duplicate shipment was completed the same day.", sent_at: new Date("2023-07-13T16:46:32Z"), message_type: "update", attachments: 3 },
            { id: 198, sprint_id: 76, sender_id: 13, content: null, sent_at: new Date("2023-03-22T10:03:35Z"), message_type: "update", attachments: 2 },
            { id: 199, sprint_id: 70, sender_id: 40, content: "The account owner confirmed the details and the claim was refunded. The account owner confirmed the details and the appointment was replaced.", sent_at: new Date("2023-06-23T16:26:41Z"), message_type: "update", attachments: 3 },
            { id: 200, sprint_id: 59, sender_id: 27, content: "The courier reported a repeat issue; the order was completed. Support confirmed the details and the appointment was cancelled. The ticket was approved — partial case, no further action.", sent_at: new Date("2023-04-20T12:42:04Z"), message_type: "feedback", attachments: 3 },
            { id: 201, sprint_id: 69, sender_id: 3, content: "The item was confirmed — late case, no further action. A late follow-up: the record was refunded.", sent_at: new Date("2023-07-22T17:56:01Z"), message_type: "feedback", attachments: 2 },
            { id: 202, sprint_id: 35, sender_id: 1, content: "Flagged as urgent. The account owner delayed the session. Flagged as late. An operator escalated the request. Support reported a minor issue; the appointment was resolved.", sent_at: new Date("2023-08-29T15:46:04Z"), message_type: "update", attachments: 1 },
            { id: 203, sprint_id: 76, sender_id: 31, content: null, sent_at: new Date("2023-09-05T10:17:25Z"), message_type: "update", attachments: 2 },
            { id: 204, sprint_id: 21, sender_id: 6, content: "The supplier asked for a change and the ticket was rejected. Support confirmed the details and the report was cancelled. Flagged as repeat. The account owner processed the appointment. An unusual invoice was replaced the same day.", sent_at: new Date("2023-01-03T20:14:30Z"), message_type: "update", attachments: 3 },
            { id: 205, sprint_id: 78, sender_id: 17, content: "A late payment was replaced the same day. The claim was escalated following a late review. Support reported a standard issue; the request was rejected. The account owner asked for a change and the transfer was cancelled.", sent_at: new Date("2023-02-11T16:26:12Z"), message_type: "question", attachments: 2 },
            { id: 206, sprint_id: 10, sender_id: 47, content: "A minor follow-up: the payment was approved. A standard ticket was completed the same day. The refund was rescheduled following a minor review. A duplicate request was processed the same day.", sent_at: new Date("2023-12-18T04:43:38Z"), message_type: "feedback", attachments: 2 },
            { id: 207, sprint_id: 50, sender_id: 4, content: "The report was updated following a repeat review. Flagged as routine. The supplier rejected the account. The supplier reported a routine issue; the record was refunded.", sent_at: new Date("2023-08-07T11:39:45Z"), message_type: "update", attachments: 2 },
            { id: 208, sprint_id: 91, sender_id: 24, content: "The order was approved — repeat case, no further action. The shipment was rescheduled following a repeat review.", sent_at: new Date("2023-05-24T13:37:32Z"), message_type: "question", attachments: 3 },
            { id: 209, sprint_id: 32, sender_id: 10, content: "The request was approved following a standard review. A duplicate booking was resolved the same day.", sent_at: new Date("2023-12-28T11:22:44Z"), message_type: "question", attachments: 2 },
            { id: 210, sprint_id: 58, sender_id: 32, content: "No response from an operator, so the report was rejected. Flagged as automatic. The team completed the booking. The team reported a routine issue; the delivery was processed. The courier confirmed the details and the report was reviewed.", sent_at: new Date("2023-11-29T19:06:38Z"), message_type: "feedback", attachments: 1 },
            { id: 211, sprint_id: 25, sender_id: 13, content: null, sent_at: new Date("2023-09-03T09:56:34Z"), message_type: "feedback", attachments: 2 },
            { id: 212, sprint_id: 71, sender_id: 11, content: "No response from the customer, so the request was resolved. Flagged as incomplete. The reviewer rescheduled the delivery. An incomplete follow-up: the account was approved.", sent_at: new Date("2023-02-04T20:08:01Z"), message_type: "update", attachments: 2 },
            { id: 213, sprint_id: 40, sender_id: 20, content: "A minor account was escalated the same day. An operator reported a late issue; the record was completed. No response from the team, so the invoice was processed.", sent_at: new Date("2023-12-05T09:22:17Z"), message_type: "update", attachments: 2 },
            { id: 214, sprint_id: 68, sender_id: 40, content: "Flagged as standard. The reviewer closed the account. The transfer was resolved following a standard review. The record was escalated following an urgent review. The team reported an automatic issue; the report was replaced.", sent_at: new Date("2023-09-16T20:39:38Z"), message_type: "question", attachments: 2 },
            { id: 215, sprint_id: 28, sender_id: 46, content: "An operator asked for a change and the transfer was completed. Flagged as partial. The supplier confirmed the transfer. The courier reported an unusual issue; the request was refunded.", sent_at: new Date("2023-06-13T18:26:12Z"), message_type: "update", attachments: 3 },
            { id: 216, sprint_id: 100, sender_id: 20, content: "The team asked for a change and the ticket was updated. The report was resolved — duplicate case, no further action. The invoice was resolved following a partial review. An operator confirmed the details and the invoice was reopened.", sent_at: new Date("2023-11-03T21:17:15Z"), message_type: "question", attachments: 3 },
            { id: 217, sprint_id: 2, sender_id: 3, content: "The courier reported a repeat issue; the session was delayed. The refund was rescheduled following a minor review. No response from the account owner, so the delivery was completed.", sent_at: new Date("2023-07-12T17:41:56Z"), message_type: "question", attachments: 3 },
            { id: 218, sprint_id: 23, sender_id: 40, content: "The booking was rescheduled after a minor check. The supplier confirmed the details and the invoice was refunded. The order was completed following a manual review.", sent_at: new Date("2023-08-04T01:24:51Z"), message_type: "question", attachments: 4 },
            { id: 219, sprint_id: 98, sender_id: 24, content: "The customer asked for a change and the transfer was approved. An operator asked for a change and the booking was rejected.", sent_at: new Date("2023-03-05T21:22:16Z"), message_type: "update", attachments: 3 },
            { id: 220, sprint_id: 7, sender_id: 5, content: "A late follow-up: the ticket was closed. A repeat payment was approved the same day. The session was reopened — incomplete case, no further action.", sent_at: new Date("2023-07-26T13:27:08Z"), message_type: "update", attachments: 2 },
            { id: 221, sprint_id: 83, sender_id: 40, content: "The appointment was confirmed — repeat case, no further action. The supplier confirmed the details and the account was cancelled. Flagged as minor. An operator cancelled the claim.", sent_at: new Date("2023-10-31T20:45:16Z"), message_type: "update", attachments: 1 },
            { id: 222, sprint_id: 96, sender_id: 43, content: "The account owner asked for a change and the refund was replaced. The customer reported a late issue; the request was cancelled.", sent_at: new Date("2023-08-26T18:21:46Z"), message_type: "update", attachments: 2 },
            { id: 223, sprint_id: 35, sender_id: 7, content: "No response from the courier, so the document was confirmed. The ticket was confirmed after a duplicate check. An operator confirmed the details and the session was updated. The customer confirmed the details and the booking was reviewed.", sent_at: new Date("2023-08-24T10:45:36Z"), message_type: "question", attachments: 1 },
            { id: 224, sprint_id: 96, sender_id: 32, content: "The order was refunded — manual case, no further action. An urgent transfer was updated the same day. The delivery was delayed — manual case, no further action. No response from the supplier, so the transfer was updated.", sent_at: new Date("2023-10-03T19:52:03Z"), message_type: "update", attachments: 3 },
            { id: 225, sprint_id: 42, sender_id: 8, content: "The order was replaced — manual case, no further action. The reviewer confirmed the details and the session was reopened. Flagged as routine. The account owner rejected the report. The delivery was refunded — standard case, no further action.", sent_at: new Date("2023-12-20T08:52:09Z"), message_type: "update", attachments: 1 },
            { id: 226, sprint_id: 76, sender_id: 46, content: "Support asked for a change and the document was processed. Flagged as unusual. The customer replaced the invoice. The invoice was rescheduled after a minor check. Support confirmed the details and the account was rejected.", sent_at: new Date("2023-05-09T20:50:48Z"), message_type: "question", attachments: 3 },
            { id: 227, sprint_id: 24, sender_id: 33, content: "Support reported a duplicate issue; the ticket was reviewed. An incomplete follow-up: the refund was escalated. The account owner asked for a change and the report was approved.", sent_at: new Date("2023-08-08T01:26:37Z"), message_type: "update", attachments: 1 },
            { id: 228, sprint_id: 80, sender_id: 4, content: "Flagged as automatic. The team confirmed the item. A repeat follow-up: the delivery was escalated. The team confirmed the details and the ticket was delayed. The customer reported an automatic issue; the delivery was processed.", sent_at: new Date("2023-07-19T16:50:47Z"), message_type: "update", attachments: 2 },
            { id: 229, sprint_id: 7, sender_id: 23, content: "Flagged as duplicate. An operator reopened the account. A late follow-up: the invoice was rejected.", sent_at: new Date("2023-01-03T11:01:59Z"), message_type: "update", attachments: 3 },
            { id: 230, sprint_id: 99, sender_id: 22, content: "The customer confirmed the details and the claim was reviewed. A late ticket was escalated the same day.", sent_at: new Date("2023-08-14T18:47:00Z"), message_type: "update", attachments: 2 },
            { id: 231, sprint_id: 37, sender_id: 37, content: "Flagged as standard. The reviewer cancelled the refund. The team asked for a change and the shipment was replaced. The session was refunded — automatic case, no further action.", sent_at: new Date("2023-01-21T17:19:27Z"), message_type: "question", attachments: 2 },
            { id: 232, sprint_id: 38, sender_id: 32, content: "The refund was refunded after an incomplete check. The team confirmed the details and the delivery was refunded. An urgent delivery was refunded the same day.", sent_at: new Date("2023-10-13T16:06:51Z"), message_type: "update", attachments: 2 },
            { id: 233, sprint_id: 3, sender_id: 47, content: null, sent_at: new Date("2023-12-29T06:00:16Z"), message_type: "update", attachments: 1 },
            { id: 234, sprint_id: 27, sender_id: 16, content: "Support reported an incomplete issue; the report was closed. The team confirmed the details and the ticket was completed.", sent_at: new Date("2023-11-16T11:32:41Z"), message_type: "update", attachments: 2 },
            { id: 235, sprint_id: 81, sender_id: 42, content: null, sent_at: new Date("2023-04-14T15:03:35Z"), message_type: "update", attachments: 2 },
            { id: 236, sprint_id: 69, sender_id: 13, content: "A late follow-up: the document was cancelled. The document was closed following a manual review.", sent_at: new Date("2023-02-22T14:59:41Z"), message_type: "update", attachments: 3 },
            { id: 237, sprint_id: 94, sender_id: 32, content: "Support reported a duplicate issue; the booking was closed. A repeat record was reopened the same day. A minor follow-up: the order was updated.", sent_at: new Date("2023-12-26T22:03:31Z"), message_type: "question", attachments: 3 },
            { id: 238, sprint_id: 99, sender_id: 24, content: null, sent_at: new Date("2023-01-13T20:00:22Z"), message_type: "update", attachments: 2 },
            { id: 239, sprint_id: 57, sender_id: 21, content: "A standard delivery was escalated the same day. The delivery was confirmed after a manual check.", sent_at: new Date("2023-11-04T11:18:23Z"), message_type: "feedback", attachments: 3 },
            { id: 240, sprint_id: 70, sender_id: 37, content: "No response from the customer, so the shipment was updated. The supplier asked for a change and the document was approved.", sent_at: new Date("2023-09-16T21:20:48Z"), message_type: "feedback", attachments: 2 },
            { id: 241, sprint_id: 16, sender_id: 3, content: "The claim was rejected — automatic case, no further action. Flagged as partial. The reviewer processed the shipment.", sent_at: new Date("2023-05-21T23:21:10Z"), message_type: "update", attachments: 3 },
            { id: 242, sprint_id: 98, sender_id: 4, content: "An incomplete follow-up: the order was reviewed. The reviewer asked for a change and the shipment was approved. A routine appointment was escalated the same day. An operator reported a partial issue; the shipment was delayed.", sent_at: new Date("2023-07-05T19:49:08Z"), message_type: "question", attachments: 3 },
            { id: 243, sprint_id: 20, sender_id: 15, content: "A repeat appointment was rejected the same day. The customer asked for a change and the claim was closed. Flagged as partial. An operator reopened the request. An urgent follow-up: the account was approved.", sent_at: new Date("2023-08-24T09:29:06Z"), message_type: "update", attachments: 2 },
            { id: 244, sprint_id: 22, sender_id: 43, content: "No response from the team, so the claim was confirmed. An operator asked for a change and the report was reopened.", sent_at: new Date("2023-06-29T12:21:21Z"), message_type: "update", attachments: 3 },
            { id: 245, sprint_id: 84, sender_id: 29, content: "The ticket was rescheduled following a late review. A duplicate follow-up: the booking was rejected. The reviewer confirmed the details and the account was completed. Flagged as manual. The reviewer rescheduled the session.", sent_at: new Date("2023-08-03T19:20:42Z"), message_type: "question", attachments: 3 },
            { id: 246, sprint_id: 85, sender_id: 3, content: "A repeat follow-up: the order was approved. The item was cancelled after a routine check.", sent_at: new Date("2023-11-22T12:38:34Z"), message_type: "update", attachments: 4 },
            { id: 247, sprint_id: 40, sender_id: 12, content: "The order was replaced — partial case, no further action. A standard follow-up: the transfer was cancelled. The courier confirmed the details and the item was approved. The reviewer asked for a change and the appointment was approved.", sent_at: new Date("2023-12-22T18:08:11Z"), message_type: "question", attachments: 2 },
            { id: 248, sprint_id: 92, sender_id: 49, content: "A routine follow-up: the ticket was replaced. An operator reported a routine issue; the appointment was replaced. The report was replaced following an incomplete review.", sent_at: new Date("2023-11-14T02:08:09Z"), message_type: "feedback", attachments: 4 },
            { id: 249, sprint_id: 83, sender_id: 3, content: "A minor follow-up: the delivery was processed. The record was rescheduled after a partial check. Flagged as incomplete. The account owner delayed the payment.", sent_at: new Date("2023-08-29T10:08:14Z"), message_type: "update", attachments: 2 },
            { id: 250, sprint_id: 81, sender_id: 15, content: "An operator confirmed the details and the order was escalated. The team asked for a change and the invoice was reopened. The supplier asked for a change and the account was escalated.", sent_at: new Date("2023-09-18T20:46:32Z"), message_type: "question", attachments: 4 },
            { id: 251, sprint_id: 46, sender_id: 29, content: "The document was escalated following a duplicate review. No response from the courier, so the session was approved. An incomplete claim was rejected the same day. The account owner confirmed the details and the booking was reopened.", sent_at: new Date("2023-10-02T15:39:36Z"), message_type: "update", attachments: 2 },
            { id: 252, sprint_id: 49, sender_id: 48, content: "The reviewer confirmed the details and the appointment was rescheduled. No response from the team, so the document was rejected.", sent_at: new Date("2023-05-22T11:08:13Z"), message_type: "update", attachments: 2 },
            { id: 253, sprint_id: 86, sender_id: 37, content: null, sent_at: new Date("2023-12-15T15:59:03Z"), message_type: "update", attachments: 2 },
            { id: 254, sprint_id: 66, sender_id: 3, content: "The document was delayed — late case, no further action. A minor payment was rescheduled the same day.", sent_at: new Date("2023-05-13T17:48:05Z"), message_type: "question", attachments: 3 },
            { id: 255, sprint_id: 54, sender_id: 35, content: null, sent_at: new Date("2023-02-11T07:57:45Z"), message_type: "update", attachments: 3 },
            { id: 256, sprint_id: 12, sender_id: 27, content: "Support asked for a change and the transfer was delayed. The courier confirmed the details and the ticket was closed. The session was closed after a duplicate check. An urgent follow-up: the claim was reviewed.", sent_at: new Date("2023-06-25T15:34:39Z"), message_type: "update", attachments: 4 },
            { id: 257, sprint_id: 64, sender_id: 30, content: null, sent_at: new Date("2023-09-11T06:28:28Z"), message_type: "question", attachments: 2 },
            { id: 258, sprint_id: 41, sender_id: 14, content: "The document was approved — repeat case, no further action. The payment was completed — minor case, no further action. The team confirmed the details and the transfer was updated. The reviewer asked for a change and the account was processed.", sent_at: new Date("2023-12-10T20:58:23Z"), message_type: "question", attachments: 2 },
            { id: 259, sprint_id: 84, sender_id: 23, content: "The supplier confirmed the details and the request was delayed. The document was processed following a manual review. The record was delayed after an automatic check. Flagged as partial. Support resolved the delivery.", sent_at: new Date("2023-10-31T11:54:37Z"), message_type: "update", attachments: 3 },
            { id: 260, sprint_id: 18, sender_id: 19, content: "The refund was rescheduled — routine case, no further action. The account was rescheduled after a repeat check. No response from the team, so the invoice was refunded. The payment was rescheduled following an incomplete review.", sent_at: new Date("2023-12-08T17:31:41Z"), message_type: "question", attachments: 2 },
            { id: 261, sprint_id: 54, sender_id: 49, content: "No response from the courier, so the payment was updated. The courier confirmed the details and the invoice was delayed. The courier confirmed the details and the ticket was resolved.", sent_at: new Date("2023-06-02T20:26:24Z"), message_type: "update", attachments: 2 },
            { id: 262, sprint_id: 83, sender_id: 15, content: "The courier confirmed the details and the invoice was completed. Flagged as standard. The team updated the report.", sent_at: new Date("2023-09-18T09:49:31Z"), message_type: "question", attachments: 2 },
            { id: 263, sprint_id: 55, sender_id: 31, content: "A standard follow-up: the appointment was refunded. The team confirmed the details and the record was processed. The courier asked for a change and the delivery was approved.", sent_at: new Date("2023-06-12T15:25:04Z"), message_type: "update", attachments: 3 },
            { id: 264, sprint_id: 88, sender_id: 36, content: "The shipment was completed following a routine review. The payment was closed following an unusual review. The team confirmed the details and the refund was refunded. Support reported an unusual issue; the refund was processed.", sent_at: new Date("2023-10-31T15:42:48Z"), message_type: "update", attachments: 2 },
            { id: 265, sprint_id: 73, sender_id: 26, content: "The account owner asked for a change and the report was replaced. The report was cancelled — minor case, no further action. The record was rescheduled following a duplicate review.", sent_at: new Date("2023-11-02T15:54:33Z"), message_type: "update", attachments: 3 },
            { id: 266, sprint_id: 99, sender_id: 9, content: "Support asked for a change and the report was escalated. No response from an operator, so the transfer was replaced.", sent_at: new Date("2023-10-23T17:42:37Z"), message_type: "update", attachments: 2 },
            { id: 267, sprint_id: 4, sender_id: 36, content: "The courier confirmed the details and the transfer was completed. Flagged as unusual. The reviewer updated the request. The courier reported an incomplete issue; the appointment was delayed. The payment was reviewed after an incomplete check.", sent_at: new Date("2023-10-11T13:55:15Z"), message_type: "question", attachments: 4 },
            { id: 268, sprint_id: 69, sender_id: 22, content: "The request was completed — routine case, no further action. The reviewer confirmed the details and the report was confirmed.", sent_at: new Date("2023-08-29T23:59:25Z"), message_type: "update", attachments: 2 },
            { id: 269, sprint_id: 100, sender_id: 2, content: "Support asked for a change and the transfer was rescheduled. The customer reported a repeat issue; the transfer was resolved.", sent_at: new Date("2023-07-27T12:26:05Z"), message_type: "feedback", attachments: 3 },
            { id: 270, sprint_id: 37, sender_id: 45, content: "The transfer was rescheduled following an automatic review. A late follow-up: the report was cancelled. An urgent transfer was escalated the same day. The supplier confirmed the details and the order was delayed.", sent_at: new Date("2023-04-01T13:53:44Z"), message_type: "question", attachments: 2 },
            { id: 271, sprint_id: 88, sender_id: 37, content: "The customer asked for a change and the invoice was reopened. The reviewer reported a partial issue; the payment was rescheduled. A partial follow-up: the request was rejected. An operator reported a manual issue; the item was confirmed.", sent_at: new Date("2023-03-05T10:18:03Z"), message_type: "feedback", attachments: 3 },
            { id: 272, sprint_id: 3, sender_id: 14, content: "The order was completed following a repeat review. The team asked for a change and the request was completed. An automatic follow-up: the report was approved. The delivery was confirmed — late case, no further action.", sent_at: new Date("2023-06-04T20:28:41Z"), message_type: "update", attachments: 3 },
            { id: 273, sprint_id: 22, sender_id: 47, content: null, sent_at: new Date("2023-08-10T02:12:44Z"), message_type: "feedback", attachments: 3 },
            { id: 274, sprint_id: 52, sender_id: 28, content: "A manual follow-up: the shipment was rescheduled. No response from the customer, so the claim was escalated. The payment was processed following a manual review. The invoice was closed following an unusual review.", sent_at: new Date("2023-11-10T19:53:13Z"), message_type: "question", attachments: 3 },
            { id: 275, sprint_id: 5, sender_id: 7, content: null, sent_at: new Date("2023-01-26T14:15:20Z"), message_type: "question", attachments: 3 },
            { id: 276, sprint_id: 86, sender_id: 1, content: "Flagged as automatic. An operator rescheduled the item. The order was cancelled following a partial review.", sent_at: new Date("2023-06-19T18:21:02Z"), message_type: "update", attachments: 1 },
            { id: 277, sprint_id: 87, sender_id: 41, content: "The session was confirmed — late case, no further action. The transfer was approved — automatic case, no further action.", sent_at: new Date("2023-08-17T10:43:07Z"), message_type: "update", attachments: 2 },
            { id: 278, sprint_id: 53, sender_id: 29, content: "The reviewer asked for a change and the delivery was escalated. A repeat follow-up: the appointment was approved.", sent_at: new Date("2023-06-06T09:00:21Z"), message_type: "question", attachments: 3 },
            { id: 279, sprint_id: 28, sender_id: 17, content: "Flagged as routine. The team reviewed the refund. The order was refunded following a partial review. The delivery was cancelled — urgent case, no further action. The claim was closed following a routine review.", sent_at: new Date("2023-03-15T21:05:33Z"), message_type: "update", attachments: 3 },
            { id: 280, sprint_id: 96, sender_id: 26, content: "The supplier asked for a change and the account was delayed. The invoice was reviewed — late case, no further action.", sent_at: new Date("2023-07-01T14:43:43Z"), message_type: "feedback", attachments: 3 },
            { id: 281, sprint_id: 84, sender_id: 32, content: "The record was escalated — standard case, no further action. The supplier reported a repeat issue; the order was reopened. A duplicate follow-up: the delivery was completed.", sent_at: new Date("2023-05-01T19:03:59Z"), message_type: "update", attachments: 2 },
            { id: 282, sprint_id: 31, sender_id: 46, content: "Support reported an unusual issue; the delivery was approved. The account owner asked for a change and the session was delayed.", sent_at: new Date("2023-12-02T19:39:04Z"), message_type: "question", attachments: 3 },
            { id: 283, sprint_id: 94, sender_id: 42, content: "The reviewer asked for a change and the order was delayed. The customer asked for a change and the record was refunded.", sent_at: new Date("2023-05-19T14:12:22Z"), message_type: "question", attachments: 2 },
            { id: 284, sprint_id: 42, sender_id: 49, content: "A manual shipment was rescheduled the same day. The refund was delayed after a partial check. A duplicate follow-up: the delivery was replaced. No response from the courier, so the refund was confirmed.", sent_at: new Date("2023-12-21T20:34:26Z"), message_type: "feedback", attachments: 2 },
            { id: 285, sprint_id: 50, sender_id: 47, content: "The booking was processed — partial case, no further action. The session was rejected following an urgent review. The record was refunded following a manual review.", sent_at: new Date("2023-02-10T19:56:19Z"), message_type: "update", attachments: 3 },
            { id: 286, sprint_id: 66, sender_id: 23, content: "A late payment was replaced the same day. An unusual refund was cancelled the same day. The refund was escalated — repeat case, no further action. The invoice was confirmed after a partial check.", sent_at: new Date("2023-10-17T21:11:38Z"), message_type: "question", attachments: 1 },
            { id: 287, sprint_id: 46, sender_id: 18, content: "The customer reported a standard issue; the claim was rejected. The claim was rescheduled — late case, no further action. An unusual report was confirmed the same day.", sent_at: new Date("2023-01-21T13:54:23Z"), message_type: "update", attachments: 1 },
            { id: 288, sprint_id: 98, sender_id: 21, content: null, sent_at: new Date("2023-08-30T20:45:01Z"), message_type: "update", attachments: 2 },
            { id: 289, sprint_id: 34, sender_id: 33, content: "The reviewer confirmed the details and the order was rejected. The refund was refunded following a standard review.", sent_at: new Date("2023-09-26T08:21:36Z"), message_type: "question", attachments: 3 },
            { id: 290, sprint_id: 2, sender_id: 40, content: "A standard appointment was processed the same day. Flagged as standard. An operator reopened the refund. A duplicate report was completed the same day.", sent_at: new Date("2023-09-22T11:37:37Z"), message_type: "question", attachments: 2 },
            { id: 291, sprint_id: 92, sender_id: 4, content: "The team reported an urgent issue; the request was closed. The reviewer reported an automatic issue; the session was updated. The supplier reported an urgent issue; the payment was delayed.", sent_at: new Date("2023-02-02T17:47:31Z"), message_type: "update", attachments: 1 },
            { id: 292, sprint_id: 90, sender_id: 21, content: "An urgent delivery was delayed the same day. The team reported an urgent issue; the booking was escalated.", sent_at: new Date("2023-11-26T22:35:02Z"), message_type: "question", attachments: 3 },
            { id: 293, sprint_id: 89, sender_id: 35, content: "The document was processed following a repeat review. The courier confirmed the details and the order was cancelled.", sent_at: new Date("2023-10-28T15:31:16Z"), message_type: "update", attachments: 2 },
            { id: 294, sprint_id: 27, sender_id: 15, content: "The delivery was reopened following a manual review. The shipment was rescheduled after a routine check. The team confirmed the details and the ticket was refunded.", sent_at: new Date("2023-05-12T10:59:40Z"), message_type: "question", attachments: 3 },
            { id: 295, sprint_id: 86, sender_id: 20, content: "The delivery was reviewed following a standard review. No response from the team, so the shipment was reopened. Support reported a late issue; the claim was delayed.", sent_at: new Date("2023-08-11T23:37:57Z"), message_type: "update", attachments: 3 },
            { id: 296, sprint_id: 70, sender_id: 31, content: "The refund was approved following a standard review. An incomplete document was reopened the same day. The team asked for a change and the session was completed.", sent_at: new Date("2023-10-18T22:42:45Z"), message_type: "update", attachments: 3 },
            { id: 297, sprint_id: 90, sender_id: 27, content: "Flagged as partial. The supplier reopened the booking. The customer confirmed the details and the transfer was rejected. No response from the reviewer, so the item was escalated. A manual invoice was delayed the same day.", sent_at: new Date("2023-11-02T14:08:27Z"), message_type: "update", attachments: 3 },
            { id: 298, sprint_id: 29, sender_id: 21, content: "The reviewer confirmed the details and the booking was closed. The ticket was resolved following a minor review. The account owner confirmed the details and the delivery was approved.", sent_at: new Date("2023-02-06T17:54:36Z"), message_type: "feedback", attachments: 3 },
            { id: 299, sprint_id: 25, sender_id: 43, content: "An operator reported a duplicate issue; the report was rejected. The item was confirmed after a routine check. The order was processed after an automatic check. A duplicate appointment was updated the same day.", sent_at: new Date("2023-08-28T19:47:27Z"), message_type: "question", attachments: 2 },
            { id: 300, sprint_id: 74, sender_id: 3, content: "The order was refunded after a repeat check. A partial refund was replaced the same day. No response from the customer, so the claim was rescheduled.", sent_at: new Date("2023-03-21T15:27:31Z"), message_type: "update", attachments: 3 },
            { id: 301, sprint_id: 75, sender_id: 26, content: "The transfer was delayed after an unusual check. The appointment was updated after a repeat check. The team asked for a change and the ticket was resolved. The payment was resolved after a partial check.", sent_at: new Date("2023-04-03T16:39:46Z"), message_type: "feedback", attachments: 2 },
            { id: 302, sprint_id: 89, sender_id: 28, content: "Flagged as partial. The supplier closed the invoice. The supplier reported a repeat issue; the payment was approved. A manual session was updated the same day. Flagged as incomplete. The reviewer replaced the claim.", sent_at: new Date("2023-01-30T10:47:47Z"), message_type: "update", attachments: 3 },
            { id: 303, sprint_id: 30, sender_id: 50, content: "The shipment was escalated after a minor check. An operator reported a minor issue; the transfer was approved.", sent_at: new Date("2023-04-20T18:55:28Z"), message_type: "update", attachments: 2 },
            { id: 304, sprint_id: 55, sender_id: 25, content: "The invoice was reopened after a late check. The delivery was confirmed — unusual case, no further action.", sent_at: new Date("2023-06-16T20:44:02Z"), message_type: "update", attachments: 3 },
            { id: 305, sprint_id: 73, sender_id: 20, content: "An operator confirmed the details and the item was rescheduled. The refund was reviewed following an incomplete review. The account owner confirmed the details and the payment was confirmed.", sent_at: new Date("2023-04-15T19:25:30Z"), message_type: "feedback", attachments: 3 },
            { id: 306, sprint_id: 25, sender_id: 10, content: "No response from the supplier, so the account was rejected. The refund was rescheduled following a repeat review. An urgent follow-up: the request was delayed.", sent_at: new Date("2023-05-09T08:16:28Z"), message_type: "update", attachments: 3 },
            { id: 307, sprint_id: 5, sender_id: 20, content: "The record was rejected — minor case, no further action. No response from an operator, so the ticket was reviewed. A repeat follow-up: the booking was approved.", sent_at: new Date("2023-12-15T20:24:15Z"), message_type: "question", attachments: 3 },
            { id: 308, sprint_id: 12, sender_id: 48, content: "Flagged as routine. The courier approved the ticket. The account was confirmed — unusual case, no further action. The booking was escalated — repeat case, no further action. The customer asked for a change and the payment was escalated.", sent_at: new Date("2023-02-11T11:34:24Z"), message_type: "update", attachments: 3 },
            { id: 309, sprint_id: 53, sender_id: 30, content: "The ticket was closed following a manual review. The courier reported a duplicate issue; the transfer was delayed.", sent_at: new Date("2023-09-21T13:46:58Z"), message_type: "question", attachments: 3 },
            { id: 310, sprint_id: 42, sender_id: 15, content: "The claim was updated — urgent case, no further action. The invoice was updated after a partial check. An operator asked for a change and the record was closed.", sent_at: new Date("2023-12-14T10:38:45Z"), message_type: "update", attachments: 2 },
            { id: 311, sprint_id: 50, sender_id: 36, content: "The reviewer asked for a change and the account was reopened. The customer confirmed the details and the report was escalated. The record was processed following a minor review. A repeat record was rejected the same day.", sent_at: new Date("2023-06-12T16:29:21Z"), message_type: "question", attachments: 2 },
            { id: 312, sprint_id: 96, sender_id: 16, content: "The supplier confirmed the details and the invoice was updated. Support reported a standard issue; the request was rejected. An unusual follow-up: the ticket was completed. The booking was confirmed after an incomplete check.", sent_at: new Date("2023-11-09T14:36:07Z"), message_type: "update", attachments: 2 },
            { id: 313, sprint_id: 54, sender_id: 14, content: null, sent_at: new Date("2023-01-16T10:01:43Z"), message_type: "update", attachments: 3 },
            { id: 314, sprint_id: 66, sender_id: 48, content: "The order was rescheduled — partial case, no further action. The document was rescheduled after an incomplete check.", sent_at: new Date("2023-07-23T00:58:21Z"), message_type: "question", attachments: 2 },
            { id: 315, sprint_id: 29, sender_id: 8, content: "An incomplete account was replaced the same day. Flagged as routine. The account owner updated the refund.", sent_at: new Date("2023-01-11T18:08:00Z"), message_type: "update", attachments: 4 },
            { id: 316, sprint_id: 27, sender_id: 48, content: "No response from the supplier, so the ticket was rejected. A routine follow-up: the booking was rejected.", sent_at: new Date("2023-03-02T16:05:32Z"), message_type: "feedback", attachments: 2 },
            { id: 317, sprint_id: 12, sender_id: 10, content: "A manual follow-up: the transfer was approved. An operator reported a duplicate issue; the ticket was confirmed. A manual follow-up: the record was confirmed. A repeat follow-up: the transfer was updated.", sent_at: new Date("2023-12-19T10:38:14Z"), message_type: "feedback", attachments: 3 },
            { id: 318, sprint_id: 30, sender_id: 43, content: "The ticket was replaced following a routine review. Flagged as standard. The customer replaced the document. Support confirmed the details and the session was confirmed. No response from the account owner, so the shipment was reviewed.", sent_at: new Date("2023-05-25T19:51:26Z"), message_type: "update", attachments: 3 },
            { id: 319, sprint_id: 11, sender_id: 32, content: "The refund was updated following a manual review. Support confirmed the details and the shipment was closed.", sent_at: new Date("2023-07-29T20:43:16Z"), message_type: "update", attachments: 3 },
            { id: 320, sprint_id: 56, sender_id: 6, content: "A minor order was resolved the same day. Flagged as duplicate. The courier delayed the item. The reviewer asked for a change and the record was updated. Flagged as unusual. The team delayed the transfer.", sent_at: new Date("2023-08-17T17:32:30Z"), message_type: "question", attachments: 3 },
            { id: 321, sprint_id: 89, sender_id: 42, content: "The document was delayed after a partial check. The supplier confirmed the details and the transfer was rescheduled.", sent_at: new Date("2023-02-28T16:05:09Z"), message_type: "update", attachments: 3 },
            { id: 322, sprint_id: 56, sender_id: 50, content: "The account owner confirmed the details and the invoice was processed. An incomplete follow-up: the request was reviewed. The report was refunded — automatic case, no further action.", sent_at: new Date("2023-04-14T21:07:44Z"), message_type: "update", attachments: 2 },
            { id: 323, sprint_id: 74, sender_id: 17, content: "An operator asked for a change and the order was processed. The team confirmed the details and the request was completed. A routine booking was reopened the same day. The request was approved after a duplicate check.", sent_at: new Date("2023-04-06T19:40:31Z"), message_type: "update", attachments: 3 },
            { id: 324, sprint_id: 99, sender_id: 18, content: "The item was processed after a repeat check. The ticket was approved following a minor review. Support confirmed the details and the record was completed. No response from the reviewer, so the document was rejected.", sent_at: new Date("2023-01-12T19:45:39Z"), message_type: "update", attachments: 3 },
            { id: 325, sprint_id: 54, sender_id: 21, content: "No response from the account owner, so the payment was replaced. Flagged as automatic. The team resolved the booking. An operator reported a standard issue; the delivery was completed.", sent_at: new Date("2023-07-05T18:34:14Z"), message_type: "question", attachments: 3 },
            { id: 326, sprint_id: 21, sender_id: 3, content: "Support confirmed the details and the session was confirmed. The supplier confirmed the details and the item was rescheduled. The record was closed — duplicate case, no further action.", sent_at: new Date("2023-04-16T19:12:19Z"), message_type: "update", attachments: 2 },
            { id: 327, sprint_id: 18, sender_id: 50, content: null, sent_at: new Date("2023-12-20T17:49:24Z"), message_type: "update", attachments: 4 },
            { id: 328, sprint_id: 40, sender_id: 48, content: "A duplicate follow-up: the account was confirmed. The supplier asked for a change and the item was cancelled. Flagged as repeat. The team resolved the shipment. The transfer was rejected after a repeat check.", sent_at: new Date("2023-10-10T19:46:15Z"), message_type: "update", attachments: 3 },
            { id: 329, sprint_id: 62, sender_id: 36, content: "Flagged as routine. An operator replaced the ticket. The reviewer asked for a change and the order was updated. A duplicate follow-up: the delivery was reviewed.", sent_at: new Date("2023-12-30T09:07:00Z"), message_type: "feedback", attachments: 3 },
            { id: 330, sprint_id: 76, sender_id: 29, content: "The customer confirmed the details and the record was closed. A partial item was updated the same day.", sent_at: new Date("2023-03-23T07:20:03Z"), message_type: "update", attachments: 2 },
            { id: 331, sprint_id: 88, sender_id: 49, content: "Flagged as incomplete. An operator confirmed the invoice. The item was approved — late case, no further action. An unusual booking was replaced the same day.", sent_at: new Date("2023-04-08T15:52:41Z"), message_type: "feedback", attachments: 1 },
            { id: 332, sprint_id: 82, sender_id: 40, content: "The account owner asked for a change and the invoice was delayed. The supplier reported a duplicate issue; the report was reviewed.", sent_at: new Date("2023-10-30T10:08:52Z"), message_type: "feedback", attachments: 3 },
            { id: 333, sprint_id: 18, sender_id: 12, content: "An operator confirmed the details and the order was reopened. A routine item was escalated the same day. No response from the customer, so the shipment was updated. No response from an operator, so the ticket was delayed.", sent_at: new Date("2023-11-26T11:13:05Z"), message_type: "update", attachments: 2 },
            { id: 334, sprint_id: 1, sender_id: 15, content: null, sent_at: new Date("2023-08-29T19:31:01Z"), message_type: "feedback", attachments: 2 },
            { id: 335, sprint_id: 51, sender_id: 12, content: "Support reported a manual issue; the order was closed. The payment was rescheduled — duplicate case, no further action. An operator confirmed the details and the request was refunded. No response from the account owner, so the shipment was escalated.", sent_at: new Date("2023-01-21T15:59:46Z"), message_type: "question", attachments: 3 },
            { id: 336, sprint_id: 48, sender_id: 5, content: "A repeat document was cancelled the same day. The account owner confirmed the details and the order was replaced. The report was closed following a repeat review.", sent_at: new Date("2023-12-14T09:32:12Z"), message_type: "update", attachments: 4 },
            { id: 337, sprint_id: 68, sender_id: 33, content: "The appointment was updated following a manual review. The team asked for a change and the claim was refunded.", sent_at: new Date("2023-05-11T07:35:31Z"), message_type: "feedback", attachments: 2 },
            { id: 338, sprint_id: 13, sender_id: 17, content: "The account owner confirmed the details and the report was delayed. An unusual payment was reviewed the same day. A partial document was cancelled the same day. An automatic follow-up: the booking was processed.", sent_at: new Date("2023-04-13T00:45:11Z"), message_type: "update", attachments: 4 },
            { id: 339, sprint_id: 6, sender_id: 3, content: "The ticket was processed — standard case, no further action. The courier confirmed the details and the request was completed. An incomplete request was updated the same day.", sent_at: new Date("2023-03-17T22:19:15Z"), message_type: "update", attachments: 3 },
            { id: 340, sprint_id: 41, sender_id: 11, content: "The customer confirmed the details and the document was rejected. A duplicate item was reviewed the same day. Support confirmed the details and the record was delayed. Support reported an unusual issue; the invoice was processed.", sent_at: new Date("2023-04-10T10:40:25Z"), message_type: "update", attachments: 3 },
            { id: 341, sprint_id: 62, sender_id: 16, content: "The reviewer reported a duplicate issue; the delivery was rescheduled. Flagged as manual. The team processed the document.", sent_at: new Date("2023-07-02T08:24:22Z"), message_type: "update", attachments: 3 },
            { id: 342, sprint_id: 47, sender_id: 20, content: "Flagged as minor. Support cancelled the payment. The delivery was resolved following an incomplete review.", sent_at: new Date("2023-09-18T11:40:15Z"), message_type: "question", attachments: 3 },
            { id: 343, sprint_id: 66, sender_id: 30, content: "An incomplete follow-up: the account was closed. Flagged as repeat. An operator replaced the delivery.", sent_at: new Date("2023-04-18T17:16:22Z"), message_type: "update", attachments: 3 },
            { id: 344, sprint_id: 74, sender_id: 50, content: "Flagged as incomplete. An operator approved the request. No response from the supplier, so the shipment was confirmed. The team reported a late issue; the refund was refunded.", sent_at: new Date("2023-10-07T14:43:56Z"), message_type: "update", attachments: 3 },
            { id: 345, sprint_id: 71, sender_id: 45, content: "The account owner asked for a change and the ticket was confirmed. The account was processed — urgent case, no further action. The account owner asked for a change and the booking was refunded.", sent_at: new Date("2023-07-17T14:45:33Z"), message_type: "update", attachments: 3 },
            { id: 346, sprint_id: 12, sender_id: 14, content: "The supplier confirmed the details and the order was reviewed. The courier asked for a change and the session was approved. Flagged as minor. The reviewer processed the payment.", sent_at: new Date("2023-05-06T11:14:47Z"), message_type: "question", attachments: 3 },
            { id: 347, sprint_id: 70, sender_id: 25, content: "The refund was completed — repeat case, no further action. The account owner reported a duplicate issue; the document was resolved.", sent_at: new Date("2023-04-18T22:26:02Z"), message_type: "question", attachments: 3 },
            { id: 348, sprint_id: 85, sender_id: 19, content: "Flagged as unusual. The reviewer reviewed the request. No response from support, so the booking was approved. A standard follow-up: the refund was completed.", sent_at: new Date("2023-08-13T19:36:36Z"), message_type: "update", attachments: 3 },
            { id: 349, sprint_id: 73, sender_id: 31, content: null, sent_at: new Date("2023-01-04T10:26:22Z"), message_type: "feedback", attachments: 2 },
            { id: 350, sprint_id: 5, sender_id: 38, content: "No response from the account owner, so the ticket was confirmed. A standard shipment was reopened the same day.", sent_at: new Date("2023-05-29T06:05:24Z"), message_type: "update", attachments: 3 },
            { id: 351, sprint_id: 76, sender_id: 32, content: "The record was completed following a partial review. The session was rescheduled after an urgent check.", sent_at: new Date("2023-04-23T11:12:03Z"), message_type: "question", attachments: 2 },
            { id: 352, sprint_id: 21, sender_id: 18, content: "Support asked for a change and the record was closed. The session was refunded after an automatic check. An incomplete invoice was cancelled the same day. The report was resolved after a standard check.", sent_at: new Date("2023-07-16T21:29:00Z"), message_type: "question", attachments: 3 },
            { id: 353, sprint_id: 67, sender_id: 27, content: "The customer reported a manual issue; the record was rescheduled. The record was updated after a routine check.", sent_at: new Date("2023-06-11T08:47:23Z"), message_type: "question", attachments: 2 },
            { id: 354, sprint_id: 55, sender_id: 6, content: null, sent_at: new Date("2023-09-21T21:05:34Z"), message_type: "update", attachments: 2 },
            { id: 355, sprint_id: 70, sender_id: 12, content: "The request was cancelled following a partial review. The invoice was refunded — partial case, no further action. A standard booking was confirmed the same day.", sent_at: new Date("2023-12-29T17:58:40Z"), message_type: "question", attachments: 3 },
            { id: 356, sprint_id: 83, sender_id: 18, content: "A late follow-up: the order was updated. The shipment was rejected following an incomplete review. Flagged as automatic. The customer refunded the ticket. The courier reported a partial issue; the transfer was refunded.", sent_at: new Date("2023-03-03T19:44:19Z"), message_type: "question", attachments: 3 },
            { id: 357, sprint_id: 84, sender_id: 11, content: "A standard follow-up: the order was delayed. The record was replaced after an incomplete check. A standard appointment was rejected the same day. The record was replaced — minor case, no further action.", sent_at: new Date("2023-06-30T08:57:43Z"), message_type: "question", attachments: 3 },
            { id: 358, sprint_id: 38, sender_id: 11, content: "A late follow-up: the claim was refunded. The ticket was replaced following a routine review. No response from the account owner, so the claim was reopened.", sent_at: new Date("2023-04-06T18:44:11Z"), message_type: "update", attachments: 3 },
            { id: 359, sprint_id: 1, sender_id: 13, content: "The customer reported an automatic issue; the document was reviewed. The courier confirmed the details and the item was closed. Flagged as standard. Support escalated the document. A manual delivery was escalated the same day.", sent_at: new Date("2023-09-09T17:56:07Z"), message_type: "feedback", attachments: 3 },
            { id: 360, sprint_id: 79, sender_id: 39, content: "An automatic follow-up: the invoice was approved. The delivery was resolved — repeat case, no further action.", sent_at: new Date("2023-06-18T19:40:15Z"), message_type: "question", attachments: 3 },
            { id: 361, sprint_id: 33, sender_id: 35, content: "A partial refund was escalated the same day. Support reported an unusual issue; the appointment was delayed. The session was cancelled — unusual case, no further action. An operator asked for a change and the session was confirmed.", sent_at: new Date("2023-05-28T14:27:12Z"), message_type: "question", attachments: 2 },
            { id: 362, sprint_id: 33, sender_id: 40, content: "No response from the team, so the invoice was resolved. The reviewer confirmed the details and the request was updated.", sent_at: new Date("2023-08-13T07:56:05Z"), message_type: "update", attachments: 4 },
            { id: 363, sprint_id: 100, sender_id: 38, content: null, sent_at: new Date("2023-05-02T13:53:24Z"), message_type: "update", attachments: 2 },
            { id: 364, sprint_id: 60, sender_id: 50, content: "The team asked for a change and the ticket was updated. The courier asked for a change and the account was reviewed.", sent_at: new Date("2023-01-06T08:34:00Z"), message_type: "update", attachments: 2 },
            { id: 365, sprint_id: 96, sender_id: 10, content: "The invoice was rescheduled following an unusual review. Support asked for a change and the account was reopened. Support confirmed the details and the session was processed. The session was resolved following a standard review.", sent_at: new Date("2023-01-07T00:11:12Z"), message_type: "feedback", attachments: 3 },
            { id: 366, sprint_id: 94, sender_id: 22, content: "An unusual follow-up: the appointment was refunded. Support reported a standard issue; the transfer was updated. A standard report was escalated the same day.", sent_at: new Date("2023-12-28T16:42:57Z"), message_type: "update", attachments: 2 },
            { id: 367, sprint_id: 51, sender_id: 3, content: "An urgent shipment was refunded the same day. Flagged as late. The customer replaced the order.", sent_at: new Date("2023-01-25T20:53:14Z"), message_type: "update", attachments: 3 },
            { id: 368, sprint_id: 26, sender_id: 26, content: "The customer confirmed the details and the session was escalated. An operator reported an unusual issue; the request was updated. The invoice was resolved — automatic case, no further action.", sent_at: new Date("2023-07-05T10:19:14Z"), message_type: "question", attachments: 2 },
            { id: 369, sprint_id: 98, sender_id: 2, content: "A routine follow-up: the request was refunded. A late follow-up: the document was rejected.", sent_at: new Date("2023-02-03T14:08:00Z"), message_type: "question", attachments: 2 },
            { id: 370, sprint_id: 95, sender_id: 38, content: "A manual follow-up: the order was escalated. The team asked for a change and the document was reopened. An operator asked for a change and the order was approved.", sent_at: new Date("2023-01-06T18:53:21Z"), message_type: "question", attachments: 2 },
            { id: 371, sprint_id: 77, sender_id: 42, content: "Flagged as repeat. The team replaced the payment. The request was updated following a partial review. Support confirmed the details and the refund was replaced. The order was confirmed after a standard check.", sent_at: new Date("2023-04-12T20:34:48Z"), message_type: "feedback", attachments: 2 },
            { id: 372, sprint_id: 48, sender_id: 33, content: "The item was processed after an urgent check. Flagged as repeat. The customer approved the ticket. The supplier confirmed the details and the record was processed. The customer confirmed the details and the transfer was resolved.", sent_at: new Date("2023-02-13T13:58:08Z"), message_type: "question", attachments: 3 },
            { id: 373, sprint_id: 94, sender_id: 25, content: "The account was delayed following a minor review. The refund was reviewed following a late review.", sent_at: new Date("2023-09-25T18:33:45Z"), message_type: "update", attachments: 2 },
            { id: 374, sprint_id: 72, sender_id: 23, content: "A manual follow-up: the request was closed. The account owner reported a duplicate issue; the item was approved. No response from support, so the document was closed.", sent_at: new Date("2023-01-08T16:12:47Z"), message_type: "update", attachments: 3 },
            { id: 375, sprint_id: 19, sender_id: 12, content: "No response from the reviewer, so the account was approved. The refund was completed after a manual check.", sent_at: new Date("2023-01-08T12:03:09Z"), message_type: "feedback", attachments: 2 },
            { id: 376, sprint_id: 30, sender_id: 15, content: "The courier asked for a change and the ticket was reopened. An unusual document was rejected the same day.", sent_at: new Date("2023-02-23T09:52:40Z"), message_type: "question", attachments: 2 },
            { id: 377, sprint_id: 54, sender_id: 33, content: "The payment was replaced after a partial check. Flagged as duplicate. The customer reviewed the record.", sent_at: new Date("2023-06-07T19:42:39Z"), message_type: "update", attachments: 4 },
            { id: 378, sprint_id: 3, sender_id: 31, content: "The claim was cancelled after an incomplete check. The customer asked for a change and the payment was reopened. The appointment was rescheduled after a standard check.", sent_at: new Date("2023-05-17T16:13:37Z"), message_type: "update", attachments: 3 },
            { id: 379, sprint_id: 95, sender_id: 28, content: "Flagged as partial. Support reviewed the order. The ticket was rejected after a routine check. The courier asked for a change and the refund was reviewed. The account was delayed following a late review.", sent_at: new Date("2023-09-14T18:49:46Z"), message_type: "question", attachments: 3 },
            { id: 380, sprint_id: 60, sender_id: 8, content: "The account owner confirmed the details and the claim was reviewed. Flagged as partial. The team updated the appointment. The record was escalated following a repeat review.", sent_at: new Date("2023-01-27T08:36:57Z"), message_type: "question", attachments: 4 },
            { id: 381, sprint_id: 63, sender_id: 47, content: "The invoice was replaced following a standard review. Flagged as duplicate. Support confirmed the document. No response from the courier, so the booking was cancelled.", sent_at: new Date("2023-02-02T14:14:43Z"), message_type: "update", attachments: 3 },
            { id: 382, sprint_id: 19, sender_id: 9, content: "No response from support, so the refund was rejected. The account owner confirmed the details and the invoice was resolved.", sent_at: new Date("2023-11-09T21:44:36Z"), message_type: "question", attachments: 4 },
            { id: 383, sprint_id: 26, sender_id: 30, content: "The order was closed after an incomplete check. Flagged as automatic. The team approved the document.", sent_at: new Date("2023-04-05T18:50:20Z"), message_type: "question", attachments: 3 },
            { id: 384, sprint_id: 97, sender_id: 8, content: "The record was replaced — manual case, no further action. The supplier reported a standard issue; the claim was approved.", sent_at: new Date("2023-09-09T12:30:14Z"), message_type: "feedback", attachments: 3 },
            { id: 385, sprint_id: 6, sender_id: 9, content: "The team confirmed the details and the refund was replaced. The invoice was processed following a standard review. The account was reviewed after a manual check.", sent_at: new Date("2023-10-23T14:52:56Z"), message_type: "update", attachments: 3 },
            { id: 386, sprint_id: 55, sender_id: 21, content: "Flagged as manual. The account owner rejected the appointment. The courier asked for a change and the order was reopened. The customer reported an automatic issue; the document was replaced.", sent_at: new Date("2023-04-03T17:59:46Z"), message_type: "question", attachments: 2 },
            { id: 387, sprint_id: 7, sender_id: 33, content: "The document was reopened following a late review. The account owner confirmed the details and the session was refunded. A late delivery was refunded the same day. The delivery was reviewed — minor case, no further action.", sent_at: new Date("2023-09-27T10:34:11Z"), message_type: "question", attachments: 3 },
            { id: 388, sprint_id: 82, sender_id: 9, content: null, sent_at: new Date("2023-04-24T09:53:13Z"), message_type: "update", attachments: 2 },
            { id: 389, sprint_id: 66, sender_id: 11, content: "A standard follow-up: the ticket was completed. The session was replaced after an unusual check.", sent_at: new Date("2023-09-04T18:21:37Z"), message_type: "question", attachments: 4 },
            { id: 390, sprint_id: 52, sender_id: 7, content: "A standard session was escalated the same day. The reviewer confirmed the details and the session was reviewed. The session was rescheduled after a repeat check.", sent_at: new Date("2023-08-20T09:11:26Z"), message_type: "question", attachments: 2 },
            { id: 391, sprint_id: 11, sender_id: 37, content: "The courier confirmed the details and the ticket was resolved. The order was rejected after a partial check. No response from an operator, so the account was confirmed. An operator asked for a change and the appointment was resolved.", sent_at: new Date("2023-08-24T04:32:31Z"), message_type: "update", attachments: 2 },
            { id: 392, sprint_id: 37, sender_id: 11, content: "An automatic follow-up: the session was closed. A repeat transfer was delayed the same day. The request was reopened following a routine review.", sent_at: new Date("2023-12-02T07:57:28Z"), message_type: "question", attachments: 2 },
            { id: 393, sprint_id: 2, sender_id: 50, content: "The item was processed — duplicate case, no further action. The order was confirmed — standard case, no further action.", sent_at: new Date("2023-12-19T15:58:55Z"), message_type: "update", attachments: 2 },
            { id: 394, sprint_id: 73, sender_id: 31, content: null, sent_at: new Date("2023-07-24T16:18:54Z"), message_type: "question", attachments: 1 },
            { id: 395, sprint_id: 30, sender_id: 17, content: "The document was rejected — minor case, no further action. The booking was reviewed after a late check. Flagged as manual. An operator closed the report. The claim was completed after a repeat check.", sent_at: new Date("2023-01-10T01:12:28Z"), message_type: "feedback", attachments: 4 },
            { id: 396, sprint_id: 80, sender_id: 20, content: "The team confirmed the details and the payment was completed. A routine follow-up: the session was approved.", sent_at: new Date("2023-02-13T18:41:25Z"), message_type: "update", attachments: 3 },
            { id: 397, sprint_id: 63, sender_id: 1, content: "The courier asked for a change and the session was delayed. A late order was reopened the same day.", sent_at: new Date("2023-07-26T21:07:43Z"), message_type: "question", attachments: 4 },
            { id: 398, sprint_id: 16, sender_id: 19, content: "A minor refund was approved the same day. Flagged as unusual. The reviewer approved the claim. The booking was reviewed — incomplete case, no further action. A manual report was reviewed the same day.", sent_at: new Date("2023-01-28T13:12:37Z"), message_type: "question", attachments: 3 },
            { id: 399, sprint_id: 69, sender_id: 4, content: "The delivery was replaced — routine case, no further action. The report was completed — partial case, no further action. The customer asked for a change and the ticket was approved. A duplicate document was processed the same day.", sent_at: new Date("2023-06-02T01:08:30Z"), message_type: "update", attachments: 1 },
            { id: 400, sprint_id: 40, sender_id: 26, content: "The customer asked for a change and the refund was rejected. The account was reviewed — incomplete case, no further action. The request was refunded after a repeat check.", sent_at: new Date("2023-10-31T18:39:51Z"), message_type: "update", attachments: 2 },
        ],
    });
}

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