// Farm Fresh Connections (farm-to-table-food-app) v1 — Prisma seed
// Synthetic sample data, CC0-1.0. Generated deterministically; re-running the
// generator with the same spec and seed reproduces this file exactly.
//
// Delegates are named after the tables (prisma.drivers), 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.drivers.createMany({
        data: [
            { id: 1, name: "Emma Ahmed", vehicle_type: "truck", experience_years: 4 },
            { id: 2, name: "Yara Pereira", vehicle_type: "truck", experience_years: 16 },
            { id: 3, name: "Sofia Hughes", vehicle_type: "truck", experience_years: 12 },
            { id: 4, name: "Yusuf Garcia", vehicle_type: "truck", experience_years: 20 },
            { id: 5, name: "Jade Larsen", vehicle_type: "truck", experience_years: 13 },
            { id: 6, name: "Maria Johnson", vehicle_type: "van", experience_years: 17 },
            { id: 7, name: "Diego Garcia", vehicle_type: "van", experience_years: 18 },
            { id: 8, name: "Anna Hughes", vehicle_type: "bike", experience_years: null },
            { id: 9, name: "Lena Sato", vehicle_type: "bike", experience_years: null },
            { id: 10, name: "Sara Sousa", vehicle_type: "bike", experience_years: null },
            { id: 11, name: "Arjun Evans", vehicle_type: "van", experience_years: 2 },
            { id: 12, name: "Chloe Wilson", vehicle_type: "bike", experience_years: null },
            { id: 13, name: "Nadia Kim", vehicle_type: "truck", experience_years: 6 },
            { id: 14, name: "Anna Torres", vehicle_type: "truck", experience_years: 20 },
            { id: 15, name: "Ibrahim Rossi", vehicle_type: "truck", experience_years: 6 },
            { id: 16, name: "Diego Garcia", vehicle_type: "truck", experience_years: 22 },
            { id: 17, name: "Fatima Gupta", vehicle_type: "truck", experience_years: 26 },
            { id: 18, name: "Arjun Silva", vehicle_type: "van", experience_years: 7 },
            { id: 19, name: "Elena Walker", vehicle_type: "van", experience_years: 12 },
            { id: 20, name: "Sven Torres", vehicle_type: "truck", experience_years: 2 },
            { id: 21, name: "Ana Mendes", vehicle_type: "van", experience_years: 18 },
            { id: 22, name: "Elif Hughes", vehicle_type: "van", experience_years: 21 },
            { id: 23, name: "Selin Mendes", vehicle_type: "truck", experience_years: 27 },
            { id: 24, name: "Ibrahim Tanaka", vehicle_type: "van", experience_years: 20 },
            { id: 25, name: "Mia Murphy", vehicle_type: "van", experience_years: 25 },
            { id: 26, name: "Kai Wright", vehicle_type: "van", experience_years: 28 },
            { id: 27, name: "Andre Flores", vehicle_type: "truck", experience_years: 12 },
            { id: 28, name: "Oscar Silva", vehicle_type: "van", experience_years: 4 },
            { id: 29, name: "Amir Meyer", vehicle_type: "truck", experience_years: 14 },
            { id: 30, name: "Tariq Schmidt", vehicle_type: "truck", experience_years: 7 },
            { id: 31, name: "Lena Klein", vehicle_type: "van", experience_years: 4 },
            { id: 32, name: "Deniz Schneider", vehicle_type: "bike", experience_years: null },
            { id: 33, name: "Felix Mendes", vehicle_type: "truck", experience_years: 20 },
            { id: 34, name: "Olivia Bennett", vehicle_type: "van", experience_years: 12 },
            { id: 35, name: "Andre Diaz", vehicle_type: "truck", experience_years: 18 },
            { id: 36, name: "Lina Costa", vehicle_type: "truck", experience_years: 25 },
            { id: 37, name: "Maria Ibrahim", vehicle_type: "truck", experience_years: 27 },
            { id: 38, name: "Ana Bennett", vehicle_type: "truck", experience_years: 7 },
            { id: 39, name: "Alice Baker", vehicle_type: "bike", experience_years: null },
            { id: 40, name: "Priya Dubois", vehicle_type: "bike", experience_years: null },
            { id: 41, name: "Pedro Wagner", vehicle_type: "truck", experience_years: 23 },
            { id: 42, name: "Grace Murphy", vehicle_type: "truck", experience_years: 12 },
            { id: 43, name: "Ines Klein", vehicle_type: "truck", experience_years: 17 },
            { id: 44, name: "Oscar Ahmed", vehicle_type: "truck", experience_years: 29 },
            { id: 45, name: "Alice Carter", vehicle_type: "truck", experience_years: 5 },
            { id: 46, name: "Zoe Lee", vehicle_type: "truck", experience_years: 21 },
            { id: 47, name: "Ivan Wright", vehicle_type: "truck", experience_years: 22 },
            { id: 48, name: "Marco Zhang", vehicle_type: "truck", experience_years: 4 },
            { id: 49, name: "Felix Cruz", vehicle_type: "van", experience_years: 13 },
            { id: 50, name: "Leo Schmidt", vehicle_type: "van", experience_years: 3 },
            { id: 51, name: "Ines Weber", vehicle_type: "bike", experience_years: null },
            { id: 52, name: "Olivia Bauer", vehicle_type: "van", experience_years: 6 },
            { id: 53, name: "Sam Yilmaz", vehicle_type: "van", experience_years: 8 },
            { id: 54, name: "Maja Klein", vehicle_type: "truck", experience_years: 28 },
            { id: 55, name: "Yara Andersen", vehicle_type: "bike", experience_years: null },
            { id: 56, name: "Lucas Castro", vehicle_type: "van", experience_years: 19 },
            { id: 57, name: "Ines Gomez", vehicle_type: "van", experience_years: 30 },
            { id: 58, name: "Jonas Kowalski", vehicle_type: "truck", experience_years: 10 },
            { id: 59, name: "Diego Almeida", vehicle_type: "truck", experience_years: 1 },
            { id: 60, name: "Laura Wang", vehicle_type: "bike", experience_years: null },
        ],
    });
    await prisma.farms.createMany({
        data: [
            { id: 1, name: "Canyon", certification_type: "organic", location: "Edinburgh" },
            { id: 2, name: "Hillside Green", certification_type: "organic", location: "Delhi" },
            { id: 3, name: "Creek Prairie", certification_type: "organic", location: "Zurich" },
            { id: 4, name: "Homestead Bloom", certification_type: "organic", location: "Brussels" },
            { id: 5, name: "Sunny Homestead", certification_type: "sustainable", location: "Hamburg" },
            { id: 6, name: "Bloom", certification_type: "organic", location: "Hamburg" },
            { id: 7, name: "Field", certification_type: "sustainable", location: "Delhi" },
            { id: 8, name: "Canyon Prairie", certification_type: "organic", location: "Copenhagen" },
            { id: 9, name: "Creek", certification_type: "none", location: null },
            { id: 10, name: "Sunny Field", certification_type: "sustainable", location: "Austin" },
            { id: 11, name: "Green", certification_type: "sustainable", location: "Montreal" },
            { id: 12, name: "Creek Homestead Prairie", certification_type: "organic", location: "Helsinki" },
            { id: 13, name: "Canyon Farmstead", certification_type: "organic", location: "Santiago" },
            { id: 14, name: "Woodland Hillside Canyon", certification_type: "sustainable", location: "London" },
            { id: 15, name: "Meadow Grove", certification_type: "organic", location: "Barcelona" },
            { id: 16, name: "Orchard", certification_type: "organic", location: "London" },
            { id: 17, name: "Haven Pasture Creek", certification_type: "organic", location: "Helsinki" },
            { id: 18, name: "Harvest Prairie Pasture", certification_type: "organic", location: "Singapore" },
            { id: 19, name: "Ridge Crest Hillside", certification_type: "sustainable", location: "Helsinki" },
            { id: 20, name: "Hillside", certification_type: "sustainable", location: "Dublin" },
            { id: 21, name: "Pasture Meadow", certification_type: "sustainable", location: "Warsaw" },
            { id: 22, name: "Meadow Orchard", certification_type: "organic", location: "Milan" },
            { id: 23, name: "Crest Sunny Homestead", certification_type: "organic", location: "Manila" },
            { id: 24, name: "Grove Field", certification_type: "organic", location: "San Diego" },
            { id: 25, name: "Bloom Canyon Homestead", certification_type: "organic", location: "Bogota" },
            { id: 26, name: "Ridge Homestead", certification_type: "organic", location: "Nairobi" },
            { id: 27, name: "Farmstead", certification_type: "organic", location: "Hamburg" },
            { id: 28, name: "Homestead Sunny Grove", certification_type: "organic", location: "Melbourne" },
            { id: 29, name: "Green Bloom Ridge", certification_type: "organic", location: "Auckland" },
            { id: 30, name: "Canyon Crest", certification_type: "organic", location: "Copenhagen" },
            { id: 31, name: "Green Farmstead", certification_type: "sustainable", location: "Bogota" },
            { id: 32, name: "Pasture Ridge", certification_type: "none", location: null },
            { id: 33, name: "Ridge Creek Canyon", certification_type: "organic", location: "Copenhagen" },
            { id: 34, name: "Haven Homestead", certification_type: "organic", location: "Warsaw" },
            { id: 35, name: "Prairie", certification_type: "organic", location: "Melbourne" },
            { id: 36, name: "Sunny Haven Orchard", certification_type: "organic", location: "Manchester" },
            { id: 37, name: "Field", certification_type: "organic", location: "Seattle" },
            { id: 38, name: "Hillside", certification_type: "organic", location: "Brussels" },
            { id: 39, name: "Harvest Orchard Homestead", certification_type: "organic", location: "Ankara" },
            { id: 40, name: "Green", certification_type: "organic", location: "Brussels" },
            { id: 41, name: "Woodland Haven", certification_type: "organic", location: "Warsaw" },
            { id: 42, name: "Green", certification_type: "organic", location: "Milan" },
            { id: 43, name: "Ridge Field", certification_type: "organic", location: "Toronto" },
            { id: 44, name: "Green Creek", certification_type: "organic", location: "Auckland" },
            { id: 45, name: "Crest", certification_type: "organic", location: "Jakarta" },
            { id: 46, name: "Crest Woodland", certification_type: "organic", location: "Jakarta" },
            { id: 47, name: "Pasture", certification_type: "organic", location: "Porto" },
            { id: 48, name: "Pasture", certification_type: "organic", location: "Milan" },
            { id: 49, name: "Pasture Creek Green", certification_type: "sustainable", location: "Bangkok" },
            { id: 50, name: "Prairie Homestead Green", certification_type: "organic", location: "Budapest" },
        ],
    });
    await prisma.restaurants.createMany({
        data: [
            { id: 1, name: "Culinary Taste Sprout", contact_email: "culinary.tastesprout@example.net", location: "Milan", rating: "4.9" },
            { id: 2, name: "Field Dine", contact_email: "field.dine@example.net", location: "Toronto", rating: "4.5" },
            { id: 3, name: "Flavors", contact_email: "flavors.flavors@example.net", location: "Bucharest", rating: "3.8" },
            { id: 4, name: "Savor", contact_email: "savor.savor@example.com", location: "Sydney", rating: "3.6" },
            { id: 5, name: "Cuisine Fresh", contact_email: "cuisine.fresh@example.com", location: "London", rating: "3.8" },
            { id: 6, name: "Culinary Oasis Table", contact_email: "culinary.oasistable@example.com", location: "Melbourne", rating: "1.9" },
            { id: 7, name: "Cuisine", contact_email: "cuisine.cuisine@example.org", location: "Cape Town", rating: null },
            { id: 8, name: "Gather Field", contact_email: "gather.field@example.com", location: "Lima", rating: null },
            { id: 9, name: "Savor Nourish Culinary", contact_email: "savor.nourishculinary@example.net", location: "Barcelona", rating: "1.7" },
            { id: 10, name: "Table Bistro Harvest", contact_email: "table.bistroharvest@example.org", location: "Dublin", rating: "4.8" },
            { id: 11, name: "Garden Fresh", contact_email: null, location: "Lima", rating: "5.0" },
            { id: 12, name: "Fresh Market Savor", contact_email: "fresh.marketsavor@example.net", location: "Mexico City", rating: "3.8" },
            { id: 13, name: "Season", contact_email: "season.season@example.com", location: "Budapest", rating: "4.8" },
            { id: 14, name: "Garden Gather Dine", contact_email: "garden.gatherdine@example.com", location: "Boston", rating: "2.7" },
            { id: 15, name: "Season", contact_email: "season.season@example.net", location: "Bucharest", rating: "4.8" },
            { id: 16, name: "Roots Bistro Market", contact_email: "roots.bistromarket@example.net", location: "Lagos", rating: "4.0" },
            { id: 17, name: "Season", contact_email: "season.season@example.com", location: "Ankara", rating: "5.0" },
            { id: 18, name: "Savor", contact_email: "savor.savor@example.org", location: "Austin", rating: "2.6" },
            { id: 19, name: "Fresh Sprout", contact_email: "fresh.sprout@example.org", location: "Austin", rating: "4.5" },
            { id: 20, name: "Cuisine", contact_email: null, location: "Edinburgh", rating: "2.8" },
            { id: 21, name: "Gather Savor Dine", contact_email: "gather.savordine@example.net", location: "Sao Paulo", rating: "2.2" },
            { id: 22, name: "Garden Market", contact_email: "garden.market@example.net", location: "Chicago", rating: "1.3" },
            { id: 23, name: "Savor Table", contact_email: "savor.table@example.net", location: "Austin", rating: "4.3" },
            { id: 24, name: "Garden Nourish", contact_email: "garden.nourish@example.org", location: "Manchester", rating: "3.8" },
            { id: 25, name: "Gather Garden Market", contact_email: "gather.gardenmarket@example.com", location: "Copenhagen", rating: "2.0" },
            { id: 26, name: "Savor Cuisine Fresh", contact_email: "savor.cuisinefresh@example.net", location: "Milan", rating: "3.5" },
            { id: 27, name: "Culinary Platter", contact_email: null, location: "San Diego", rating: "2.2" },
            { id: 28, name: "Garden Sprout Taste", contact_email: "garden.sprouttaste@example.org", location: "Hamburg", rating: "3.4" },
            { id: 29, name: "Harvest Sprout", contact_email: "harvest.sprout@example.net", location: "Warsaw", rating: "3.4" },
            { id: 30, name: "Season Table Fresh", contact_email: "season.tablefresh@example.com", location: "Amsterdam", rating: "5.0" },
            { id: 31, name: "Harvest Season Garden", contact_email: "harvest.seasongarden@example.org", location: "Stockholm", rating: "4.8" },
            { id: 32, name: "Savor", contact_email: "savor.savor@example.com", location: "Lisbon", rating: "5.0" },
            { id: 33, name: "Gather", contact_email: "gather.gather@example.com", location: "Istanbul", rating: "4.0" },
            { id: 34, name: "Harvest Oasis Garden", contact_email: "harvest.oasisgarden@example.com", location: "Munich", rating: "4.8" },
            { id: 35, name: "Table", contact_email: "table.table@example.com", location: "Izmir", rating: "1.5" },
            { id: 36, name: "Gather", contact_email: "gather.gather@example.com", location: "Santiago", rating: "4.9" },
            { id: 37, name: "Roots Nourish Table", contact_email: "roots.nourishtable@example.com", location: "Bucharest", rating: "3.1" },
            { id: 38, name: "Market Taste", contact_email: "market.taste@example.org", location: "Manchester", rating: "2.7" },
            { id: 39, name: "Flavors Season Roots", contact_email: "flavors.seasonroots@example.net", location: "Montreal", rating: "3.3" },
            { id: 40, name: "Fresh", contact_email: null, location: "Melbourne", rating: "2.8" },
            { id: 41, name: "Platter", contact_email: "platter.platter@example.net", location: "Prague", rating: null },
            { id: 42, name: "Cuisine Taste Table", contact_email: null, location: "Buenos Aires", rating: "5.0" },
            { id: 43, name: "Dine Harvest Savor", contact_email: "dine.harvestsavor@example.com", location: "Auckland", rating: "5.0" },
            { id: 44, name: "Fresh", contact_email: "fresh.fresh@example.net", location: "Denver", rating: null },
            { id: 45, name: "Platter Oasis", contact_email: "platter.oasis@example.net", location: "London", rating: "4.9" },
            { id: 46, name: "Market Table", contact_email: "market.table@example.com", location: "Seoul", rating: "3.9" },
            { id: 47, name: "Harvest", contact_email: "harvest.harvest@example.com", location: "Brussels", rating: "4.7" },
            { id: 48, name: "Market", contact_email: "market.market@example.org", location: "Santiago", rating: "3.0" },
            { id: 49, name: "Savor Gather", contact_email: "savor.gather@example.net", location: "Delhi", rating: "5.0" },
            { id: 50, name: "Table Savor", contact_email: "table.savor@example.com", location: "Edinburgh", rating: "2.5" },
            { id: 51, name: "Field", contact_email: "field.field@example.org", location: "Oslo", rating: "3.9" },
            { id: 52, name: "Sprout", contact_email: "sprout.sprout@example.org", location: "Denver", rating: "4.2" },
            { id: 53, name: "Market", contact_email: "market.market@example.org", location: "Copenhagen", rating: "3.9" },
            { id: 54, name: "Gather", contact_email: null, location: "Manchester", rating: "4.6" },
            { id: 55, name: "Roots Nourish", contact_email: "roots.nourish@example.org", location: "Zurich", rating: "2.2" },
            { id: 56, name: "Culinary Nourish Platter", contact_email: "culinary.nourishplatter@example.net", location: "Vancouver", rating: "1.5" },
            { id: 57, name: "Cuisine Season", contact_email: "cuisine.season@example.com", location: "Helsinki", rating: "5.0" },
            { id: 58, name: "Field", contact_email: "field.field@example.net", location: "Madrid", rating: "4.1" },
            { id: 59, name: "Flavors", contact_email: null, location: "Jakarta", rating: "1.3" },
            { id: 60, name: "Bistro Savor", contact_email: "bistro.savor@example.org", location: "Austin", rating: null },
            { id: 61, name: "Culinary", contact_email: "culinary.culinary@example.net", location: "Copenhagen", rating: "1.8" },
            { id: 62, name: "Taste", contact_email: "taste.taste@example.net", location: "Prague", rating: "4.6" },
            { id: 63, name: "Season", contact_email: "season.season@example.com", location: "Bucharest", rating: "2.5" },
            { id: 64, name: "Dine Garden Gather", contact_email: "dine.gardengather@example.org", location: "Athens", rating: "4.4" },
            { id: 65, name: "Season Garden", contact_email: "season.garden@example.com", location: "Lisbon", rating: "1.5" },
            { id: 66, name: "Gather Market Culinary", contact_email: "gather.marketculinary@example.org", location: "Munich", rating: "3.5" },
            { id: 67, name: "Table Bistro", contact_email: "table.bistro@example.com", location: "Prague", rating: "4.7" },
            { id: 68, name: "Cuisine Oasis", contact_email: "cuisine.oasis@example.org", location: "Porto", rating: "2.0" },
            { id: 69, name: "Market Table", contact_email: "market.table@example.org", location: "Chicago", rating: "1.9" },
            { id: 70, name: "Taste Nourish Field", contact_email: "taste.nourishfield@example.org", location: "Singapore", rating: "3.4" },
            { id: 71, name: "Field Platter", contact_email: "field.platter@example.org", location: "Taipei", rating: "4.8" },
            { id: 72, name: "Culinary Roots Platter", contact_email: "culinary.rootsplatter@example.org", location: "Izmir", rating: "5.0" },
            { id: 73, name: "Platter Sprout Roots", contact_email: "platter.sproutroots@example.com", location: "Cairo", rating: "3.6" },
            { id: 74, name: "Nourish Field Taste", contact_email: null, location: "Montreal", rating: "5.0" },
            { id: 75, name: "Harvest", contact_email: "harvest.harvest@example.net", location: "San Diego", rating: null },
            { id: 76, name: "Table Fresh Garden", contact_email: "table.freshgarden@example.org", location: "Austin", rating: "4.5" },
            { id: 77, name: "Platter Fresh", contact_email: "platter.fresh@example.org", location: "Mexico City", rating: "4.1" },
            { id: 78, name: "Gather Savor Field", contact_email: "gather.savorfield@example.com", location: "Cape Town", rating: "4.6" },
            { id: 79, name: "Season", contact_email: "season.season@example.com", location: "Melbourne", rating: "5.0" },
            { id: 80, name: "Bistro", contact_email: "bistro.bistro@example.org", location: "Bangkok", rating: "3.8" },
            { id: 81, name: "Field Gather Bistro", contact_email: "field.gatherbistro@example.org", location: "Bangkok", rating: "4.2" },
            { id: 82, name: "Flavors Taste", contact_email: null, location: "Kyoto", rating: "3.7" },
            { id: 83, name: "Field Oasis", contact_email: "field.oasis@example.net", location: "Porto", rating: "4.9" },
            { id: 84, name: "Oasis Savor Table", contact_email: "oasis.savortable@example.org", location: "Austin", rating: "4.1" },
            { id: 85, name: "Dine", contact_email: "dine.dine@example.com", location: "Jakarta", rating: "4.2" },
            { id: 86, name: "Season Gather", contact_email: "season.gather@example.net", location: "Oslo", rating: "1.6" },
            { id: 87, name: "Table Harvest", contact_email: "table.harvest@example.net", location: "Manila", rating: "4.7" },
            { id: 88, name: "Flavors Nourish", contact_email: null, location: "Izmir", rating: "3.4" },
            { id: 89, name: "Table Savor", contact_email: "table.savor@example.net", location: "Lima", rating: "4.6" },
            { id: 90, name: "Season", contact_email: "season.season@example.com", location: "Edinburgh", rating: "3.1" },
            { id: 91, name: "Harvest", contact_email: "harvest.harvest@example.com", location: "Bogota", rating: "2.5" },
            { id: 92, name: "Oasis", contact_email: "oasis.oasis@example.net", location: "Athens", rating: "3.1" },
            { id: 93, name: "Oasis Nourish Flavors", contact_email: "oasis.nourishflavors@example.net", location: "Delhi", rating: "2.1" },
            { id: 94, name: "Fresh Oasis", contact_email: "fresh.oasis@example.com", location: "Montreal", rating: "1.9" },
            { id: 95, name: "Savor Nourish Roots", contact_email: "savor.nourishroots@example.com", location: "Berlin", rating: "4.0" },
            { id: 96, name: "Season Gather Savor", contact_email: null, location: "Santiago", rating: "4.1" },
            { id: 97, name: "Field Platter Cuisine", contact_email: null, location: "Buenos Aires", rating: "1.8" },
            { id: 98, name: "Roots", contact_email: "roots.roots@example.net", location: "Paris", rating: "2.6" },
            { id: 99, name: "Savor", contact_email: "savor.savor@example.net", location: "Paris", rating: "4.5" },
            { id: 100, name: "Nourish", contact_email: "nourish.nourish@example.org", location: "Prague", rating: "5.0" },
        ],
    });
    await prisma.deliveries.createMany({
        data: [
            { id: 1, restaurant_id: 37, farm_id: 20, delivery_date: "2023-07-12", produce_items: "onion", delivery_time_minutes: 71, delivery_status: "completed", produce_quantity: "434.99" },
            { id: 2, restaurant_id: 21, farm_id: 42, delivery_date: "2023-01-12", produce_items: null, delivery_time_minutes: 76, delivery_status: "completed", produce_quantity: "545.06" },
            { id: 3, restaurant_id: 77, farm_id: 1, delivery_date: "2023-05-28", produce_items: "zucchini cabbage onion", delivery_time_minutes: 61, delivery_status: "completed", produce_quantity: "524.05" },
            { id: 4, restaurant_id: 33, farm_id: 15, delivery_date: "2023-08-12", produce_items: "cabbage cranberry rhubarb", delivery_time_minutes: 62, delivery_status: "completed", produce_quantity: "389.45" },
            { id: 5, restaurant_id: 95, farm_id: 25, delivery_date: "2023-09-22", produce_items: "dragonfruit", delivery_time_minutes: 58, delivery_status: "completed", produce_quantity: "602.81" },
            { id: 6, restaurant_id: 98, farm_id: 19, delivery_date: "2023-02-16", produce_items: "cucumber tangerine", delivery_time_minutes: 69, delivery_status: "completed", produce_quantity: "411.74" },
            { id: 7, restaurant_id: 39, farm_id: 10, delivery_date: "2023-07-09", produce_items: "blueberry", delivery_time_minutes: 75, delivery_status: "pending", produce_quantity: "496.11" },
            { id: 8, restaurant_id: 82, farm_id: 9, delivery_date: "2023-11-29", produce_items: "rhubarb apple squash", delivery_time_minutes: 33, delivery_status: "pending", produce_quantity: "315.52" },
            { id: 9, restaurant_id: 93, farm_id: 36, delivery_date: "2023-12-31", produce_items: "asparagus watermelon", delivery_time_minutes: 80, delivery_status: "failed", produce_quantity: "580.69" },
            { id: 10, restaurant_id: 63, farm_id: 10, delivery_date: "2023-12-16", produce_items: "nectarine", delivery_time_minutes: 64, delivery_status: "completed", produce_quantity: "543.19" },
            { id: 11, restaurant_id: 30, farm_id: 43, delivery_date: "2023-08-26", produce_items: "tomato nectarine cantaloupe", delivery_time_minutes: 77, delivery_status: "pending", produce_quantity: "492.68" },
            { id: 12, restaurant_id: 13, farm_id: 43, delivery_date: "2023-11-01", produce_items: "garlic quince", delivery_time_minutes: 68, delivery_status: "completed", produce_quantity: "545.43" },
            { id: 13, restaurant_id: 80, farm_id: 5, delivery_date: "2023-11-16", produce_items: "turnip", delivery_time_minutes: 84, delivery_status: "completed", produce_quantity: "452.15" },
            { id: 14, restaurant_id: 62, farm_id: 39, delivery_date: "2023-10-05", produce_items: "asparagus", delivery_time_minutes: 33, delivery_status: "completed", produce_quantity: "640.64" },
            { id: 15, restaurant_id: 23, farm_id: 6, delivery_date: "2023-10-11", produce_items: "honeydew", delivery_time_minutes: 62, delivery_status: "completed", produce_quantity: "444.24" },
            { id: 16, restaurant_id: 41, farm_id: 3, delivery_date: "2023-10-21", produce_items: "mango date radish", delivery_time_minutes: 49, delivery_status: "completed", produce_quantity: "698.37" },
            { id: 17, restaurant_id: 58, farm_id: 21, delivery_date: "2023-08-06", produce_items: "tomato tangerine", delivery_time_minutes: 64, delivery_status: "completed", produce_quantity: "663.06" },
            { id: 18, restaurant_id: 39, farm_id: 31, delivery_date: "2023-03-31", produce_items: "eggplant leek orange", delivery_time_minutes: 67, delivery_status: "pending", produce_quantity: "529.16" },
            { id: 19, restaurant_id: 49, farm_id: 38, delivery_date: "2023-01-28", produce_items: null, delivery_time_minutes: 69, delivery_status: "completed", produce_quantity: "594.48" },
            { id: 20, restaurant_id: 81, farm_id: 26, delivery_date: "2023-12-25", produce_items: "radish leek asparagus", delivery_time_minutes: 44, delivery_status: "completed", produce_quantity: "536.78" },
            { id: 21, restaurant_id: 36, farm_id: 24, delivery_date: "2023-03-05", produce_items: "garlic", delivery_time_minutes: 60, delivery_status: "completed", produce_quantity: "474.53" },
            { id: 22, restaurant_id: 20, farm_id: 19, delivery_date: "2023-11-06", produce_items: "squash", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "562.94" },
            { id: 23, restaurant_id: 25, farm_id: 19, delivery_date: "2023-11-15", produce_items: "spinach", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "680.54" },
            { id: 24, restaurant_id: 50, farm_id: 28, delivery_date: "2023-10-25", produce_items: "watermelon kiwi", delivery_time_minutes: 57, delivery_status: "completed", produce_quantity: "473.52" },
            { id: 25, restaurant_id: 64, farm_id: 40, delivery_date: "2023-07-23", produce_items: "garlic parsnip papaya", delivery_time_minutes: 95, delivery_status: "completed", produce_quantity: "619.52" },
            { id: 26, restaurant_id: 41, farm_id: 28, delivery_date: "2023-02-01", produce_items: "celery broccoli", delivery_time_minutes: 77, delivery_status: "failed", produce_quantity: "522.00" },
            { id: 27, restaurant_id: 3, farm_id: 49, delivery_date: "2023-10-03", produce_items: "papaya leek turnip", delivery_time_minutes: 60, delivery_status: "completed", produce_quantity: "549.63" },
            { id: 28, restaurant_id: 46, farm_id: 15, delivery_date: "2023-09-26", produce_items: "cabbage pumpkin blueberry", delivery_time_minutes: 50, delivery_status: "failed", produce_quantity: "334.04" },
            { id: 29, restaurant_id: 58, farm_id: 6, delivery_date: "2023-02-07", produce_items: "squash", delivery_time_minutes: 45, delivery_status: "completed", produce_quantity: "688.13" },
            { id: 30, restaurant_id: 62, farm_id: 34, delivery_date: "2023-09-16", produce_items: "eggplant mango", delivery_time_minutes: 68, delivery_status: "completed", produce_quantity: "316.57" },
            { id: 31, restaurant_id: 15, farm_id: 19, delivery_date: "2023-07-05", produce_items: "nectarine", delivery_time_minutes: 84, delivery_status: "completed", produce_quantity: "382.99" },
            { id: 32, restaurant_id: 72, farm_id: 2, delivery_date: "2023-06-07", produce_items: "cabbage garlic", delivery_time_minutes: 50, delivery_status: "completed", produce_quantity: "801.78" },
            { id: 33, restaurant_id: 21, farm_id: 22, delivery_date: "2023-03-10", produce_items: "mushroom", delivery_time_minutes: 103, delivery_status: "failed", produce_quantity: "426.95" },
            { id: 34, restaurant_id: 27, farm_id: 2, delivery_date: "2023-08-18", produce_items: "mango apple", delivery_time_minutes: 56, delivery_status: "pending", produce_quantity: "396.48" },
            { id: 35, restaurant_id: 73, farm_id: 22, delivery_date: "2023-07-24", produce_items: null, delivery_time_minutes: 94, delivery_status: "completed", produce_quantity: "649.35" },
            { id: 36, restaurant_id: 1, farm_id: 28, delivery_date: "2023-11-29", produce_items: "beet turnip papaya", delivery_time_minutes: 64, delivery_status: "failed", produce_quantity: "522.17" },
            { id: 37, restaurant_id: 13, farm_id: 50, delivery_date: "2023-07-28", produce_items: "date quince", delivery_time_minutes: 79, delivery_status: "completed", produce_quantity: "361.41" },
            { id: 38, restaurant_id: 50, farm_id: 25, delivery_date: "2023-09-07", produce_items: "tomato", delivery_time_minutes: 59, delivery_status: "completed", produce_quantity: "616.42" },
            { id: 39, restaurant_id: 69, farm_id: 12, delivery_date: "2023-09-18", produce_items: "clementine", delivery_time_minutes: 79, delivery_status: "failed", produce_quantity: "740.05" },
            { id: 40, restaurant_id: 73, farm_id: 47, delivery_date: "2023-04-12", produce_items: "date", delivery_time_minutes: 74, delivery_status: "completed", produce_quantity: "507.90" },
            { id: 41, restaurant_id: 32, farm_id: 44, delivery_date: "2023-02-08", produce_items: "leek pumpkin", delivery_time_minutes: 38, delivery_status: "completed", produce_quantity: "698.50" },
            { id: 42, restaurant_id: 45, farm_id: 11, delivery_date: "2023-11-13", produce_items: "squash cucumber cranberry", delivery_time_minutes: 49, delivery_status: "failed", produce_quantity: "406.88" },
            { id: 43, restaurant_id: 99, farm_id: 33, delivery_date: "2023-03-10", produce_items: "watermelon", delivery_time_minutes: 72, delivery_status: "completed", produce_quantity: "409.53" },
            { id: 44, restaurant_id: 19, farm_id: 4, delivery_date: "2023-03-23", produce_items: "cucumber carrot", delivery_time_minutes: 45, delivery_status: "completed", produce_quantity: "514.08" },
            { id: 45, restaurant_id: 7, farm_id: 49, delivery_date: "2023-01-20", produce_items: "dragonfruit tangerine", delivery_time_minutes: 66, delivery_status: "completed", produce_quantity: "417.58" },
            { id: 46, restaurant_id: 59, farm_id: 14, delivery_date: "2023-09-10", produce_items: "parsnip", delivery_time_minutes: 54, delivery_status: "completed", produce_quantity: "819.20" },
            { id: 47, restaurant_id: 89, farm_id: 1, delivery_date: "2023-02-24", produce_items: "grape fig", delivery_time_minutes: 49, delivery_status: "completed", produce_quantity: "648.66" },
            { id: 48, restaurant_id: 79, farm_id: 31, delivery_date: "2023-11-16", produce_items: "orange apple", delivery_time_minutes: 40, delivery_status: "failed", produce_quantity: "250.80" },
            { id: 49, restaurant_id: 77, farm_id: 30, delivery_date: "2023-05-17", produce_items: "blueberry squash grape", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "367.25" },
            { id: 50, restaurant_id: 8, farm_id: 26, delivery_date: "2023-06-13", produce_items: "cabbage squash pumpkin", delivery_time_minutes: 84, delivery_status: "pending", produce_quantity: "391.57" },
            { id: 51, restaurant_id: 2, farm_id: 16, delivery_date: "2023-05-23", produce_items: "kale", delivery_time_minutes: 81, delivery_status: "completed", produce_quantity: "252.20" },
            { id: 52, restaurant_id: 70, farm_id: 35, delivery_date: "2023-12-01", produce_items: "squash yam mushroom", delivery_time_minutes: 57, delivery_status: "completed", produce_quantity: "428.80" },
            { id: 53, restaurant_id: 25, farm_id: 18, delivery_date: "2023-09-03", produce_items: "yam", delivery_time_minutes: 62, delivery_status: "failed", produce_quantity: "575.41" },
            { id: 54, restaurant_id: 7, farm_id: 40, delivery_date: "2023-12-24", produce_items: null, delivery_time_minutes: 59, delivery_status: "completed", produce_quantity: "450.53" },
            { id: 55, restaurant_id: 94, farm_id: 13, delivery_date: "2023-12-10", produce_items: "nectarine", delivery_time_minutes: 101, delivery_status: "failed", produce_quantity: "346.30" },
            { id: 56, restaurant_id: 25, farm_id: 22, delivery_date: "2023-09-11", produce_items: "celery papaya", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "450.39" },
            { id: 57, restaurant_id: 40, farm_id: 23, delivery_date: "2023-12-08", produce_items: "parsnip", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "513.12" },
            { id: 58, restaurant_id: 95, farm_id: 27, delivery_date: "2023-06-24", produce_items: "rhubarb", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "410.75" },
            { id: 59, restaurant_id: 1, farm_id: 19, delivery_date: "2023-09-12", produce_items: null, delivery_time_minutes: 55, delivery_status: "failed", produce_quantity: "570.36" },
            { id: 60, restaurant_id: 17, farm_id: 11, delivery_date: "2023-08-05", produce_items: "onion", delivery_time_minutes: 50, delivery_status: "completed", produce_quantity: "492.19" },
            { id: 61, restaurant_id: 91, farm_id: 48, delivery_date: "2023-06-03", produce_items: "celery radish", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "463.16" },
            { id: 62, restaurant_id: 41, farm_id: 25, delivery_date: "2023-11-29", produce_items: "squash", delivery_time_minutes: 90, delivery_status: "completed", produce_quantity: "458.71" },
            { id: 63, restaurant_id: 18, farm_id: 48, delivery_date: "2023-07-27", produce_items: null, delivery_time_minutes: 61, delivery_status: "completed", produce_quantity: "585.49" },
            { id: 64, restaurant_id: 96, farm_id: 38, delivery_date: "2023-11-10", produce_items: "parsnip tomato date", delivery_time_minutes: 70, delivery_status: "completed", produce_quantity: "424.28" },
            { id: 65, restaurant_id: 11, farm_id: 47, delivery_date: "2023-09-08", produce_items: "turnip", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "674.14" },
            { id: 66, restaurant_id: 62, farm_id: 14, delivery_date: "2023-06-15", produce_items: "eggplant", delivery_time_minutes: 49, delivery_status: "completed", produce_quantity: "515.27" },
            { id: 67, restaurant_id: 96, farm_id: 27, delivery_date: "2023-06-07", produce_items: null, delivery_time_minutes: 99, delivery_status: "failed", produce_quantity: "645.95" },
            { id: 68, restaurant_id: 32, farm_id: 30, delivery_date: "2023-11-08", produce_items: "rhubarb fig", delivery_time_minutes: 87, delivery_status: "completed", produce_quantity: "560.72" },
            { id: 69, restaurant_id: 48, farm_id: 50, delivery_date: "2023-08-26", produce_items: "radish mango carrot", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "213.42" },
            { id: 70, restaurant_id: 15, farm_id: 3, delivery_date: "2023-08-27", produce_items: "nectarine", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "456.54" },
            { id: 71, restaurant_id: 19, farm_id: 5, delivery_date: "2023-07-08", produce_items: "lemon orange date", delivery_time_minutes: 67, delivery_status: "completed", produce_quantity: "547.58" },
            { id: 72, restaurant_id: 17, farm_id: 1, delivery_date: "2023-01-19", produce_items: "pepper leek", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "612.14" },
            { id: 73, restaurant_id: 29, farm_id: 15, delivery_date: "2023-04-09", produce_items: "onion", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "350.91" },
            { id: 74, restaurant_id: 37, farm_id: 3, delivery_date: "2023-01-26", produce_items: "celery jalapeno broccoli", delivery_time_minutes: 65, delivery_status: "completed", produce_quantity: "373.25" },
            { id: 75, restaurant_id: 31, farm_id: 39, delivery_date: "2023-07-01", produce_items: "cucumber potato orange", delivery_time_minutes: 65, delivery_status: "completed", produce_quantity: "500.01" },
            { id: 76, restaurant_id: 24, farm_id: 26, delivery_date: "2023-03-26", produce_items: "asparagus spinach", delivery_time_minutes: 67, delivery_status: "failed", produce_quantity: "574.04" },
            { id: 77, restaurant_id: 5, farm_id: 17, delivery_date: "2023-12-31", produce_items: "cherry clementine", delivery_time_minutes: 47, delivery_status: "completed", produce_quantity: "309.83" },
            { id: 78, restaurant_id: 44, farm_id: 33, delivery_date: "2023-05-15", produce_items: "kale dragonfruit date", delivery_time_minutes: 36, delivery_status: "completed", produce_quantity: "366.84" },
            { id: 79, restaurant_id: 48, farm_id: 42, delivery_date: "2023-09-15", produce_items: "spinach leek watermelon", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "719.39" },
            { id: 80, restaurant_id: 15, farm_id: 42, delivery_date: "2023-05-25", produce_items: "kiwi grape cherry", delivery_time_minutes: 52, delivery_status: "completed", produce_quantity: "514.68" },
            { id: 81, restaurant_id: 58, farm_id: 11, delivery_date: "2023-12-15", produce_items: null, delivery_time_minutes: 62, delivery_status: "completed", produce_quantity: "329.45" },
            { id: 82, restaurant_id: 82, farm_id: 27, delivery_date: "2023-09-18", produce_items: "rhubarb", delivery_time_minutes: 63, delivery_status: "completed", produce_quantity: "469.91" },
            { id: 83, restaurant_id: 51, farm_id: 28, delivery_date: "2023-05-12", produce_items: "yam pumpkin kiwi", delivery_time_minutes: 50, delivery_status: "completed", produce_quantity: "645.87" },
            { id: 84, restaurant_id: 57, farm_id: 10, delivery_date: "2023-08-27", produce_items: "garlic turnip", delivery_time_minutes: 74, delivery_status: "completed", produce_quantity: "707.76" },
            { id: 85, restaurant_id: 55, farm_id: 19, delivery_date: "2023-11-16", produce_items: "potato", delivery_time_minutes: 51, delivery_status: "completed", produce_quantity: "389.47" },
            { id: 86, restaurant_id: 42, farm_id: 50, delivery_date: "2023-03-20", produce_items: "yam", delivery_time_minutes: 75, delivery_status: "completed", produce_quantity: "533.81" },
            { id: 87, restaurant_id: 98, farm_id: 18, delivery_date: "2023-10-09", produce_items: "watermelon pumpkin", delivery_time_minutes: 67, delivery_status: "completed", produce_quantity: "523.61" },
            { id: 88, restaurant_id: 14, farm_id: 25, delivery_date: "2023-11-26", produce_items: "celery", delivery_time_minutes: 62, delivery_status: "completed", produce_quantity: "655.95" },
            { id: 89, restaurant_id: 59, farm_id: 39, delivery_date: "2023-12-05", produce_items: "grape cabbage apple", delivery_time_minutes: 65, delivery_status: "completed", produce_quantity: "455.48" },
            { id: 90, restaurant_id: 63, farm_id: 39, delivery_date: "2023-10-31", produce_items: "date papaya leek", delivery_time_minutes: 77, delivery_status: "completed", produce_quantity: "507.82" },
            { id: 91, restaurant_id: 79, farm_id: 31, delivery_date: "2023-08-29", produce_items: "celery pumpkin", delivery_time_minutes: 71, delivery_status: "pending", produce_quantity: "620.79" },
            { id: 92, restaurant_id: 84, farm_id: 1, delivery_date: "2023-12-01", produce_items: "watermelon zucchini cherry", delivery_time_minutes: 58, delivery_status: "completed", produce_quantity: "652.49" },
            { id: 93, restaurant_id: 25, farm_id: 14, delivery_date: "2023-10-15", produce_items: "apple cucumber", delivery_time_minutes: 75, delivery_status: "completed", produce_quantity: "484.43" },
            { id: 94, restaurant_id: 29, farm_id: 21, delivery_date: "2023-11-18", produce_items: "spinach zucchini dragonfruit", delivery_time_minutes: 79, delivery_status: "completed", produce_quantity: "536.21" },
            { id: 95, restaurant_id: 4, farm_id: 39, delivery_date: "2023-10-27", produce_items: "rhubarb garlic", delivery_time_minutes: 74, delivery_status: "completed", produce_quantity: "367.11" },
            { id: 96, restaurant_id: 24, farm_id: 42, delivery_date: "2023-04-07", produce_items: "onion kiwi", delivery_time_minutes: 71, delivery_status: "completed", produce_quantity: "614.89" },
            { id: 97, restaurant_id: 37, farm_id: 27, delivery_date: "2023-08-31", produce_items: "pumpkin", delivery_time_minutes: 59, delivery_status: "completed", produce_quantity: "552.82" },
            { id: 98, restaurant_id: 92, farm_id: 13, delivery_date: "2023-11-05", produce_items: null, delivery_time_minutes: 71, delivery_status: "completed", produce_quantity: "339.91" },
            { id: 99, restaurant_id: 95, farm_id: 7, delivery_date: "2023-12-21", produce_items: "watermelon banana honeydew", delivery_time_minutes: 37, delivery_status: "pending", produce_quantity: "780.55" },
            { id: 100, restaurant_id: 25, farm_id: 32, delivery_date: "2023-12-11", produce_items: null, delivery_time_minutes: 76, delivery_status: "completed", produce_quantity: "566.39" },
            { id: 101, restaurant_id: 63, farm_id: 49, delivery_date: "2023-08-27", produce_items: "eggplant orange cantaloupe", delivery_time_minutes: 71, delivery_status: "pending", produce_quantity: "640.81" },
            { id: 102, restaurant_id: 94, farm_id: 3, delivery_date: "2023-06-23", produce_items: null, delivery_time_minutes: 82, delivery_status: "completed", produce_quantity: "491.66" },
            { id: 103, restaurant_id: 47, farm_id: 31, delivery_date: "2023-05-26", produce_items: "asparagus radish", delivery_time_minutes: 87, delivery_status: "completed", produce_quantity: "442.82" },
            { id: 104, restaurant_id: 65, farm_id: 16, delivery_date: "2023-09-13", produce_items: "zucchini yam mango", delivery_time_minutes: 66, delivery_status: "failed", produce_quantity: "566.20" },
            { id: 105, restaurant_id: 61, farm_id: 35, delivery_date: "2023-12-07", produce_items: "mushroom potato pepper", delivery_time_minutes: 85, delivery_status: "completed", produce_quantity: "654.85" },
            { id: 106, restaurant_id: 24, farm_id: 32, delivery_date: "2023-05-17", produce_items: "eggplant zucchini cherry", delivery_time_minutes: 59, delivery_status: "completed", produce_quantity: "323.02" },
            { id: 107, restaurant_id: 91, farm_id: 8, delivery_date: "2023-09-23", produce_items: "carrot date", delivery_time_minutes: 66, delivery_status: "completed", produce_quantity: "407.61" },
            { id: 108, restaurant_id: 28, farm_id: 29, delivery_date: "2023-11-24", produce_items: "watermelon", delivery_time_minutes: 53, delivery_status: "completed", produce_quantity: "356.73" },
            { id: 109, restaurant_id: 89, farm_id: 35, delivery_date: "2023-10-06", produce_items: "yam", delivery_time_minutes: 65, delivery_status: "completed", produce_quantity: "351.93" },
            { id: 110, restaurant_id: 66, farm_id: 19, delivery_date: "2023-09-13", produce_items: "quince mushroom watermelon", delivery_time_minutes: 49, delivery_status: "completed", produce_quantity: "521.49" },
            { id: 111, restaurant_id: 43, farm_id: 34, delivery_date: "2023-06-17", produce_items: "celery grape", delivery_time_minutes: 76, delivery_status: "completed", produce_quantity: "609.26" },
            { id: 112, restaurant_id: 84, farm_id: 8, delivery_date: "2023-03-06", produce_items: "mango orange cucumber", delivery_time_minutes: 72, delivery_status: "completed", produce_quantity: "412.98" },
            { id: 113, restaurant_id: 99, farm_id: 16, delivery_date: "2023-10-11", produce_items: "beet", delivery_time_minutes: 72, delivery_status: "completed", produce_quantity: "379.19" },
            { id: 114, restaurant_id: 96, farm_id: 40, delivery_date: "2023-09-12", produce_items: "beet", delivery_time_minutes: 76, delivery_status: "completed", produce_quantity: "233.35" },
            { id: 115, restaurant_id: 47, farm_id: 14, delivery_date: "2023-09-23", produce_items: "mushroom", delivery_time_minutes: 48, delivery_status: "completed", produce_quantity: "455.25" },
            { id: 116, restaurant_id: 25, farm_id: 46, delivery_date: "2023-11-06", produce_items: "yam", delivery_time_minutes: 60, delivery_status: "pending", produce_quantity: "612.72" },
            { id: 117, restaurant_id: 79, farm_id: 25, delivery_date: "2023-11-13", produce_items: "pumpkin spinach garlic", delivery_time_minutes: 68, delivery_status: "completed", produce_quantity: "389.69" },
            { id: 118, restaurant_id: 35, farm_id: 50, delivery_date: "2023-04-10", produce_items: "pepper fig", delivery_time_minutes: 67, delivery_status: "completed", produce_quantity: "441.03" },
            { id: 119, restaurant_id: 65, farm_id: 46, delivery_date: "2023-04-07", produce_items: null, delivery_time_minutes: 74, delivery_status: "completed", produce_quantity: "363.76" },
            { id: 120, restaurant_id: 65, farm_id: 17, delivery_date: "2023-09-01", produce_items: "cherry apple", delivery_time_minutes: 78, delivery_status: "completed", produce_quantity: "604.11" },
            { id: 121, restaurant_id: 20, farm_id: 37, delivery_date: "2023-08-24", produce_items: "lemon", delivery_time_minutes: 48, delivery_status: "completed", produce_quantity: "416.07" },
            { id: 122, restaurant_id: 2, farm_id: 38, delivery_date: "2023-12-07", produce_items: "cantaloupe shallot", delivery_time_minutes: 38, delivery_status: "pending", produce_quantity: "498.90" },
            { id: 123, restaurant_id: 42, farm_id: 20, delivery_date: "2023-06-23", produce_items: "garlic pepper", delivery_time_minutes: 84, delivery_status: "completed", produce_quantity: "539.23" },
            { id: 124, restaurant_id: 1, farm_id: 37, delivery_date: "2023-02-15", produce_items: null, delivery_time_minutes: 70, delivery_status: "completed", produce_quantity: "521.26" },
            { id: 125, restaurant_id: 28, farm_id: 30, delivery_date: "2023-06-21", produce_items: "carrot zucchini mushroom", delivery_time_minutes: 79, delivery_status: "completed", produce_quantity: "369.77" },
            { id: 126, restaurant_id: 64, farm_id: 11, delivery_date: "2023-12-11", produce_items: "beet turnip shallot", delivery_time_minutes: 66, delivery_status: "completed", produce_quantity: "564.03" },
            { id: 127, restaurant_id: 56, farm_id: 23, delivery_date: "2023-08-24", produce_items: "shallot potato radish", delivery_time_minutes: 54, delivery_status: "completed", produce_quantity: "474.41" },
            { id: 128, restaurant_id: 29, farm_id: 7, delivery_date: "2023-05-12", produce_items: "quince fig", delivery_time_minutes: 62, delivery_status: "completed", produce_quantity: "502.56" },
            { id: 129, restaurant_id: 54, farm_id: 32, delivery_date: "2023-08-18", produce_items: null, delivery_time_minutes: 69, delivery_status: "completed", produce_quantity: "534.36" },
            { id: 130, restaurant_id: 72, farm_id: 15, delivery_date: "2023-07-25", produce_items: "clementine", delivery_time_minutes: 88, delivery_status: "completed", produce_quantity: "558.56" },
            { id: 131, restaurant_id: 97, farm_id: 48, delivery_date: "2023-07-20", produce_items: "broccoli grape", delivery_time_minutes: 62, delivery_status: "completed", produce_quantity: "543.93" },
            { id: 132, restaurant_id: 28, farm_id: 7, delivery_date: "2023-11-12", produce_items: "squash", delivery_time_minutes: 79, delivery_status: "completed", produce_quantity: "699.80" },
            { id: 133, restaurant_id: 14, farm_id: 20, delivery_date: "2023-11-10", produce_items: "radish shallot yam", delivery_time_minutes: 54, delivery_status: "completed", produce_quantity: "347.14" },
            { id: 134, restaurant_id: 3, farm_id: 19, delivery_date: "2023-09-19", produce_items: "shallot orange", delivery_time_minutes: 38, delivery_status: "completed", produce_quantity: "626.55" },
            { id: 135, restaurant_id: 15, farm_id: 10, delivery_date: "2023-10-13", produce_items: "pumpkin", delivery_time_minutes: 80, delivery_status: "failed", produce_quantity: "326.00" },
            { id: 136, restaurant_id: 87, farm_id: 39, delivery_date: "2023-12-16", produce_items: "watermelon turnip", delivery_time_minutes: 71, delivery_status: "completed", produce_quantity: "488.62" },
            { id: 137, restaurant_id: 67, farm_id: 30, delivery_date: "2023-08-29", produce_items: "broccoli", delivery_time_minutes: 73, delivery_status: "completed", produce_quantity: "627.94" },
            { id: 138, restaurant_id: 95, farm_id: 42, delivery_date: "2023-05-15", produce_items: "broccoli pepper", delivery_time_minutes: 54, delivery_status: "failed", produce_quantity: "612.94" },
            { id: 139, restaurant_id: 73, farm_id: 3, delivery_date: "2023-12-29", produce_items: "turnip", delivery_time_minutes: 79, delivery_status: "completed", produce_quantity: "513.27" },
            { id: 140, restaurant_id: 18, farm_id: 34, delivery_date: "2023-12-22", produce_items: "eggplant zucchini banana", delivery_time_minutes: 70, delivery_status: "completed", produce_quantity: "382.95" },
            { id: 141, restaurant_id: 80, farm_id: 22, delivery_date: "2023-11-28", produce_items: "quince cabbage fig", delivery_time_minutes: 51, delivery_status: "completed", produce_quantity: "452.24" },
            { id: 142, restaurant_id: 76, farm_id: 30, delivery_date: "2023-07-18", produce_items: "garlic", delivery_time_minutes: 71, delivery_status: "completed", produce_quantity: "379.00" },
            { id: 143, restaurant_id: 19, farm_id: 2, delivery_date: "2023-08-25", produce_items: "nectarine onion cranberry", delivery_time_minutes: 66, delivery_status: "completed", produce_quantity: "519.41" },
            { id: 144, restaurant_id: 4, farm_id: 4, delivery_date: "2023-08-06", produce_items: "pepper carrot orange", delivery_time_minutes: 40, delivery_status: "completed", produce_quantity: "423.75" },
            { id: 145, restaurant_id: 88, farm_id: 36, delivery_date: "2023-08-13", produce_items: "watermelon celery potato", delivery_time_minutes: 66, delivery_status: "pending", produce_quantity: "472.83" },
            { id: 146, restaurant_id: 46, farm_id: 36, delivery_date: "2023-03-28", produce_items: "parsnip", delivery_time_minutes: 64, delivery_status: "completed", produce_quantity: "877.75" },
            { id: 147, restaurant_id: 36, farm_id: 9, delivery_date: "2023-06-15", produce_items: "jalapeno", delivery_time_minutes: 61, delivery_status: "completed", produce_quantity: "343.15" },
            { id: 148, restaurant_id: 49, farm_id: 8, delivery_date: "2023-12-12", produce_items: "kiwi grape squash", delivery_time_minutes: 68, delivery_status: "completed", produce_quantity: "587.71" },
            { id: 149, restaurant_id: 75, farm_id: 7, delivery_date: "2023-03-17", produce_items: "banana asparagus", delivery_time_minutes: 83, delivery_status: "completed", produce_quantity: "576.27" },
            { id: 150, restaurant_id: 89, farm_id: 26, delivery_date: "2023-06-03", produce_items: "jalapeno rhubarb", delivery_time_minutes: 92, delivery_status: "failed", produce_quantity: "320.02" },
            { id: 151, restaurant_id: 48, farm_id: 50, delivery_date: "2023-04-29", produce_items: "dragonfruit cabbage", delivery_time_minutes: 63, delivery_status: "pending", produce_quantity: "498.45" },
            { id: 152, restaurant_id: 15, farm_id: 14, delivery_date: "2023-09-06", produce_items: "asparagus", delivery_time_minutes: 45, delivery_status: "completed", produce_quantity: "646.44" },
            { id: 153, restaurant_id: 91, farm_id: 1, delivery_date: "2023-10-31", produce_items: "mango cherry cabbage", delivery_time_minutes: 66, delivery_status: "completed", produce_quantity: "624.11" },
            { id: 154, restaurant_id: 11, farm_id: 13, delivery_date: "2023-10-27", produce_items: "papaya grape", delivery_time_minutes: 42, delivery_status: "failed", produce_quantity: "613.16" },
            { id: 155, restaurant_id: 41, farm_id: 22, delivery_date: "2023-11-02", produce_items: "tomato cranberry", delivery_time_minutes: 64, delivery_status: "completed", produce_quantity: "674.34" },
            { id: 156, restaurant_id: 8, farm_id: 47, delivery_date: "2023-11-12", produce_items: null, delivery_time_minutes: 45, delivery_status: "completed", produce_quantity: "521.20" },
            { id: 157, restaurant_id: 13, farm_id: 15, delivery_date: "2023-05-30", produce_items: null, delivery_time_minutes: 65, delivery_status: "completed", produce_quantity: "726.94" },
            { id: 158, restaurant_id: 41, farm_id: 2, delivery_date: "2023-12-22", produce_items: null, delivery_time_minutes: 60, delivery_status: "completed", produce_quantity: "413.29" },
            { id: 159, restaurant_id: 63, farm_id: 24, delivery_date: "2023-01-25", produce_items: "honeydew", delivery_time_minutes: 49, delivery_status: "completed", produce_quantity: "263.13" },
            { id: 160, restaurant_id: 20, farm_id: 25, delivery_date: "2023-03-04", produce_items: "blueberry", delivery_time_minutes: 85, delivery_status: "completed", produce_quantity: "652.47" },
            { id: 161, restaurant_id: 53, farm_id: 33, delivery_date: "2023-03-15", produce_items: "kale", delivery_time_minutes: 48, delivery_status: "completed", produce_quantity: "450.35" },
            { id: 162, restaurant_id: 43, farm_id: 41, delivery_date: "2023-12-29", produce_items: "tangerine watermelon", delivery_time_minutes: 76, delivery_status: "completed", produce_quantity: "638.72" },
            { id: 163, restaurant_id: 71, farm_id: 3, delivery_date: "2023-10-31", produce_items: "quince parsnip", delivery_time_minutes: 63, delivery_status: "failed", produce_quantity: "466.11" },
            { id: 164, restaurant_id: 11, farm_id: 39, delivery_date: "2023-12-07", produce_items: "cranberry", delivery_time_minutes: 58, delivery_status: "completed", produce_quantity: "746.31" },
            { id: 165, restaurant_id: 1, farm_id: 27, delivery_date: "2023-09-21", produce_items: "clementine orange", delivery_time_minutes: 90, delivery_status: "completed", produce_quantity: "398.53" },
            { id: 166, restaurant_id: 8, farm_id: 2, delivery_date: "2023-01-11", produce_items: "eggplant", delivery_time_minutes: 93, delivery_status: "completed", produce_quantity: "421.56" },
            { id: 167, restaurant_id: 54, farm_id: 46, delivery_date: "2023-12-05", produce_items: "pepper kale", delivery_time_minutes: 83, delivery_status: "completed", produce_quantity: "595.29" },
            { id: 168, restaurant_id: 45, farm_id: 19, delivery_date: "2023-10-14", produce_items: null, delivery_time_minutes: 96, delivery_status: "completed", produce_quantity: "556.26" },
            { id: 169, restaurant_id: 100, farm_id: 30, delivery_date: "2023-06-12", produce_items: null, delivery_time_minutes: 72, delivery_status: "completed", produce_quantity: "655.31" },
            { id: 170, restaurant_id: 9, farm_id: 11, delivery_date: "2023-09-29", produce_items: "cranberry fig pepper", delivery_time_minutes: 39, delivery_status: "completed", produce_quantity: "509.87" },
            { id: 171, restaurant_id: 51, farm_id: 8, delivery_date: "2023-10-26", produce_items: "onion", delivery_time_minutes: 100, delivery_status: "completed", produce_quantity: "429.66" },
            { id: 172, restaurant_id: 51, farm_id: 47, delivery_date: "2023-05-27", produce_items: null, delivery_time_minutes: 57, delivery_status: "completed", produce_quantity: "371.97" },
            { id: 173, restaurant_id: 10, farm_id: 21, delivery_date: "2023-11-13", produce_items: "banana mango asparagus", delivery_time_minutes: 58, delivery_status: "completed", produce_quantity: "395.74" },
            { id: 174, restaurant_id: 92, farm_id: 17, delivery_date: "2023-05-01", produce_items: "kiwi", delivery_time_minutes: 42, delivery_status: "completed", produce_quantity: "540.31" },
            { id: 175, restaurant_id: 80, farm_id: 12, delivery_date: "2023-07-14", produce_items: null, delivery_time_minutes: 84, delivery_status: "completed", produce_quantity: "825.49" },
            { id: 176, restaurant_id: 79, farm_id: 7, delivery_date: "2023-10-07", produce_items: "blueberry banana date", delivery_time_minutes: 97, delivery_status: "completed", produce_quantity: "486.16" },
            { id: 177, restaurant_id: 91, farm_id: 24, delivery_date: "2023-08-07", produce_items: null, delivery_time_minutes: 67, delivery_status: "pending", produce_quantity: "517.30" },
            { id: 178, restaurant_id: 74, farm_id: 42, delivery_date: "2023-03-07", produce_items: "shallot squash", delivery_time_minutes: 57, delivery_status: "completed", produce_quantity: "558.21" },
            { id: 179, restaurant_id: 44, farm_id: 6, delivery_date: "2023-10-07", produce_items: "cucumber yam", delivery_time_minutes: 79, delivery_status: "completed", produce_quantity: "495.30" },
            { id: 180, restaurant_id: 15, farm_id: 24, delivery_date: "2023-05-03", produce_items: "squash quince cucumber", delivery_time_minutes: 69, delivery_status: "failed", produce_quantity: "443.82" },
            { id: 181, restaurant_id: 44, farm_id: 31, delivery_date: "2023-06-05", produce_items: "yam", delivery_time_minutes: 59, delivery_status: "completed", produce_quantity: "395.57" },
            { id: 182, restaurant_id: 63, farm_id: 26, delivery_date: "2023-04-17", produce_items: "dragonfruit cherry kiwi", delivery_time_minutes: 91, delivery_status: "completed", produce_quantity: "414.95" },
            { id: 183, restaurant_id: 78, farm_id: 43, delivery_date: "2023-01-21", produce_items: "mango", delivery_time_minutes: 67, delivery_status: "completed", produce_quantity: "440.54" },
            { id: 184, restaurant_id: 29, farm_id: 15, delivery_date: "2023-12-23", produce_items: null, delivery_time_minutes: 72, delivery_status: "pending", produce_quantity: "306.98" },
            { id: 185, restaurant_id: 66, farm_id: 37, delivery_date: "2023-01-02", produce_items: "turnip parsnip eggplant", delivery_time_minutes: 82, delivery_status: "completed", produce_quantity: "317.45" },
            { id: 186, restaurant_id: 69, farm_id: 13, delivery_date: "2023-02-22", produce_items: "nectarine", delivery_time_minutes: 82, delivery_status: "completed", produce_quantity: "214.17" },
            { id: 187, restaurant_id: 26, farm_id: 28, delivery_date: "2023-07-27", produce_items: "cabbage", delivery_time_minutes: 68, delivery_status: "completed", produce_quantity: "499.73" },
            { id: 188, restaurant_id: 23, farm_id: 5, delivery_date: "2023-10-16", produce_items: "squash beet leek", delivery_time_minutes: 91, delivery_status: "completed", produce_quantity: "566.64" },
            { id: 189, restaurant_id: 59, farm_id: 9, delivery_date: "2023-10-27", produce_items: "celery onion", delivery_time_minutes: 47, delivery_status: "completed", produce_quantity: "475.61" },
            { id: 190, restaurant_id: 39, farm_id: 49, delivery_date: "2023-06-17", produce_items: "shallot", delivery_time_minutes: 84, delivery_status: "failed", produce_quantity: "471.99" },
            { id: 191, restaurant_id: 5, farm_id: 37, delivery_date: "2023-02-02", produce_items: "banana jalapeno garlic", delivery_time_minutes: 111, delivery_status: "completed", produce_quantity: "681.27" },
            { id: 192, restaurant_id: 16, farm_id: 39, delivery_date: "2023-08-12", produce_items: "pumpkin cantaloupe leek", delivery_time_minutes: 51, delivery_status: "completed", produce_quantity: "553.76" },
            { id: 193, restaurant_id: 70, farm_id: 34, delivery_date: "2023-10-05", produce_items: "yam lemon mango", delivery_time_minutes: 58, delivery_status: "completed", produce_quantity: "533.58" },
            { id: 194, restaurant_id: 56, farm_id: 29, delivery_date: "2023-02-03", produce_items: "cherry cabbage", delivery_time_minutes: 52, delivery_status: "completed", produce_quantity: "514.29" },
            { id: 195, restaurant_id: 83, farm_id: 24, delivery_date: "2023-02-02", produce_items: "grape leek kale", delivery_time_minutes: 57, delivery_status: "completed", produce_quantity: "682.26" },
            { id: 196, restaurant_id: 86, farm_id: 32, delivery_date: "2023-06-21", produce_items: "dragonfruit onion", delivery_time_minutes: 71, delivery_status: "completed", produce_quantity: "523.10" },
            { id: 197, restaurant_id: 9, farm_id: 8, delivery_date: "2023-06-26", produce_items: "tangerine garlic", delivery_time_minutes: 63, delivery_status: "completed", produce_quantity: "470.30" },
            { id: 198, restaurant_id: 51, farm_id: 15, delivery_date: "2023-06-28", produce_items: "quince watermelon", delivery_time_minutes: 63, delivery_status: "completed", produce_quantity: "227.50" },
            { id: 199, restaurant_id: 66, farm_id: 29, delivery_date: "2023-04-24", produce_items: "apple", delivery_time_minutes: 84, delivery_status: "pending", produce_quantity: "607.15" },
            { id: 200, restaurant_id: 78, farm_id: 45, delivery_date: "2023-05-27", produce_items: "banana", delivery_time_minutes: 69, delivery_status: "completed", produce_quantity: "537.58" },
        ],
    });
    await prisma.orders.createMany({
        data: [
            { id: 1, restaurant_id: 37, order_date: "2023-03-29", total_amount: "10.54", customer_review: null },
            { id: 2, restaurant_id: 95, order_date: "2023-03-05", total_amount: "54.72", customer_review: "Support asked for a change and the report was reviewed." },
            { id: 3, restaurant_id: 56, order_date: "2023-07-15", total_amount: "53.77", customer_review: "The customer confirmed the details and the appointment was replaced." },
            { id: 4, restaurant_id: 13, order_date: "2023-01-29", total_amount: "11.59", customer_review: "No response from the supplier, so the session was replaced." },
            { id: 5, restaurant_id: 39, order_date: "2023-05-05", total_amount: "49.61", customer_review: "The report was delayed — unusual case, no further action." },
            { id: 6, restaurant_id: 7, order_date: "2023-10-11", total_amount: "38.67", customer_review: "The request was completed — manual case, no further action." },
            { id: 7, restaurant_id: 51, order_date: "2023-07-17", total_amount: "77.64", customer_review: "No response from the supplier, so the item was updated." },
            { id: 8, restaurant_id: 28, order_date: "2023-07-30", total_amount: "67.45", customer_review: "No response from the account owner, so the delivery was replaced." },
            { id: 9, restaurant_id: 34, order_date: "2023-11-18", total_amount: "26.57", customer_review: "The booking was reviewed — late case, no further action." },
            { id: 10, restaurant_id: 67, order_date: "2023-11-18", total_amount: "86.25", customer_review: "The account owner reported a manual issue; the document was closed." },
            { id: 11, restaurant_id: 36, order_date: "2023-12-30", total_amount: "22.86", customer_review: null },
            { id: 12, restaurant_id: 51, order_date: "2023-10-29", total_amount: "33.87", customer_review: "No response from an operator, so the account was escalated." },
            { id: 13, restaurant_id: 29, order_date: "2023-12-25", total_amount: "67.25", customer_review: null },
            { id: 14, restaurant_id: 44, order_date: "2023-03-15", total_amount: "32.07", customer_review: "No response from an operator, so the transfer was escalated." },
            { id: 15, restaurant_id: 75, order_date: "2023-09-29", total_amount: "129.63", customer_review: "The account owner reported a duplicate issue; the account was replaced." },
            { id: 16, restaurant_id: 41, order_date: "2023-12-07", total_amount: "13.98", customer_review: "An operator reported a routine issue; the report was updated." },
            { id: 17, restaurant_id: 35, order_date: "2023-01-18", total_amount: "10.00", customer_review: "No response from the supplier, so the appointment was escalated." },
            { id: 18, restaurant_id: 39, order_date: "2023-07-21", total_amount: "35.11", customer_review: "The shipment was rescheduled — partial case, no further action." },
            { id: 19, restaurant_id: 94, order_date: "2023-02-16", total_amount: "44.34", customer_review: null },
            { id: 20, restaurant_id: 16, order_date: "2023-02-16", total_amount: "33.80", customer_review: "No response from the customer, so the transfer was approved." },
            { id: 21, restaurant_id: 71, order_date: "2023-01-27", total_amount: "149.39", customer_review: null },
            { id: 22, restaurant_id: 93, order_date: "2023-01-03", total_amount: "36.11", customer_review: null },
            { id: 23, restaurant_id: 27, order_date: "2023-08-22", total_amount: "18.32", customer_review: "The delivery was reviewed — urgent case, no further action." },
            { id: 24, restaurant_id: 60, order_date: "2023-02-14", total_amount: "10.06", customer_review: null },
            { id: 25, restaurant_id: 71, order_date: "2023-11-01", total_amount: "31.20", customer_review: "The reviewer asked for a change and the item was closed." },
            { id: 26, restaurant_id: 35, order_date: "2023-08-27", total_amount: "26.42", customer_review: null },
            { id: 27, restaurant_id: 83, order_date: "2023-12-23", total_amount: "28.36", customer_review: "The account owner asked for a change and the payment was reviewed." },
            { id: 28, restaurant_id: 60, order_date: "2023-10-31", total_amount: "12.28", customer_review: "The courier reported a routine issue; the request was resolved." },
            { id: 29, restaurant_id: 23, order_date: "2023-03-23", total_amount: "96.53", customer_review: "The claim was cancelled — incomplete case, no further action." },
            { id: 30, restaurant_id: 67, order_date: "2023-11-15", total_amount: "41.11", customer_review: "The courier asked for a change and the item was rejected." },
            { id: 31, restaurant_id: 15, order_date: "2023-03-28", total_amount: "10.17", customer_review: "The team reported an unusual issue; the payment was closed." },
            { id: 32, restaurant_id: 66, order_date: "2023-07-16", total_amount: "10.59", customer_review: "No response from the customer, so the payment was rescheduled." },
            { id: 33, restaurant_id: 20, order_date: "2023-03-11", total_amount: "109.08", customer_review: "No response from the account owner, so the session was reopened." },
            { id: 34, restaurant_id: 12, order_date: "2023-06-13", total_amount: "56.21", customer_review: "The reviewer confirmed the details and the payment was reviewed." },
            { id: 35, restaurant_id: 93, order_date: "2023-02-13", total_amount: "124.94", customer_review: "The payment was escalated — late case, no further action." },
            { id: 36, restaurant_id: 75, order_date: "2023-03-13", total_amount: "93.96", customer_review: "The claim was confirmed — minor case, no further action." },
            { id: 37, restaurant_id: 4, order_date: "2023-10-09", total_amount: "37.75", customer_review: "Support asked for a change and the invoice was updated." },
            { id: 38, restaurant_id: 81, order_date: "2023-10-16", total_amount: "96.54", customer_review: null },
            { id: 39, restaurant_id: 70, order_date: "2023-11-14", total_amount: "122.39", customer_review: "The customer confirmed the details and the invoice was completed." },
            { id: 40, restaurant_id: 69, order_date: "2023-07-23", total_amount: "35.66", customer_review: "The account owner asked for a change and the transfer was cancelled." },
            { id: 41, restaurant_id: 90, order_date: "2023-10-07", total_amount: "92.34", customer_review: "The supplier confirmed the details and the report was approved." },
            { id: 42, restaurant_id: 14, order_date: "2023-01-08", total_amount: "11.20", customer_review: "The courier asked for a change and the refund was cancelled." },
            { id: 43, restaurant_id: 98, order_date: "2023-12-25", total_amount: "24.96", customer_review: "The session was cancelled — late case, no further action." },
            { id: 44, restaurant_id: 24, order_date: "2023-12-20", total_amount: "19.07", customer_review: null },
            { id: 45, restaurant_id: 60, order_date: "2023-01-05", total_amount: "142.03", customer_review: "The customer reported an urgent issue; the order was processed." },
            { id: 46, restaurant_id: 75, order_date: "2023-04-18", total_amount: "51.75", customer_review: "The record was rejected — late case, no further action." },
            { id: 47, restaurant_id: 91, order_date: "2023-04-30", total_amount: "42.01", customer_review: "An operator confirmed the details and the booking was reviewed." },
            { id: 48, restaurant_id: 43, order_date: "2023-02-09", total_amount: "38.79", customer_review: "No response from the courier, so the account was replaced." },
            { id: 49, restaurant_id: 9, order_date: "2023-01-02", total_amount: "10.83", customer_review: "The team reported an urgent issue; the document was cancelled." },
            { id: 50, restaurant_id: 27, order_date: "2023-01-22", total_amount: "22.99", customer_review: "The refund was approved — incomplete case, no further action." },
            { id: 51, restaurant_id: 40, order_date: "2023-06-12", total_amount: "13.22", customer_review: "No response from the team, so the transfer was closed." },
            { id: 52, restaurant_id: 33, order_date: "2023-08-04", total_amount: "28.71", customer_review: "The customer asked for a change and the shipment was updated." },
            { id: 53, restaurant_id: 76, order_date: "2023-11-14", total_amount: "140.81", customer_review: "The supplier asked for a change and the session was confirmed." },
            { id: 54, restaurant_id: 55, order_date: "2023-12-23", total_amount: "22.03", customer_review: "The reviewer confirmed the details and the document was escalated." },
            { id: 55, restaurant_id: 20, order_date: "2023-01-11", total_amount: "92.22", customer_review: "The session was closed — minor case, no further action." },
            { id: 56, restaurant_id: 92, order_date: "2023-06-16", total_amount: "26.61", customer_review: "The reviewer asked for a change and the ticket was delayed." },
            { id: 57, restaurant_id: 15, order_date: "2023-11-18", total_amount: "122.87", customer_review: "The reviewer confirmed the details and the claim was replaced." },
            { id: 58, restaurant_id: 89, order_date: "2023-10-10", total_amount: "11.87", customer_review: "No response from the account owner, so the claim was rejected." },
            { id: 59, restaurant_id: 95, order_date: "2023-04-25", total_amount: "28.20", customer_review: null },
            { id: 60, restaurant_id: 2, order_date: "2023-03-10", total_amount: "27.82", customer_review: "The customer asked for a change and the order was escalated." },
            { id: 61, restaurant_id: 96, order_date: "2023-10-28", total_amount: "14.59", customer_review: "The document was closed — partial case, no further action." },
            { id: 62, restaurant_id: 40, order_date: "2023-10-08", total_amount: "59.35", customer_review: "No response from the courier, so the delivery was reopened." },
            { id: 63, restaurant_id: 45, order_date: "2023-01-22", total_amount: "26.47", customer_review: "The courier asked for a change and the account was processed." },
            { id: 64, restaurant_id: 24, order_date: "2023-02-14", total_amount: "87.11", customer_review: "The courier reported a repeat issue; the refund was rejected." },
            { id: 65, restaurant_id: 15, order_date: "2023-12-07", total_amount: "27.90", customer_review: "The reviewer reported a minor issue; the refund was replaced." },
            { id: 66, restaurant_id: 42, order_date: "2023-01-11", total_amount: "104.76", customer_review: "The team reported an incomplete issue; the request was reviewed." },
            { id: 67, restaurant_id: 39, order_date: "2023-12-01", total_amount: "53.37", customer_review: null },
            { id: 68, restaurant_id: 47, order_date: "2023-12-17", total_amount: "86.30", customer_review: "The session was replaced — repeat case, no further action." },
            { id: 69, restaurant_id: 50, order_date: "2023-10-20", total_amount: "26.01", customer_review: "The request was updated — unusual case, no further action." },
            { id: 70, restaurant_id: 23, order_date: "2023-08-13", total_amount: "143.96", customer_review: "No response from the supplier, so the appointment was completed." },
            { id: 71, restaurant_id: 30, order_date: "2023-11-12", total_amount: "26.03", customer_review: "An operator reported a standard issue; the order was approved." },
            { id: 72, restaurant_id: 39, order_date: "2023-09-21", total_amount: "12.58", customer_review: "The request was reopened — duplicate case, no further action." },
            { id: 73, restaurant_id: 59, order_date: "2023-08-05", total_amount: "10.47", customer_review: "No response from the customer, so the request was escalated." },
            { id: 74, restaurant_id: 86, order_date: "2023-11-11", total_amount: "50.95", customer_review: "The invoice was resolved — partial case, no further action." },
            { id: 75, restaurant_id: 46, order_date: "2023-09-23", total_amount: "143.05", customer_review: "The refund was confirmed — minor case, no further action." },
            { id: 76, restaurant_id: 32, order_date: "2023-11-23", total_amount: "24.68", customer_review: "The refund was closed — duplicate case, no further action." },
            { id: 77, restaurant_id: 84, order_date: "2023-04-28", total_amount: "23.20", customer_review: "The account owner asked for a change and the session was updated." },
            { id: 78, restaurant_id: 13, order_date: "2023-01-20", total_amount: "24.55", customer_review: "Support asked for a change and the refund was processed." },
            { id: 79, restaurant_id: 80, order_date: "2023-03-03", total_amount: "51.65", customer_review: "The team confirmed the details and the shipment was replaced." },
            { id: 80, restaurant_id: 75, order_date: "2023-11-12", total_amount: "103.64", customer_review: "The courier confirmed the details and the report was closed." },
            { id: 81, restaurant_id: 23, order_date: "2023-12-05", total_amount: "64.00", customer_review: "The customer asked for a change and the claim was rescheduled." },
            { id: 82, restaurant_id: 76, order_date: "2023-09-24", total_amount: "52.07", customer_review: "The request was processed — minor case, no further action." },
            { id: 83, restaurant_id: 52, order_date: "2023-11-07", total_amount: "16.24", customer_review: "The courier reported an incomplete issue; the delivery was cancelled." },
            { id: 84, restaurant_id: 31, order_date: "2023-05-30", total_amount: "74.41", customer_review: "The customer confirmed the details and the transfer was completed." },
            { id: 85, restaurant_id: 49, order_date: "2023-02-28", total_amount: "10.28", customer_review: "An operator asked for a change and the record was updated." },
            { id: 86, restaurant_id: 60, order_date: "2023-12-20", total_amount: "53.35", customer_review: null },
            { id: 87, restaurant_id: 34, order_date: "2023-11-26", total_amount: "54.97", customer_review: "The reviewer asked for a change and the record was updated." },
            { id: 88, restaurant_id: 23, order_date: "2023-04-07", total_amount: "79.26", customer_review: "The account owner confirmed the details and the account was escalated." },
            { id: 89, restaurant_id: 77, order_date: "2023-11-10", total_amount: "44.16", customer_review: "The customer asked for a change and the document was closed." },
            { id: 90, restaurant_id: 51, order_date: "2023-02-12", total_amount: "105.00", customer_review: "The document was closed — duplicate case, no further action." },
            { id: 91, restaurant_id: 20, order_date: "2023-10-09", total_amount: "12.08", customer_review: "The session was cancelled — urgent case, no further action." },
            { id: 92, restaurant_id: 79, order_date: "2023-07-16", total_amount: "33.12", customer_review: "The account owner reported an automatic issue; the payment was closed." },
            { id: 93, restaurant_id: 40, order_date: "2023-11-29", total_amount: "100.30", customer_review: null },
            { id: 94, restaurant_id: 81, order_date: "2023-01-07", total_amount: "29.47", customer_review: "No response from the courier, so the invoice was processed." },
            { id: 95, restaurant_id: 93, order_date: "2023-09-19", total_amount: "140.47", customer_review: "Support asked for a change and the transfer was refunded." },
            { id: 96, restaurant_id: 47, order_date: "2023-07-10", total_amount: "134.41", customer_review: "No response from the reviewer, so the payment was escalated." },
            { id: 97, restaurant_id: 47, order_date: "2023-09-15", total_amount: "83.62", customer_review: "The supplier asked for a change and the delivery was resolved." },
            { id: 98, restaurant_id: 1, order_date: "2023-04-18", total_amount: "24.15", customer_review: "The reviewer asked for a change and the session was rejected." },
            { id: 99, restaurant_id: 40, order_date: "2023-02-10", total_amount: "24.60", customer_review: null },
            { id: 100, restaurant_id: 69, order_date: "2023-09-27", total_amount: "10.30", customer_review: null },
            { id: 101, restaurant_id: 58, order_date: "2023-11-27", total_amount: "65.07", customer_review: "The account owner confirmed the details and the account was completed." },
            { id: 102, restaurant_id: 43, order_date: "2023-11-30", total_amount: "75.41", customer_review: "No response from the supplier, so the payment was escalated." },
            { id: 103, restaurant_id: 27, order_date: "2023-10-04", total_amount: "10.70", customer_review: "The supplier confirmed the details and the record was approved." },
            { id: 104, restaurant_id: 28, order_date: "2023-02-10", total_amount: "70.90", customer_review: "The supplier confirmed the details and the document was processed." },
            { id: 105, restaurant_id: 89, order_date: "2023-11-29", total_amount: "35.87", customer_review: null },
            { id: 106, restaurant_id: 88, order_date: "2023-01-14", total_amount: "60.58", customer_review: "The customer asked for a change and the refund was reviewed." },
            { id: 107, restaurant_id: 91, order_date: "2023-11-21", total_amount: "98.33", customer_review: "No response from the reviewer, so the claim was rescheduled." },
            { id: 108, restaurant_id: 88, order_date: "2023-06-07", total_amount: "121.65", customer_review: null },
            { id: 109, restaurant_id: 79, order_date: "2023-02-27", total_amount: "73.40", customer_review: "The reviewer confirmed the details and the document was reviewed." },
            { id: 110, restaurant_id: 4, order_date: "2023-11-16", total_amount: "89.19", customer_review: "An operator reported a late issue; the payment was delayed." },
            { id: 111, restaurant_id: 88, order_date: "2023-04-07", total_amount: "27.79", customer_review: "The team reported a standard issue; the appointment was replaced." },
            { id: 112, restaurant_id: 94, order_date: "2023-12-13", total_amount: "29.26", customer_review: "The transfer was escalated — automatic case, no further action." },
            { id: 113, restaurant_id: 55, order_date: "2023-05-23", total_amount: "41.74", customer_review: null },
            { id: 114, restaurant_id: 55, order_date: "2023-10-21", total_amount: "82.78", customer_review: "The request was rejected — repeat case, no further action." },
            { id: 115, restaurant_id: 14, order_date: "2023-10-03", total_amount: "29.75", customer_review: "The customer confirmed the details and the claim was confirmed." },
            { id: 116, restaurant_id: 70, order_date: "2023-12-18", total_amount: "16.30", customer_review: "The supplier reported a late issue; the booking was delayed." },
            { id: 117, restaurant_id: 86, order_date: "2023-01-21", total_amount: "16.90", customer_review: "No response from the customer, so the booking was delayed." },
            { id: 118, restaurant_id: 36, order_date: "2023-09-24", total_amount: "64.26", customer_review: "No response from the account owner, so the ticket was delayed." },
            { id: 119, restaurant_id: 21, order_date: "2023-06-02", total_amount: "29.67", customer_review: "The courier reported a manual issue; the invoice was resolved." },
            { id: 120, restaurant_id: 8, order_date: "2023-10-02", total_amount: "37.17", customer_review: "The courier asked for a change and the document was cancelled." },
            { id: 121, restaurant_id: 3, order_date: "2023-03-18", total_amount: "14.86", customer_review: "The customer asked for a change and the account was escalated." },
            { id: 122, restaurant_id: 71, order_date: "2023-10-06", total_amount: "44.53", customer_review: "The courier confirmed the details and the report was replaced." },
            { id: 123, restaurant_id: 37, order_date: "2023-08-24", total_amount: "97.35", customer_review: "The courier asked for a change and the delivery was delayed." },
            { id: 124, restaurant_id: 42, order_date: "2023-02-13", total_amount: "10.04", customer_review: "The courier confirmed the details and the appointment was reopened." },
            { id: 125, restaurant_id: 100, order_date: "2023-12-13", total_amount: "12.23", customer_review: "No response from the supplier, so the document was cancelled." },
            { id: 126, restaurant_id: 100, order_date: "2023-10-30", total_amount: "73.68", customer_review: "An operator asked for a change and the order was confirmed." },
            { id: 127, restaurant_id: 56, order_date: "2023-07-09", total_amount: "44.25", customer_review: "The session was reopened — late case, no further action." },
            { id: 128, restaurant_id: 87, order_date: "2023-09-30", total_amount: "65.12", customer_review: "The invoice was rejected — repeat case, no further action." },
            { id: 129, restaurant_id: 56, order_date: "2023-01-28", total_amount: "129.02", customer_review: null },
            { id: 130, restaurant_id: 35, order_date: "2023-09-03", total_amount: "149.83", customer_review: null },
            { id: 131, restaurant_id: 46, order_date: "2023-11-28", total_amount: "84.45", customer_review: "The appointment was closed — urgent case, no further action." },
            { id: 132, restaurant_id: 69, order_date: "2023-12-10", total_amount: "11.12", customer_review: "The order was processed — unusual case, no further action." },
            { id: 133, restaurant_id: 86, order_date: "2023-12-18", total_amount: "11.42", customer_review: "The customer asked for a change and the invoice was cancelled." },
            { id: 134, restaurant_id: 68, order_date: "2023-11-07", total_amount: "13.40", customer_review: "The shipment was approved — minor case, no further action." },
            { id: 135, restaurant_id: 43, order_date: "2023-03-07", total_amount: "108.99", customer_review: "The reviewer asked for a change and the booking was confirmed." },
            { id: 136, restaurant_id: 15, order_date: "2023-06-10", total_amount: "59.78", customer_review: "The customer confirmed the details and the claim was reopened." },
            { id: 137, restaurant_id: 58, order_date: "2023-07-24", total_amount: "79.30", customer_review: "The customer asked for a change and the request was reviewed." },
            { id: 138, restaurant_id: 55, order_date: "2023-01-02", total_amount: "35.94", customer_review: "No response from an operator, so the record was refunded." },
            { id: 139, restaurant_id: 88, order_date: "2023-07-06", total_amount: "113.88", customer_review: "No response from the customer, so the refund was rejected." },
            { id: 140, restaurant_id: 75, order_date: "2023-12-26", total_amount: "10.26", customer_review: "An operator asked for a change and the transfer was approved." },
            { id: 141, restaurant_id: 38, order_date: "2023-01-07", total_amount: "123.12", customer_review: "No response from the reviewer, so the ticket was reopened." },
            { id: 142, restaurant_id: 24, order_date: "2023-12-31", total_amount: "135.31", customer_review: "The courier reported an urgent issue; the record was cancelled." },
            { id: 143, restaurant_id: 30, order_date: "2023-09-10", total_amount: "31.60", customer_review: "The refund was completed — duplicate case, no further action." },
            { id: 144, restaurant_id: 83, order_date: "2023-05-13", total_amount: "10.44", customer_review: "The team asked for a change and the order was completed." },
            { id: 145, restaurant_id: 59, order_date: "2023-10-28", total_amount: "93.26", customer_review: "The courier confirmed the details and the order was updated." },
            { id: 146, restaurant_id: 70, order_date: "2023-11-09", total_amount: "144.87", customer_review: "No response from the team, so the order was escalated." },
            { id: 147, restaurant_id: 26, order_date: "2023-09-06", total_amount: "74.63", customer_review: null },
            { id: 148, restaurant_id: 57, order_date: "2023-12-09", total_amount: "19.72", customer_review: "The courier confirmed the details and the claim was closed." },
            { id: 149, restaurant_id: 14, order_date: "2023-12-22", total_amount: "89.21", customer_review: "No response from the team, so the item was delayed." },
            { id: 150, restaurant_id: 76, order_date: "2023-01-03", total_amount: "49.93", customer_review: "No response from the team, so the session was cancelled." },
            { id: 151, restaurant_id: 59, order_date: "2023-09-10", total_amount: "16.31", customer_review: "The request was closed — duplicate case, no further action." },
            { id: 152, restaurant_id: 75, order_date: "2023-03-22", total_amount: "89.34", customer_review: "The item was approved — partial case, no further action." },
            { id: 153, restaurant_id: 21, order_date: "2023-10-18", total_amount: "44.25", customer_review: "The courier confirmed the details and the claim was processed." },
            { id: 154, restaurant_id: 56, order_date: "2023-12-07", total_amount: "44.98", customer_review: "The customer asked for a change and the appointment was replaced." },
            { id: 155, restaurant_id: 23, order_date: "2023-07-06", total_amount: "24.54", customer_review: "The session was reopened — repeat case, no further action." },
            { id: 156, restaurant_id: 26, order_date: "2023-06-15", total_amount: "116.87", customer_review: "The session was completed — unusual case, no further action." },
            { id: 157, restaurant_id: 99, order_date: "2023-11-21", total_amount: "21.51", customer_review: "The supplier reported an incomplete issue; the ticket was rescheduled." },
            { id: 158, restaurant_id: 37, order_date: "2023-01-12", total_amount: "95.98", customer_review: "No response from the customer, so the item was cancelled." },
            { id: 159, restaurant_id: 83, order_date: "2023-12-09", total_amount: "24.99", customer_review: "The team confirmed the details and the record was delayed." },
            { id: 160, restaurant_id: 65, order_date: "2023-06-07", total_amount: "42.02", customer_review: "The ticket was approved — manual case, no further action." },
            { id: 161, restaurant_id: 42, order_date: "2023-04-12", total_amount: "139.10", customer_review: "The customer asked for a change and the ticket was rejected." },
            { id: 162, restaurant_id: 92, order_date: "2023-12-24", total_amount: "49.74", customer_review: "No response from the customer, so the invoice was reviewed." },
            { id: 163, restaurant_id: 63, order_date: "2023-11-16", total_amount: "23.31", customer_review: "The supplier confirmed the details and the invoice was closed." },
            { id: 164, restaurant_id: 76, order_date: "2023-12-05", total_amount: "16.24", customer_review: "The record was updated — standard case, no further action." },
            { id: 165, restaurant_id: 40, order_date: "2023-02-18", total_amount: "122.13", customer_review: "The team reported an incomplete issue; the document was confirmed." },
            { id: 166, restaurant_id: 27, order_date: "2023-09-01", total_amount: "59.95", customer_review: "The record was approved — minor case, no further action." },
            { id: 167, restaurant_id: 63, order_date: "2023-07-28", total_amount: "59.93", customer_review: "The account owner asked for a change and the appointment was resolved." },
            { id: 168, restaurant_id: 45, order_date: "2023-01-31", total_amount: "61.37", customer_review: "The account owner asked for a change and the report was resolved." },
            { id: 169, restaurant_id: 28, order_date: "2023-12-01", total_amount: "23.15", customer_review: "The customer asked for a change and the document was processed." },
            { id: 170, restaurant_id: 100, order_date: "2023-03-07", total_amount: "25.50", customer_review: null },
            { id: 171, restaurant_id: 41, order_date: "2023-01-29", total_amount: "90.83", customer_review: "No response from the courier, so the document was updated." },
            { id: 172, restaurant_id: 55, order_date: "2023-11-11", total_amount: "10.34", customer_review: "The item was closed — unusual case, no further action." },
            { id: 173, restaurant_id: 8, order_date: "2023-01-14", total_amount: "125.57", customer_review: "The team asked for a change and the document was escalated." },
            { id: 174, restaurant_id: 39, order_date: "2023-01-13", total_amount: "46.39", customer_review: "The item was closed — repeat case, no further action." },
            { id: 175, restaurant_id: 1, order_date: "2023-07-02", total_amount: "57.26", customer_review: "The reviewer confirmed the details and the shipment was reopened." },
            { id: 176, restaurant_id: 97, order_date: "2023-01-24", total_amount: "65.85", customer_review: "The delivery was completed — repeat case, no further action." },
            { id: 177, restaurant_id: 67, order_date: "2023-09-07", total_amount: "87.43", customer_review: "The customer reported an unusual issue; the session was resolved." },
            { id: 178, restaurant_id: 6, order_date: "2023-03-06", total_amount: "12.22", customer_review: "The account owner reported a manual issue; the order was completed." },
            { id: 179, restaurant_id: 72, order_date: "2023-12-24", total_amount: "15.84", customer_review: "No response from the customer, so the document was completed." },
            { id: 180, restaurant_id: 56, order_date: "2023-01-22", total_amount: "120.76", customer_review: "The team asked for a change and the session was confirmed." },
            { id: 181, restaurant_id: 97, order_date: "2023-12-15", total_amount: "55.32", customer_review: "No response from the reviewer, so the booking was completed." },
            { id: 182, restaurant_id: 68, order_date: "2023-02-09", total_amount: "46.77", customer_review: null },
            { id: 183, restaurant_id: 98, order_date: "2023-10-12", total_amount: "10.83", customer_review: "The account owner reported an urgent issue; the order was processed." },
            { id: 184, restaurant_id: 17, order_date: "2023-08-15", total_amount: "90.29", customer_review: "The session was reviewed — standard case, no further action." },
            { id: 185, restaurant_id: 65, order_date: "2023-09-15", total_amount: "13.97", customer_review: "No response from the reviewer, so the record was refunded." },
            { id: 186, restaurant_id: 92, order_date: "2023-11-15", total_amount: "14.63", customer_review: "The reviewer confirmed the details and the report was replaced." },
            { id: 187, restaurant_id: 92, order_date: "2023-08-16", total_amount: "21.95", customer_review: "The report was escalated — repeat case, no further action." },
            { id: 188, restaurant_id: 47, order_date: "2023-05-29", total_amount: "10.10", customer_review: "The team confirmed the details and the item was updated." },
            { id: 189, restaurant_id: 1, order_date: "2023-03-18", total_amount: "50.12", customer_review: "The claim was resolved — unusual case, no further action." },
            { id: 190, restaurant_id: 82, order_date: "2023-12-19", total_amount: "47.71", customer_review: "The reviewer confirmed the details and the booking was rescheduled." },
            { id: 191, restaurant_id: 96, order_date: "2023-12-04", total_amount: "95.05", customer_review: "The report was escalated — standard case, no further action." },
            { id: 192, restaurant_id: 22, order_date: "2023-04-15", total_amount: "105.52", customer_review: "An operator confirmed the details and the appointment was cancelled." },
            { id: 193, restaurant_id: 82, order_date: "2023-04-14", total_amount: "47.63", customer_review: "The courier asked for a change and the ticket was confirmed." },
            { id: 194, restaurant_id: 67, order_date: "2023-09-24", total_amount: "48.12", customer_review: "No response from the customer, so the delivery was updated." },
            { id: 195, restaurant_id: 64, order_date: "2023-05-18", total_amount: "10.90", customer_review: "The customer asked for a change and the shipment was delayed." },
            { id: 196, restaurant_id: 66, order_date: "2023-03-27", total_amount: "82.92", customer_review: "The account owner confirmed the details and the order was cancelled." },
            { id: 197, restaurant_id: 28, order_date: "2023-02-23", total_amount: "102.96", customer_review: "The supplier confirmed the details and the payment was delayed." },
            { id: 198, restaurant_id: 27, order_date: "2023-07-26", total_amount: "13.29", customer_review: "The courier confirmed the details and the delivery was confirmed." },
            { id: 199, restaurant_id: 65, order_date: "2023-03-26", total_amount: "48.77", customer_review: "The record was rejected — manual case, no further action." },
            { id: 200, restaurant_id: 53, order_date: "2023-11-07", total_amount: "70.76", customer_review: "No response from the team, so the transfer was rejected." },
            { id: 201, restaurant_id: 73, order_date: "2023-08-15", total_amount: "11.65", customer_review: "The reviewer confirmed the details and the record was completed." },
            { id: 202, restaurant_id: 82, order_date: "2023-02-28", total_amount: "96.67", customer_review: "The booking was completed — urgent case, no further action." },
            { id: 203, restaurant_id: 56, order_date: "2023-09-23", total_amount: "16.72", customer_review: "No response from the reviewer, so the payment was escalated." },
            { id: 204, restaurant_id: 37, order_date: "2023-12-09", total_amount: "20.80", customer_review: "The team reported an incomplete issue; the request was completed." },
            { id: 205, restaurant_id: 24, order_date: "2023-12-30", total_amount: "97.84", customer_review: "The refund was delayed — urgent case, no further action." },
            { id: 206, restaurant_id: 16, order_date: "2023-09-04", total_amount: "26.65", customer_review: "The courier confirmed the details and the account was cancelled." },
            { id: 207, restaurant_id: 41, order_date: "2023-11-05", total_amount: "11.45", customer_review: "The customer reported an urgent issue; the account was refunded." },
            { id: 208, restaurant_id: 84, order_date: "2023-03-13", total_amount: "10.49", customer_review: "The request was processed — manual case, no further action." },
            { id: 209, restaurant_id: 100, order_date: "2023-06-29", total_amount: "142.64", customer_review: "The refund was refunded — late case, no further action." },
            { id: 210, restaurant_id: 100, order_date: "2023-02-02", total_amount: "17.73", customer_review: null },
            { id: 211, restaurant_id: 53, order_date: "2023-01-18", total_amount: "39.35", customer_review: "No response from the customer, so the invoice was rescheduled." },
            { id: 212, restaurant_id: 78, order_date: "2023-12-13", total_amount: "61.22", customer_review: "The account owner reported an urgent issue; the document was escalated." },
            { id: 213, restaurant_id: 7, order_date: "2023-09-18", total_amount: "24.49", customer_review: "An operator confirmed the details and the document was updated." },
            { id: 214, restaurant_id: 39, order_date: "2023-02-25", total_amount: "105.92", customer_review: "The team confirmed the details and the ticket was approved." },
            { id: 215, restaurant_id: 60, order_date: "2023-10-18", total_amount: "90.65", customer_review: "No response from the customer, so the shipment was approved." },
            { id: 216, restaurant_id: 19, order_date: "2023-11-09", total_amount: "10.06", customer_review: "No response from the account owner, so the appointment was cancelled." },
            { id: 217, restaurant_id: 10, order_date: "2023-12-16", total_amount: "14.16", customer_review: "No response from the courier, so the account was confirmed." },
            { id: 218, restaurant_id: 27, order_date: "2023-02-16", total_amount: "15.70", customer_review: "The supplier reported an urgent issue; the record was approved." },
            { id: 219, restaurant_id: 79, order_date: "2023-01-04", total_amount: "10.75", customer_review: null },
            { id: 220, restaurant_id: 17, order_date: "2023-01-08", total_amount: "24.98", customer_review: "The customer asked for a change and the booking was updated." },
            { id: 221, restaurant_id: 23, order_date: "2023-02-11", total_amount: "90.17", customer_review: "The team reported a late issue; the transfer was cancelled." },
            { id: 222, restaurant_id: 8, order_date: "2023-10-25", total_amount: "101.42", customer_review: "The team asked for a change and the document was closed." },
            { id: 223, restaurant_id: 15, order_date: "2023-02-26", total_amount: "33.23", customer_review: "No response from the courier, so the invoice was rescheduled." },
            { id: 224, restaurant_id: 27, order_date: "2023-04-24", total_amount: "147.78", customer_review: "The customer asked for a change and the request was rescheduled." },
            { id: 225, restaurant_id: 61, order_date: "2023-03-26", total_amount: "35.69", customer_review: "The supplier confirmed the details and the request was cancelled." },
            { id: 226, restaurant_id: 25, order_date: "2023-01-07", total_amount: "96.32", customer_review: "The team confirmed the details and the payment was processed." },
            { id: 227, restaurant_id: 21, order_date: "2023-03-18", total_amount: "58.16", customer_review: "The reviewer confirmed the details and the booking was escalated." },
            { id: 228, restaurant_id: 76, order_date: "2023-03-08", total_amount: "26.88", customer_review: "The team reported a minor issue; the delivery was completed." },
            { id: 229, restaurant_id: 48, order_date: "2023-04-21", total_amount: "71.90", customer_review: "The team confirmed the details and the request was cancelled." },
            { id: 230, restaurant_id: 81, order_date: "2023-05-10", total_amount: "21.11", customer_review: "No response from the courier, so the payment was refunded." },
            { id: 231, restaurant_id: 58, order_date: "2023-04-10", total_amount: "71.46", customer_review: "The booking was closed — urgent case, no further action." },
            { id: 232, restaurant_id: 74, order_date: "2023-10-03", total_amount: "59.46", customer_review: "The supplier confirmed the details and the invoice was closed." },
            { id: 233, restaurant_id: 4, order_date: "2023-04-11", total_amount: "120.98", customer_review: "The reviewer asked for a change and the request was reopened." },
            { id: 234, restaurant_id: 81, order_date: "2023-07-10", total_amount: "89.52", customer_review: "The account owner asked for a change and the item was reviewed." },
            { id: 235, restaurant_id: 99, order_date: "2023-11-16", total_amount: "28.62", customer_review: "The customer reported a routine issue; the request was updated." },
            { id: 236, restaurant_id: 85, order_date: "2023-12-21", total_amount: "90.03", customer_review: "The customer asked for a change and the appointment was reopened." },
            { id: 237, restaurant_id: 7, order_date: "2023-10-19", total_amount: "10.85", customer_review: "The customer reported an unusual issue; the booking was updated." },
            { id: 238, restaurant_id: 44, order_date: "2023-04-08", total_amount: "21.71", customer_review: null },
            { id: 239, restaurant_id: 12, order_date: "2023-01-14", total_amount: "26.77", customer_review: "The reviewer confirmed the details and the order was refunded." },
            { id: 240, restaurant_id: 68, order_date: "2023-01-14", total_amount: "29.34", customer_review: "The request was replaced — manual case, no further action." },
            { id: 241, restaurant_id: 97, order_date: "2023-10-01", total_amount: "125.68", customer_review: "The team asked for a change and the shipment was cancelled." },
            { id: 242, restaurant_id: 17, order_date: "2023-12-25", total_amount: "10.19", customer_review: "The report was resolved — routine case, no further action." },
            { id: 243, restaurant_id: 70, order_date: "2023-03-01", total_amount: "117.89", customer_review: null },
            { id: 244, restaurant_id: 73, order_date: "2023-01-24", total_amount: "10.13", customer_review: "The account owner reported an automatic issue; the order was confirmed." },
            { id: 245, restaurant_id: 86, order_date: "2023-01-13", total_amount: "41.55", customer_review: "The payment was closed — standard case, no further action." },
            { id: 246, restaurant_id: 63, order_date: "2023-01-01", total_amount: "51.64", customer_review: null },
            { id: 247, restaurant_id: 13, order_date: "2023-08-25", total_amount: "133.04", customer_review: "No response from an operator, so the claim was rejected." },
            { id: 248, restaurant_id: 28, order_date: "2023-06-27", total_amount: "148.42", customer_review: "An operator reported a routine issue; the delivery was confirmed." },
            { id: 249, restaurant_id: 90, order_date: "2023-02-07", total_amount: "45.70", customer_review: "The claim was resolved — late case, no further action." },
            { id: 250, restaurant_id: 23, order_date: "2023-11-15", total_amount: "24.06", customer_review: "No response from an operator, so the payment was reviewed." },
            { id: 251, restaurant_id: 53, order_date: "2023-11-15", total_amount: "55.57", customer_review: "The reviewer reported a duplicate issue; the item was rejected." },
            { id: 252, restaurant_id: 10, order_date: "2023-01-18", total_amount: "117.87", customer_review: "The session was replaced — urgent case, no further action." },
            { id: 253, restaurant_id: 83, order_date: "2023-09-22", total_amount: "63.21", customer_review: "The courier reported a repeat issue; the account was rescheduled." },
            { id: 254, restaurant_id: 94, order_date: "2023-11-04", total_amount: "75.47", customer_review: "The account was rejected — partial case, no further action." },
            { id: 255, restaurant_id: 88, order_date: "2023-08-06", total_amount: "50.20", customer_review: "The account owner confirmed the details and the shipment was approved." },
            { id: 256, restaurant_id: 87, order_date: "2023-11-05", total_amount: "123.98", customer_review: "No response from the supplier, so the document was processed." },
            { id: 257, restaurant_id: 56, order_date: "2023-12-01", total_amount: "13.03", customer_review: "The team confirmed the details and the report was resolved." },
            { id: 258, restaurant_id: 35, order_date: "2023-12-13", total_amount: "42.99", customer_review: "No response from the customer, so the delivery was escalated." },
            { id: 259, restaurant_id: 53, order_date: "2023-04-21", total_amount: "91.47", customer_review: "The item was processed — repeat case, no further action." },
            { id: 260, restaurant_id: 80, order_date: "2023-12-30", total_amount: "13.86", customer_review: "The refund was reopened — automatic case, no further action." },
            { id: 261, restaurant_id: 63, order_date: "2023-09-28", total_amount: "105.26", customer_review: "The account owner reported a repeat issue; the request was reopened." },
            { id: 262, restaurant_id: 82, order_date: "2023-01-03", total_amount: "35.75", customer_review: "The supplier asked for a change and the invoice was rejected." },
            { id: 263, restaurant_id: 20, order_date: "2023-03-14", total_amount: "87.34", customer_review: "An operator confirmed the details and the payment was confirmed." },
            { id: 264, restaurant_id: 34, order_date: "2023-11-01", total_amount: "20.11", customer_review: "No response from the courier, so the claim was resolved." },
            { id: 265, restaurant_id: 3, order_date: "2023-08-16", total_amount: "23.66", customer_review: "The team reported a standard issue; the document was processed." },
            { id: 266, restaurant_id: 44, order_date: "2023-08-17", total_amount: "20.66", customer_review: "The customer confirmed the details and the transfer was reviewed." },
            { id: 267, restaurant_id: 64, order_date: "2023-11-29", total_amount: "85.83", customer_review: "The item was cancelled — standard case, no further action." },
            { id: 268, restaurant_id: 21, order_date: "2023-02-09", total_amount: "17.37", customer_review: "An operator reported a routine issue; the appointment was replaced." },
            { id: 269, restaurant_id: 15, order_date: "2023-12-04", total_amount: "140.21", customer_review: "No response from the supplier, so the claim was refunded." },
            { id: 270, restaurant_id: 40, order_date: "2023-10-23", total_amount: "62.45", customer_review: "No response from the courier, so the report was completed." },
            { id: 271, restaurant_id: 91, order_date: "2023-01-10", total_amount: "24.91", customer_review: "The customer confirmed the details and the record was processed." },
            { id: 272, restaurant_id: 80, order_date: "2023-12-20", total_amount: "139.04", customer_review: "The order was replaced — routine case, no further action." },
            { id: 273, restaurant_id: 42, order_date: "2023-03-31", total_amount: "24.57", customer_review: "The courier confirmed the details and the booking was refunded." },
            { id: 274, restaurant_id: 13, order_date: "2023-09-10", total_amount: "144.74", customer_review: "The refund was replaced — duplicate case, no further action." },
            { id: 275, restaurant_id: 13, order_date: "2023-01-11", total_amount: "86.01", customer_review: "The courier reported an automatic issue; the shipment was reviewed." },
            { id: 276, restaurant_id: 2, order_date: "2023-11-17", total_amount: "13.47", customer_review: "The courier confirmed the details and the shipment was escalated." },
            { id: 277, restaurant_id: 87, order_date: "2023-04-29", total_amount: "28.80", customer_review: "The supplier reported a duplicate issue; the invoice was updated." },
            { id: 278, restaurant_id: 75, order_date: "2023-04-29", total_amount: "96.82", customer_review: "The invoice was cancelled — automatic case, no further action." },
            { id: 279, restaurant_id: 91, order_date: "2023-11-11", total_amount: "94.59", customer_review: "The customer reported a repeat issue; the order was rejected." },
            { id: 280, restaurant_id: 60, order_date: "2023-09-05", total_amount: "51.15", customer_review: "The account owner reported a standard issue; the appointment was escalated." },
            { id: 281, restaurant_id: 2, order_date: "2023-02-04", total_amount: "10.00", customer_review: "An operator reported a manual issue; the transfer was processed." },
            { id: 282, restaurant_id: 62, order_date: "2023-11-04", total_amount: "36.73", customer_review: "The courier confirmed the details and the booking was rejected." },
            { id: 283, restaurant_id: 100, order_date: "2023-11-09", total_amount: "28.87", customer_review: "The session was approved — unusual case, no further action." },
            { id: 284, restaurant_id: 94, order_date: "2023-12-12", total_amount: "85.54", customer_review: "The claim was delayed — standard case, no further action." },
            { id: 285, restaurant_id: 37, order_date: "2023-11-10", total_amount: "14.50", customer_review: "No response from the courier, so the record was reopened." },
            { id: 286, restaurant_id: 72, order_date: "2023-09-12", total_amount: "147.04", customer_review: "The customer confirmed the details and the report was closed." },
            { id: 287, restaurant_id: 43, order_date: "2023-12-13", total_amount: "20.54", customer_review: "The team reported an urgent issue; the session was resolved." },
            { id: 288, restaurant_id: 22, order_date: "2023-05-09", total_amount: "109.10", customer_review: "No response from the account owner, so the report was refunded." },
            { id: 289, restaurant_id: 81, order_date: "2023-09-06", total_amount: "53.12", customer_review: "No response from the team, so the order was processed." },
            { id: 290, restaurant_id: 38, order_date: "2023-04-26", total_amount: "10.32", customer_review: "The courier confirmed the details and the invoice was closed." },
            { id: 291, restaurant_id: 78, order_date: "2023-04-04", total_amount: "11.32", customer_review: "The refund was rejected — routine case, no further action." },
            { id: 292, restaurant_id: 89, order_date: "2023-12-24", total_amount: "10.23", customer_review: "No response from the supplier, so the booking was approved." },
            { id: 293, restaurant_id: 79, order_date: "2023-08-27", total_amount: "12.90", customer_review: "The account owner reported a standard issue; the delivery was confirmed." },
            { id: 294, restaurant_id: 17, order_date: "2023-11-30", total_amount: "145.00", customer_review: null },
            { id: 295, restaurant_id: 79, order_date: "2023-08-13", total_amount: "66.63", customer_review: "No response from an operator, so the invoice was escalated." },
            { id: 296, restaurant_id: 84, order_date: "2023-10-27", total_amount: "92.08", customer_review: "The team confirmed the details and the session was resolved." },
            { id: 297, restaurant_id: 41, order_date: "2023-02-15", total_amount: "100.26", customer_review: "The account owner confirmed the details and the ticket was cancelled." },
            { id: 298, restaurant_id: 2, order_date: "2023-02-02", total_amount: "10.55", customer_review: "The courier confirmed the details and the report was replaced." },
            { id: 299, restaurant_id: 19, order_date: "2023-11-18", total_amount: "99.80", customer_review: "The reviewer confirmed the details and the delivery was updated." },
            { id: 300, restaurant_id: 93, order_date: "2023-04-22", total_amount: "148.09", customer_review: "No response from the courier, so the record was completed." },
        ],
    });
}

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