// 3D Model Asset Repository (3d-model-asset-repository) 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.agencies), 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.agencies.createMany({
        data: [
            { id: 1, agency_name: "Beacon Commission", location: "Paris" },
            { id: 2, agency_name: "Iron Agency", location: "Hamburg" },
            { id: 3, agency_name: "Atlas Commission", location: "Vancouver" },
            { id: 4, agency_name: "Ridge Agency", location: "Brussels" },
            { id: 5, agency_name: "Crest Commission", location: "Cairo" },
            { id: 6, agency_name: "Tidal Commission", location: "Tokyo" },
            { id: 7, agency_name: "Lantern Commission", location: "Porto" },
            { id: 8, agency_name: "Acme Agency", location: "London" },
            { id: 9, agency_name: "Willow Commission", location: "Manchester" },
            { id: 10, agency_name: "Apex Agency", location: "Cairo" },
            { id: 11, agency_name: "Tidal Agency", location: "Athens" },
            { id: 12, agency_name: "Compass Agency", location: "Porto" },
            { id: 13, agency_name: "Acme Commission", location: "Taipei" },
            { id: 14, agency_name: "Harbor Agency", location: "Munich" },
            { id: 15, agency_name: "Tidal Commission", location: "Lisbon" },
            { id: 16, agency_name: "Iron Agency", location: "Berlin" },
            { id: 17, agency_name: "Cobalt Agency", location: "Warsaw" },
            { id: 18, agency_name: "Willow Agency", location: "Singapore" },
            { id: 19, agency_name: "Granite Agency", location: "Paris" },
            { id: 20, agency_name: "Keystone Agency", location: "Munich" },
        ],
    });
    await prisma.users.createMany({
        data: [
            { id: 1, full_name: "Isaac Garcia", user_role: "administrator", agency_id: 4, email: "isaac.garcia@example.org" },
            { id: 2, full_name: "Rafael Walker", user_role: "administrator", agency_id: 18, email: "rafael.walker@example.org" },
            { id: 3, full_name: "Arjun Zhang", user_role: "administrator", agency_id: 16, email: "arjun.zhang@example.com" },
            { id: 4, full_name: "Mia Gomez", user_role: "designer", agency_id: 16, email: "mia.gomez@example.org" },
            { id: 5, full_name: "Sven Hoffmann", user_role: "reviewer", agency_id: null, email: null },
            { id: 6, full_name: "Lina Zhang", user_role: "administrator", agency_id: 10, email: "lina.zhang@example.com" },
            { id: 7, full_name: "Diego Hughes", user_role: "administrator", agency_id: 6, email: "diego.hughes@example.net" },
            { id: 8, full_name: "Sven Miller", user_role: "designer", agency_id: 16, email: "sven.miller@example.com" },
            { id: 9, full_name: "Rosa Costa", user_role: "administrator", agency_id: 3, email: "rosa.costa@example.org" },
            { id: 10, full_name: "Julia Wright", user_role: "administrator", agency_id: 17, email: "julia.wright@example.net" },
            { id: 11, full_name: "Mateo Bennett", user_role: "administrator", agency_id: 14, email: "mateo.bennett@example.org" },
            { id: 12, full_name: "Rosa Wilson", user_role: "designer", agency_id: 10, email: "rosa.wilson@example.org" },
            { id: 13, full_name: "Maya Oliveira", user_role: "designer", agency_id: 4, email: "maya.oliveira@example.com" },
            { id: 14, full_name: "Jack Wang", user_role: "administrator", agency_id: 18, email: "jack.wang@example.org" },
            { id: 15, full_name: "Nour Torres", user_role: "administrator", agency_id: 17, email: "nour.torres@example.org" },
            { id: 16, full_name: "Grace Larsen", user_role: "administrator", agency_id: 2, email: "grace.larsen@example.net" },
            { id: 17, full_name: "Paula Larsen", user_role: "designer", agency_id: 19, email: "paula.larsen@example.net" },
            { id: 18, full_name: "Isaac Diaz", user_role: "administrator", agency_id: 13, email: "isaac.diaz@example.net" },
            { id: 19, full_name: "Mohamed Kowalski", user_role: "administrator", agency_id: 3, email: "mohamed.kowalski@example.com" },
            { id: 20, full_name: "Elena Zhang", user_role: "administrator", agency_id: 17, email: "elena.zhang@example.org" },
            { id: 21, full_name: "Mateo Kumar", user_role: "administrator", agency_id: 10, email: "mateo.kumar@example.com" },
            { id: 22, full_name: "Carla Carter", user_role: "administrator", agency_id: 13, email: "carla.carter@example.net" },
            { id: 23, full_name: "Ruby Ibrahim", user_role: "administrator", agency_id: 14, email: "ruby.ibrahim@example.net" },
            { id: 24, full_name: "Chloe Nakamura", user_role: "reviewer", agency_id: null, email: null },
            { id: 25, full_name: "Daniel Shah", user_role: "administrator", agency_id: 11, email: "daniel.shah@example.org" },
            { id: 26, full_name: "Tomas Clark", user_role: "administrator", agency_id: 8, email: "tomas.clark@example.net" },
            { id: 27, full_name: "Omar Shah", user_role: "administrator", agency_id: 6, email: "omar.shah@example.net" },
            { id: 28, full_name: "Diego Lee", user_role: "administrator", agency_id: 6, email: "diego.lee@example.net" },
            { id: 29, full_name: "Felix Gupta", user_role: "reviewer", agency_id: null, email: null },
            { id: 30, full_name: "Laura Taylor", user_role: "administrator", agency_id: 11, email: "laura.taylor@example.net" },
            { id: 31, full_name: "Zara Almeida", user_role: "administrator", agency_id: 12, email: "zara.almeida@example.org" },
            { id: 32, full_name: "Noah Hansen", user_role: "administrator", agency_id: 7, email: "noah.hansen@example.net" },
            { id: 33, full_name: "Julia Novak", user_role: "administrator", agency_id: 1, email: "julia.novak@example.org" },
            { id: 34, full_name: "Alice Klein", user_role: "administrator", agency_id: 10, email: "alice.klein@example.org" },
            { id: 35, full_name: "Elif Ibrahim", user_role: "administrator", agency_id: 1, email: "elif.ibrahim@example.net" },
            { id: 36, full_name: "Hannah Hassan", user_role: "administrator", agency_id: 6, email: "hannah.hassan@example.net" },
            { id: 37, full_name: "Felix Wang", user_role: "administrator", agency_id: 12, email: "felix.wang@example.com" },
            { id: 38, full_name: "Mohamed Sato", user_role: "designer", agency_id: 5, email: "mohamed.sato@example.org" },
            { id: 39, full_name: "Maya Sato", user_role: "administrator", agency_id: 11, email: "maya.sato@example.com" },
            { id: 40, full_name: "Nour Lopez", user_role: "administrator", agency_id: 17, email: "nour.lopez@example.com" },
            { id: 41, full_name: "Yara Wang", user_role: "designer", agency_id: 11, email: "yara.wang@example.net" },
            { id: 42, full_name: "Ana Murphy", user_role: "designer", agency_id: 11, email: "ana.murphy@example.com" },
            { id: 43, full_name: "Chloe Sousa", user_role: "administrator", agency_id: 20, email: "chloe.sousa@example.net" },
            { id: 44, full_name: "Tariq Wang", user_role: "administrator", agency_id: 6, email: "tariq.wang@example.com" },
            { id: 45, full_name: "Pedro Nakamura", user_role: "administrator", agency_id: 12, email: "pedro.nakamura@example.org" },
            { id: 46, full_name: "Lina Miller", user_role: "administrator", agency_id: 1, email: "lina.miller@example.com" },
            { id: 47, full_name: "Mila Johnson", user_role: "administrator", agency_id: 8, email: "mila.johnson@example.org" },
            { id: 48, full_name: "Nour Johnson", user_role: "administrator", agency_id: 19, email: "nour.johnson@example.com" },
            { id: 49, full_name: "Nadia Hassan", user_role: "reviewer", agency_id: null, email: null },
            { id: 50, full_name: "Ibrahim Baker", user_role: "administrator", agency_id: 8, email: "ibrahim.baker@example.org" },
            { id: 51, full_name: "Ruby Tanaka", user_role: "designer", agency_id: 8, email: "ruby.tanaka@example.com" },
            { id: 52, full_name: "Ravi Jensen", user_role: "administrator", agency_id: 13, email: "ravi.jensen@example.com" },
            { id: 53, full_name: "Carla Young", user_role: "administrator", agency_id: 3, email: "carla.young@example.net" },
            { id: 54, full_name: "Hugo Demir", user_role: "administrator", agency_id: 8, email: "hugo.demir@example.net" },
            { id: 55, full_name: "Zara Shah", user_role: "designer", agency_id: 13, email: "zara.shah@example.org" },
            { id: 56, full_name: "Rosa Patel", user_role: "administrator", agency_id: 18, email: "rosa.patel@example.net" },
            { id: 57, full_name: "Olivia Meyer", user_role: "designer", agency_id: 5, email: "olivia.meyer@example.org" },
            { id: 58, full_name: "Rosa Larsen", user_role: "administrator", agency_id: 20, email: "rosa.larsen@example.com" },
            { id: 59, full_name: "Ethan Dubois", user_role: "reviewer", agency_id: null, email: null },
            { id: 60, full_name: "Leo Weber", user_role: "administrator", agency_id: 4, email: "leo.weber@example.net" },
            { id: 61, full_name: "Tomas Ibrahim", user_role: "designer", agency_id: 6, email: "tomas.ibrahim@example.org" },
            { id: 62, full_name: "Uma Zhang", user_role: "administrator", agency_id: 4, email: "uma.zhang@example.com" },
            { id: 63, full_name: "Mateo Hansen", user_role: "administrator", agency_id: 10, email: "mateo.hansen@example.org" },
            { id: 64, full_name: "Ravi Kumar", user_role: "administrator", agency_id: 16, email: "ravi.kumar@example.org" },
            { id: 65, full_name: "Carla Jansen", user_role: "administrator", agency_id: 1, email: "carla.jansen@example.org" },
            { id: 66, full_name: "Isaac Kowalski", user_role: "administrator", agency_id: 16, email: "isaac.kowalski@example.net" },
            { id: 67, full_name: "Mohamed Kim", user_role: "administrator", agency_id: 2, email: "mohamed.kim@example.org" },
            { id: 68, full_name: "Ibrahim Murphy", user_role: "designer", agency_id: 20, email: "ibrahim.murphy@example.net" },
            { id: 69, full_name: "Ivan Ali", user_role: "administrator", agency_id: 5, email: "ivan.ali@example.org" },
            { id: 70, full_name: "Nour Wilson", user_role: "administrator", agency_id: 7, email: "nour.wilson@example.net" },
            { id: 71, full_name: "Jonas Demir", user_role: "designer", agency_id: 12, email: "jonas.demir@example.org" },
            { id: 72, full_name: "Lina Mendes", user_role: "administrator", agency_id: 14, email: "lina.mendes@example.org" },
            { id: 73, full_name: "Ravi Vargas", user_role: "reviewer", agency_id: null, email: null },
            { id: 74, full_name: "Priya Gupta", user_role: "reviewer", agency_id: null, email: null },
            { id: 75, full_name: "Theo Cruz", user_role: "administrator", agency_id: 5, email: "theo.cruz@example.com" },
            { id: 76, full_name: "Nadia Castro", user_role: "administrator", agency_id: 1, email: "nadia.castro@example.com" },
            { id: 77, full_name: "Mohamed Gomez", user_role: "designer", agency_id: 13, email: "mohamed.gomez@example.net" },
            { id: 78, full_name: "Ruby Carter", user_role: "designer", agency_id: 14, email: "ruby.carter@example.net" },
            { id: 79, full_name: "Yusuf Khan", user_role: "designer", agency_id: 14, email: "yusuf.khan@example.com" },
            { id: 80, full_name: "Arjun Clark", user_role: "administrator", agency_id: 8, email: "arjun.clark@example.net" },
            { id: 81, full_name: "Carlos Nguyen", user_role: "administrator", agency_id: 1, email: "carlos.nguyen@example.net" },
            { id: 82, full_name: "Isaac Taylor", user_role: "administrator", agency_id: 9, email: "isaac.taylor@example.org" },
            { id: 83, full_name: "Rosa Martin", user_role: "administrator", agency_id: 13, email: "rosa.martin@example.com" },
            { id: 84, full_name: "Diego Lopez", user_role: "administrator", agency_id: 1, email: "diego.lopez@example.org" },
            { id: 85, full_name: "Sofia Davis", user_role: "administrator", agency_id: 5, email: "sofia.davis@example.org" },
            { id: 86, full_name: "Ben Gupta", user_role: "administrator", agency_id: 1, email: "ben.gupta@example.net" },
            { id: 87, full_name: "Tariq Kumar", user_role: "administrator", agency_id: 4, email: "tariq.kumar@example.org" },
            { id: 88, full_name: "Nadia Wagner", user_role: "designer", agency_id: 8, email: "nadia.wagner@example.com" },
            { id: 89, full_name: "Jade Hoffmann", user_role: "administrator", agency_id: 15, email: "jade.hoffmann@example.net" },
            { id: 90, full_name: "Felix Clark", user_role: "administrator", agency_id: 14, email: "felix.clark@example.net" },
            { id: 91, full_name: "Maya Young", user_role: "administrator", agency_id: 14, email: "maya.young@example.com" },
            { id: 92, full_name: "Sam Baker", user_role: "administrator", agency_id: 16, email: "sam.baker@example.com" },
            { id: 93, full_name: "Laura Becker", user_role: "reviewer", agency_id: null, email: null },
            { id: 94, full_name: "Theo Murphy", user_role: "administrator", agency_id: 7, email: "theo.murphy@example.net" },
            { id: 95, full_name: "Sara Pereira", user_role: "administrator", agency_id: 19, email: "sara.pereira@example.net" },
            { id: 96, full_name: "James Dubois", user_role: "administrator", agency_id: 17, email: "james.dubois@example.net" },
            { id: 97, full_name: "Carla Jansen", user_role: "administrator", agency_id: 18, email: "carla.jansen@example.org" },
            { id: 98, full_name: "Zara Kumar", user_role: "administrator", agency_id: 18, email: "zara.kumar@example.net" },
            { id: 99, full_name: "Elena Dubois", user_role: "designer", agency_id: 12, email: "elena.dubois@example.net" },
            { id: 100, full_name: "Fatima Ruiz", user_role: "designer", agency_id: 13, email: "fatima.ruiz@example.net" },
            { id: 101, full_name: "Jack Jensen", user_role: "administrator", agency_id: 18, email: "jack.jensen@example.com" },
            { id: 102, full_name: "Ethan Pereira", user_role: "administrator", agency_id: 9, email: "ethan.pereira@example.net" },
            { id: 103, full_name: "Elif Tanaka", user_role: "administrator", agency_id: 13, email: "elif.tanaka@example.com" },
            { id: 104, full_name: "Anna Tanaka", user_role: "reviewer", agency_id: null, email: null },
            { id: 105, full_name: "Olivia Clark", user_role: "reviewer", agency_id: null, email: null },
            { id: 106, full_name: "Theo Young", user_role: "reviewer", agency_id: null, email: null },
            { id: 107, full_name: "Rosa Martin", user_role: "administrator", agency_id: 8, email: "rosa.martin@example.com" },
            { id: 108, full_name: "Uma Jansen", user_role: "administrator", agency_id: 19, email: "uma.jansen@example.com" },
            { id: 109, full_name: "Sara Ali", user_role: "administrator", agency_id: 10, email: "sara.ali@example.org" },
            { id: 110, full_name: "Uma Wang", user_role: "administrator", agency_id: 14, email: "uma.wang@example.com" },
            { id: 111, full_name: "Anna Jansen", user_role: "administrator", agency_id: 11, email: "anna.jansen@example.com" },
            { id: 112, full_name: "Ibrahim Oliveira", user_role: "administrator", agency_id: 1, email: "ibrahim.oliveira@example.net" },
            { id: 113, full_name: "Diego Mendes", user_role: "administrator", agency_id: 18, email: "diego.mendes@example.net" },
            { id: 114, full_name: "Tariq Taylor", user_role: "administrator", agency_id: 4, email: "tariq.taylor@example.com" },
            { id: 115, full_name: "Julia Garcia", user_role: "reviewer", agency_id: null, email: null },
            { id: 116, full_name: "Ben Ibrahim", user_role: "reviewer", agency_id: null, email: null },
            { id: 117, full_name: "James Flores", user_role: "administrator", agency_id: 14, email: "james.flores@example.org" },
            { id: 118, full_name: "Sven Taylor", user_role: "designer", agency_id: 14, email: "sven.taylor@example.net" },
            { id: 119, full_name: "Chen Costa", user_role: "reviewer", agency_id: null, email: null },
            { id: 120, full_name: "Maja Meyer", user_role: "administrator", agency_id: 4, email: "maja.meyer@example.net" },
            { id: 121, full_name: "Nina Mendes", user_role: "designer", agency_id: 6, email: "nina.mendes@example.com" },
            { id: 122, full_name: "Jade Cruz", user_role: "designer", agency_id: 9, email: "jade.cruz@example.com" },
            { id: 123, full_name: "Alice Diaz", user_role: "designer", agency_id: 2, email: "alice.diaz@example.org" },
            { id: 124, full_name: "Sven Evans", user_role: "designer", agency_id: 6, email: "sven.evans@example.org" },
            { id: 125, full_name: "Isaac Martin", user_role: "administrator", agency_id: 19, email: "isaac.martin@example.net" },
            { id: 126, full_name: "Ibrahim Andersen", user_role: "administrator", agency_id: 8, email: "ibrahim.andersen@example.org" },
            { id: 127, full_name: "Zoe Smith", user_role: "administrator", agency_id: 15, email: "zoe.smith@example.net" },
            { id: 128, full_name: "Ines Khan", user_role: "administrator", agency_id: 2, email: "ines.khan@example.net" },
            { id: 129, full_name: "Liam Lee", user_role: "administrator", agency_id: 5, email: "liam.lee@example.net" },
            { id: 130, full_name: "Hana Bennett", user_role: "administrator", agency_id: 1, email: "hana.bennett@example.com" },
            { id: 131, full_name: "Deniz Schmidt", user_role: "administrator", agency_id: 17, email: "deniz.schmidt@example.net" },
            { id: 132, full_name: "Rosa Torres", user_role: "designer", agency_id: 4, email: "rosa.torres@example.com" },
            { id: 133, full_name: "Liam Mendes", user_role: "administrator", agency_id: 5, email: "liam.mendes@example.com" },
            { id: 134, full_name: "Tomas Weber", user_role: "designer", agency_id: 20, email: "tomas.weber@example.net" },
            { id: 135, full_name: "Maya Davis", user_role: "administrator", agency_id: 20, email: "maya.davis@example.org" },
            { id: 136, full_name: "Sven Wilson", user_role: "administrator", agency_id: 6, email: "sven.wilson@example.com" },
            { id: 137, full_name: "Elif Wagner", user_role: "administrator", agency_id: 9, email: "elif.wagner@example.com" },
            { id: 138, full_name: "Nour Demir", user_role: "reviewer", agency_id: null, email: null },
            { id: 139, full_name: "Olivia Gupta", user_role: "designer", agency_id: 6, email: "olivia.gupta@example.net" },
            { id: 140, full_name: "Theo Meyer", user_role: "administrator", agency_id: 16, email: "theo.meyer@example.com" },
            { id: 141, full_name: "Lucas Fischer", user_role: "administrator", agency_id: 3, email: "lucas.fischer@example.net" },
            { id: 142, full_name: "Uma Wang", user_role: "administrator", agency_id: 12, email: "uma.wang@example.net" },
            { id: 143, full_name: "Marco Adams", user_role: "designer", agency_id: 9, email: "marco.adams@example.com" },
            { id: 144, full_name: "Lina Torres", user_role: "administrator", agency_id: 13, email: "lina.torres@example.net" },
            { id: 145, full_name: "Jack Wilson", user_role: "administrator", agency_id: 10, email: "jack.wilson@example.com" },
            { id: 146, full_name: "Maja Moreau", user_role: "administrator", agency_id: 8, email: "maja.moreau@example.org" },
            { id: 147, full_name: "Hana Schmidt", user_role: "administrator", agency_id: 20, email: "hana.schmidt@example.org" },
            { id: 148, full_name: "Oscar Wang", user_role: "administrator", agency_id: 7, email: "oscar.wang@example.com" },
            { id: 149, full_name: "Kai Carter", user_role: "designer", agency_id: 13, email: "kai.carter@example.com" },
            { id: 150, full_name: "Ben Park", user_role: "administrator", agency_id: 16, email: "ben.park@example.com" },
            { id: 151, full_name: "Theo Tanaka", user_role: "administrator", agency_id: 1, email: "theo.tanaka@example.net" },
            { id: 152, full_name: "Liam Hassan", user_role: "administrator", agency_id: 2, email: "liam.hassan@example.net" },
            { id: 153, full_name: "Mohamed Murphy", user_role: "administrator", agency_id: 18, email: "mohamed.murphy@example.com" },
            { id: 154, full_name: "Ravi Nakamura", user_role: "administrator", agency_id: 9, email: "ravi.nakamura@example.org" },
            { id: 155, full_name: "Fatima Ibrahim", user_role: "designer", agency_id: 2, email: "fatima.ibrahim@example.com" },
            { id: 156, full_name: "Rafael Ali", user_role: "designer", agency_id: 12, email: "rafael.ali@example.org" },
            { id: 157, full_name: "Sam Baker", user_role: "designer", agency_id: 1, email: "sam.baker@example.com" },
            { id: 158, full_name: "Rafael Wagner", user_role: "administrator", agency_id: 18, email: "rafael.wagner@example.org" },
            { id: 159, full_name: "Ravi Jansen", user_role: "administrator", agency_id: 15, email: "ravi.jansen@example.org" },
            { id: 160, full_name: "Mia Moreau", user_role: "designer", agency_id: 3, email: "mia.moreau@example.com" },
            { id: 161, full_name: "Sven Brown", user_role: "administrator", agency_id: 2, email: "sven.brown@example.com" },
            { id: 162, full_name: "Chen Miller", user_role: "administrator", agency_id: 7, email: "chen.miller@example.org" },
            { id: 163, full_name: "Paula Mendes", user_role: "designer", agency_id: 9, email: "paula.mendes@example.com" },
            { id: 164, full_name: "Andre Meyer", user_role: "administrator", agency_id: 9, email: "andre.meyer@example.com" },
            { id: 165, full_name: "Mohamed Kumar", user_role: "reviewer", agency_id: null, email: null },
            { id: 166, full_name: "Noah Ibrahim", user_role: "reviewer", agency_id: null, email: null },
            { id: 167, full_name: "Wei Bennett", user_role: "administrator", agency_id: 19, email: "wei.bennett@example.net" },
            { id: 168, full_name: "Nadia Jensen", user_role: "administrator", agency_id: 13, email: "nadia.jensen@example.net" },
            { id: 169, full_name: "Lina Adams", user_role: "administrator", agency_id: 20, email: "lina.adams@example.org" },
            { id: 170, full_name: "Yara Flores", user_role: "administrator", agency_id: 1, email: "yara.flores@example.org" },
            { id: 171, full_name: "Wei Sato", user_role: "administrator", agency_id: 2, email: "wei.sato@example.org" },
            { id: 172, full_name: "Mei Costa", user_role: "administrator", agency_id: 20, email: "mei.costa@example.net" },
            { id: 173, full_name: "Mei Bennett", user_role: "administrator", agency_id: 7, email: "mei.bennett@example.com" },
            { id: 174, full_name: "Wei Zhang", user_role: "administrator", agency_id: 8, email: "wei.zhang@example.org" },
            { id: 175, full_name: "Deniz Khan", user_role: "administrator", agency_id: 7, email: "deniz.khan@example.net" },
            { id: 176, full_name: "Ines Oliveira", user_role: "administrator", agency_id: 5, email: "ines.oliveira@example.com" },
            { id: 177, full_name: "Felix Adams", user_role: "administrator", agency_id: 14, email: "felix.adams@example.com" },
            { id: 178, full_name: "Ivan Almeida", user_role: "administrator", agency_id: 20, email: "ivan.almeida@example.org" },
            { id: 179, full_name: "Grace Diaz", user_role: "administrator", agency_id: 20, email: "grace.diaz@example.org" },
            { id: 180, full_name: "Ravi Nakamura", user_role: "reviewer", agency_id: null, email: null },
            { id: 181, full_name: "Hugo Vargas", user_role: "administrator", agency_id: 20, email: "hugo.vargas@example.net" },
            { id: 182, full_name: "Carla Hassan", user_role: "administrator", agency_id: 10, email: "carla.hassan@example.org" },
            { id: 183, full_name: "Mia Almeida", user_role: "administrator", agency_id: 11, email: "mia.almeida@example.org" },
            { id: 184, full_name: "Deniz Wright", user_role: "designer", agency_id: 2, email: "deniz.wright@example.com" },
            { id: 185, full_name: "Uma Ali", user_role: "administrator", agency_id: 11, email: "uma.ali@example.org" },
            { id: 186, full_name: "Carlos Smith", user_role: "administrator", agency_id: 5, email: "carlos.smith@example.com" },
            { id: 187, full_name: "Yara Bauer", user_role: "reviewer", agency_id: null, email: null },
            { id: 188, full_name: "Leo Ibrahim", user_role: "designer", agency_id: 8, email: "leo.ibrahim@example.com" },
            { id: 189, full_name: "Rafael Patel", user_role: "designer", agency_id: 20, email: "rafael.patel@example.org" },
            { id: 190, full_name: "Laura Pereira", user_role: "designer", agency_id: 1, email: "laura.pereira@example.net" },
            { id: 191, full_name: "Sam Wagner", user_role: "administrator", agency_id: 1, email: "sam.wagner@example.com" },
            { id: 192, full_name: "Deniz Adams", user_role: "administrator", agency_id: 4, email: "deniz.adams@example.net" },
            { id: 193, full_name: "Nina Davis", user_role: "administrator", agency_id: 6, email: "nina.davis@example.org" },
            { id: 194, full_name: "Zara Flores", user_role: "administrator", agency_id: 4, email: "zara.flores@example.net" },
            { id: 195, full_name: "Rosa Park", user_role: "administrator", agency_id: 10, email: "rosa.park@example.org" },
            { id: 196, full_name: "Ethan Murphy", user_role: "administrator", agency_id: 17, email: "ethan.murphy@example.com" },
            { id: 197, full_name: "Zara Kim", user_role: "administrator", agency_id: 13, email: "zara.kim@example.org" },
            { id: 198, full_name: "Elif Martin", user_role: "designer", agency_id: 5, email: "elif.martin@example.net" },
            { id: 199, full_name: "Karim Weber", user_role: "reviewer", agency_id: null, email: null },
            { id: 200, full_name: "Andre Rossi", user_role: "designer", agency_id: 12, email: "andre.rossi@example.net" },
        ],
    });
    await prisma.assets.createMany({
        data: [
            { id: 1, asset_name: "model vehicle", asset_type: "texture", user_id: 37, upload_date: null },
            { id: 2, asset_name: "structure artifact", asset_type: "shader", user_id: 86, upload_date: new Date("2023-03-24T12:22:04Z") },
            { id: 3, asset_name: "representation vehicle", asset_type: "shader", user_id: 94, upload_date: new Date("2023-06-15T13:10:22Z") },
            { id: 4, asset_name: "geometry scene", asset_type: "animation", user_id: 34, upload_date: null },
            { id: 5, asset_name: "tool", asset_type: "mesh", user_id: 162, upload_date: new Date("2023-07-01T13:29:00Z") },
            { id: 6, asset_name: "structure design object", asset_type: "shader", user_id: 32, upload_date: new Date("2023-10-24T12:51:43Z") },
            { id: 7, asset_name: "component environment", asset_type: "mesh", user_id: 111, upload_date: new Date("2023-08-05T08:24:39Z") },
            { id: 8, asset_name: "design model simulation", asset_type: "shader", user_id: 151, upload_date: new Date("2023-05-23T14:30:44Z") },
            { id: 9, asset_name: "tool scene", asset_type: "mesh", user_id: 54, upload_date: new Date("2023-09-10T14:41:00Z") },
            { id: 10, asset_name: "render vehicle equipment", asset_type: "texture", user_id: 128, upload_date: null },
            { id: 11, asset_name: "vehicle equipment item", asset_type: "mesh", user_id: 184, upload_date: new Date("2023-02-09T16:09:38Z") },
            { id: 12, asset_name: "representation", asset_type: "mesh", user_id: 173, upload_date: new Date("2023-11-20T16:25:42Z") },
            { id: 13, asset_name: "item", asset_type: "animation", user_id: 200, upload_date: null },
            { id: 14, asset_name: "artifact", asset_type: "shader", user_id: 50, upload_date: new Date("2023-01-29T16:49:32Z") },
            { id: 15, asset_name: "mesh building", asset_type: "texture", user_id: 132, upload_date: null },
            { id: 16, asset_name: "scene", asset_type: "texture", user_id: 27, upload_date: null },
            { id: 17, asset_name: "environment", asset_type: "texture", user_id: 42, upload_date: null },
            { id: 18, asset_name: "object", asset_type: "texture", user_id: 182, upload_date: null },
            { id: 19, asset_name: "equipment object", asset_type: "mesh", user_id: 19, upload_date: new Date("2023-10-18T14:13:52Z") },
            { id: 20, asset_name: "geometry design", asset_type: "mesh", user_id: 1, upload_date: new Date("2023-09-30T13:12:57Z") },
            { id: 21, asset_name: "mesh", asset_type: "texture", user_id: 29, upload_date: null },
            { id: 22, asset_name: "model item render", asset_type: "mesh", user_id: 58, upload_date: new Date("2023-02-02T12:24:23Z") },
            { id: 23, asset_name: "artifact", asset_type: "mesh", user_id: 50, upload_date: new Date("2023-01-23T12:47:28Z") },
            { id: 24, asset_name: "environment", asset_type: "mesh", user_id: 118, upload_date: new Date("2023-12-03T09:26:02Z") },
            { id: 25, asset_name: "prototype vehicle", asset_type: "mesh", user_id: 122, upload_date: new Date("2023-12-03T16:14:38Z") },
            { id: 26, asset_name: "simulation artifact", asset_type: "shader", user_id: 86, upload_date: new Date("2023-12-30T17:54:18Z") },
            { id: 27, asset_name: "vehicle element object", asset_type: "mesh", user_id: 93, upload_date: new Date("2023-09-11T13:55:02Z") },
            { id: 28, asset_name: "scene", asset_type: "texture", user_id: 47, upload_date: null },
            { id: 29, asset_name: "scene building", asset_type: "texture", user_id: 172, upload_date: null },
            { id: 30, asset_name: "mesh", asset_type: "mesh", user_id: 79, upload_date: new Date("2023-07-08T14:37:21Z") },
            { id: 31, asset_name: "scene vehicle render", asset_type: "animation", user_id: 157, upload_date: null },
            { id: 32, asset_name: "component", asset_type: "mesh", user_id: 168, upload_date: new Date("2023-09-07T12:58:59Z") },
            { id: 33, asset_name: "simulation", asset_type: "texture", user_id: 81, upload_date: null },
            { id: 34, asset_name: "prototype asset geometry", asset_type: "texture", user_id: 7, upload_date: null },
            { id: 35, asset_name: "equipment building", asset_type: "shader", user_id: 120, upload_date: new Date("2023-02-02T10:27:31Z") },
            { id: 36, asset_name: "component mesh representation", asset_type: "mesh", user_id: 129, upload_date: new Date("2023-03-23T08:49:41Z") },
            { id: 37, asset_name: "representation", asset_type: "shader", user_id: 134, upload_date: new Date("2023-08-20T10:23:35Z") },
            { id: 38, asset_name: "component", asset_type: "shader", user_id: 48, upload_date: new Date("2023-12-18T14:56:36Z") },
            { id: 39, asset_name: "equipment geometry", asset_type: "shader", user_id: 74, upload_date: new Date("2023-08-19T09:39:33Z") },
            { id: 40, asset_name: "component", asset_type: "shader", user_id: 65, upload_date: new Date("2023-12-02T17:44:14Z") },
            { id: 41, asset_name: "building structure", asset_type: "mesh", user_id: 103, upload_date: new Date("2023-11-13T14:03:17Z") },
            { id: 42, asset_name: "design", asset_type: "mesh", user_id: 87, upload_date: new Date("2023-05-29T09:23:49Z") },
            { id: 43, asset_name: "element building", asset_type: "shader", user_id: 133, upload_date: new Date("2023-04-03T08:51:32Z") },
            { id: 44, asset_name: "element vehicle", asset_type: "texture", user_id: 196, upload_date: null },
            { id: 45, asset_name: "environment component tool", asset_type: "mesh", user_id: 96, upload_date: new Date("2023-01-14T10:52:56Z") },
            { id: 46, asset_name: "asset", asset_type: "texture", user_id: 103, upload_date: null },
            { id: 47, asset_name: "tool", asset_type: "mesh", user_id: 151, upload_date: new Date("2023-01-21T13:13:34Z") },
            { id: 48, asset_name: "prototype environment scene", asset_type: "shader", user_id: 86, upload_date: new Date("2023-10-02T15:16:06Z") },
            { id: 49, asset_name: "equipment tool", asset_type: "mesh", user_id: 39, upload_date: new Date("2023-04-28T13:18:41Z") },
            { id: 50, asset_name: "geometry asset item", asset_type: "shader", user_id: 75, upload_date: new Date("2023-01-19T12:23:08Z") },
            { id: 51, asset_name: "geometry render asset", asset_type: "mesh", user_id: 182, upload_date: new Date("2023-09-28T10:57:32Z") },
            { id: 52, asset_name: "geometry model component", asset_type: "mesh", user_id: 74, upload_date: new Date("2023-02-16T07:12:59Z") },
            { id: 53, asset_name: "asset", asset_type: "mesh", user_id: 49, upload_date: new Date("2023-11-18T12:30:16Z") },
            { id: 54, asset_name: "vehicle render", asset_type: "mesh", user_id: 45, upload_date: new Date("2023-12-30T14:39:44Z") },
            { id: 55, asset_name: "asset component", asset_type: "shader", user_id: 146, upload_date: new Date("2023-04-08T10:03:43Z") },
            { id: 56, asset_name: "artifact structure element", asset_type: "mesh", user_id: 7, upload_date: new Date("2023-05-01T14:31:32Z") },
            { id: 57, asset_name: "mesh design prototype", asset_type: "shader", user_id: 135, upload_date: new Date("2023-06-04T16:14:25Z") },
            { id: 58, asset_name: "representation mesh component", asset_type: "mesh", user_id: 162, upload_date: new Date("2023-07-02T10:16:13Z") },
            { id: 59, asset_name: "representation scene artifact", asset_type: "shader", user_id: 170, upload_date: new Date("2023-06-28T14:33:50Z") },
            { id: 60, asset_name: "mesh", asset_type: "mesh", user_id: 90, upload_date: new Date("2023-09-14T08:37:31Z") },
            { id: 61, asset_name: "design", asset_type: "mesh", user_id: 68, upload_date: new Date("2023-07-11T14:47:35Z") },
            { id: 62, asset_name: "element", asset_type: "shader", user_id: 26, upload_date: new Date("2023-08-17T14:21:14Z") },
            { id: 63, asset_name: "building geometry component", asset_type: "mesh", user_id: 155, upload_date: new Date("2023-12-27T10:10:33Z") },
            { id: 64, asset_name: "artifact prototype", asset_type: "mesh", user_id: 76, upload_date: new Date("2023-06-18T11:49:52Z") },
            { id: 65, asset_name: "equipment component scene", asset_type: "animation", user_id: 95, upload_date: null },
            { id: 66, asset_name: "design representation", asset_type: "mesh", user_id: 140, upload_date: new Date("2023-04-21T13:06:56Z") },
            { id: 67, asset_name: "render", asset_type: "mesh", user_id: 143, upload_date: new Date("2023-12-14T15:49:43Z") },
            { id: 68, asset_name: "object design equipment", asset_type: "mesh", user_id: 144, upload_date: new Date("2023-03-24T10:05:29Z") },
            { id: 69, asset_name: "object", asset_type: "mesh", user_id: 128, upload_date: new Date("2023-03-09T11:36:58Z") },
            { id: 70, asset_name: "artifact tool", asset_type: "texture", user_id: 162, upload_date: null },
            { id: 71, asset_name: "environment prototype mesh", asset_type: "animation", user_id: 99, upload_date: null },
            { id: 72, asset_name: "item artifact", asset_type: "mesh", user_id: 152, upload_date: new Date("2023-10-09T15:09:13Z") },
            { id: 73, asset_name: "design", asset_type: "mesh", user_id: 69, upload_date: new Date("2023-07-05T12:26:02Z") },
            { id: 74, asset_name: "scene environment", asset_type: "mesh", user_id: 128, upload_date: new Date("2023-03-06T14:58:56Z") },
            { id: 75, asset_name: "simulation structure render", asset_type: "mesh", user_id: 126, upload_date: new Date("2023-10-08T11:42:56Z") },
            { id: 76, asset_name: "artifact", asset_type: "texture", user_id: 56, upload_date: null },
            { id: 77, asset_name: "object", asset_type: "shader", user_id: 70, upload_date: new Date("2023-08-12T12:23:35Z") },
            { id: 78, asset_name: "tool object", asset_type: "mesh", user_id: 59, upload_date: new Date("2023-04-26T12:39:55Z") },
            { id: 79, asset_name: "equipment geometry building", asset_type: "shader", user_id: 37, upload_date: new Date("2023-10-28T11:33:39Z") },
            { id: 80, asset_name: "model", asset_type: "mesh", user_id: 177, upload_date: new Date("2023-12-20T13:59:01Z") },
            { id: 81, asset_name: "design environment", asset_type: "mesh", user_id: 133, upload_date: new Date("2023-04-28T14:32:04Z") },
            { id: 82, asset_name: "environment item", asset_type: "shader", user_id: 131, upload_date: new Date("2023-10-19T14:44:02Z") },
            { id: 83, asset_name: "mesh", asset_type: "shader", user_id: 79, upload_date: new Date("2023-09-02T09:57:50Z") },
            { id: 84, asset_name: "geometry component render", asset_type: "shader", user_id: 9, upload_date: new Date("2023-11-15T17:13:51Z") },
            { id: 85, asset_name: "geometry design", asset_type: "mesh", user_id: 161, upload_date: new Date("2023-01-29T10:09:37Z") },
            { id: 86, asset_name: "structure", asset_type: "texture", user_id: 172, upload_date: null },
            { id: 87, asset_name: "geometry", asset_type: "mesh", user_id: 158, upload_date: new Date("2023-11-21T17:29:20Z") },
            { id: 88, asset_name: "artifact object prototype", asset_type: "mesh", user_id: 63, upload_date: new Date("2023-09-13T09:13:16Z") },
            { id: 89, asset_name: "artifact building structure", asset_type: "shader", user_id: 80, upload_date: new Date("2023-06-24T10:18:53Z") },
            { id: 90, asset_name: "environment", asset_type: "shader", user_id: 44, upload_date: new Date("2023-07-14T17:55:58Z") },
            { id: 91, asset_name: "model", asset_type: "shader", user_id: 96, upload_date: new Date("2023-03-02T14:53:06Z") },
            { id: 92, asset_name: "artifact geometry simulation", asset_type: "animation", user_id: 154, upload_date: null },
            { id: 93, asset_name: "vehicle equipment", asset_type: "mesh", user_id: 170, upload_date: new Date("2023-09-20T09:53:46Z") },
            { id: 94, asset_name: "vehicle prototype simulation", asset_type: "mesh", user_id: 43, upload_date: new Date("2023-01-29T10:13:33Z") },
            { id: 95, asset_name: "item object", asset_type: "shader", user_id: 107, upload_date: new Date("2023-09-30T09:18:42Z") },
            { id: 96, asset_name: "element vehicle design", asset_type: "shader", user_id: 187, upload_date: new Date("2023-03-04T15:58:58Z") },
            { id: 97, asset_name: "mesh render tool", asset_type: "texture", user_id: 170, upload_date: null },
            { id: 98, asset_name: "tool artifact prototype", asset_type: "shader", user_id: 100, upload_date: new Date("2023-11-21T10:29:34Z") },
            { id: 99, asset_name: "component simulation model", asset_type: "shader", user_id: 3, upload_date: new Date("2023-05-13T14:34:26Z") },
            { id: 100, asset_name: "building vehicle equipment", asset_type: "animation", user_id: 117, upload_date: null },
            { id: 101, asset_name: "geometry vehicle tool", asset_type: "mesh", user_id: 112, upload_date: new Date("2023-08-31T10:57:50Z") },
            { id: 102, asset_name: "item", asset_type: "mesh", user_id: 91, upload_date: new Date("2023-01-11T12:06:18Z") },
            { id: 103, asset_name: "object prototype item", asset_type: "texture", user_id: 36, upload_date: null },
            { id: 104, asset_name: "building geometry model", asset_type: "animation", user_id: 175, upload_date: null },
            { id: 105, asset_name: "component", asset_type: "texture", user_id: 76, upload_date: null },
            { id: 106, asset_name: "simulation", asset_type: "mesh", user_id: 28, upload_date: new Date("2023-07-18T12:43:04Z") },
            { id: 107, asset_name: "prototype environment", asset_type: "texture", user_id: 55, upload_date: null },
            { id: 108, asset_name: "design simulation environment", asset_type: "shader", user_id: 4, upload_date: new Date("2023-11-13T14:21:49Z") },
            { id: 109, asset_name: "model item", asset_type: "mesh", user_id: 122, upload_date: new Date("2023-07-28T08:24:21Z") },
            { id: 110, asset_name: "tool mesh component", asset_type: "texture", user_id: 178, upload_date: null },
            { id: 111, asset_name: "tool scene", asset_type: "texture", user_id: 53, upload_date: null },
            { id: 112, asset_name: "element item model", asset_type: "shader", user_id: 101, upload_date: new Date("2023-03-07T13:50:38Z") },
            { id: 113, asset_name: "prototype environment model", asset_type: "animation", user_id: 78, upload_date: null },
            { id: 114, asset_name: "vehicle asset mesh", asset_type: "animation", user_id: 7, upload_date: null },
            { id: 115, asset_name: "object tool", asset_type: "texture", user_id: 191, upload_date: null },
            { id: 116, asset_name: "component asset", asset_type: "mesh", user_id: 136, upload_date: new Date("2023-06-19T09:55:26Z") },
            { id: 117, asset_name: "geometry mesh", asset_type: "mesh", user_id: 83, upload_date: new Date("2023-09-16T07:49:05Z") },
            { id: 118, asset_name: "mesh render object", asset_type: "shader", user_id: 73, upload_date: new Date("2023-06-27T12:49:58Z") },
            { id: 119, asset_name: "equipment", asset_type: "shader", user_id: 52, upload_date: new Date("2023-08-10T19:04:50Z") },
            { id: 120, asset_name: "building", asset_type: "animation", user_id: 79, upload_date: null },
            { id: 121, asset_name: "design", asset_type: "mesh", user_id: 1, upload_date: new Date("2023-08-02T10:45:06Z") },
            { id: 122, asset_name: "prototype", asset_type: "mesh", user_id: 87, upload_date: new Date("2023-03-13T11:37:12Z") },
            { id: 123, asset_name: "structure", asset_type: "animation", user_id: 106, upload_date: null },
            { id: 124, asset_name: "vehicle scene building", asset_type: "shader", user_id: 127, upload_date: new Date("2023-07-12T11:42:25Z") },
            { id: 125, asset_name: "design", asset_type: "mesh", user_id: 194, upload_date: new Date("2023-08-26T15:38:15Z") },
            { id: 126, asset_name: "model artifact render", asset_type: "mesh", user_id: 91, upload_date: new Date("2023-05-13T09:32:19Z") },
            { id: 127, asset_name: "render artifact", asset_type: "shader", user_id: 27, upload_date: new Date("2023-09-04T12:01:26Z") },
            { id: 128, asset_name: "item", asset_type: "mesh", user_id: 101, upload_date: new Date("2023-03-03T06:06:45Z") },
            { id: 129, asset_name: "artifact", asset_type: "animation", user_id: 180, upload_date: null },
            { id: 130, asset_name: "design geometry", asset_type: "mesh", user_id: 192, upload_date: new Date("2023-06-02T16:50:54Z") },
            { id: 131, asset_name: "object asset", asset_type: "animation", user_id: 114, upload_date: null },
            { id: 132, asset_name: "vehicle", asset_type: "texture", user_id: 47, upload_date: null },
            { id: 133, asset_name: "element tool structure", asset_type: "shader", user_id: 21, upload_date: new Date("2023-07-21T13:02:49Z") },
            { id: 134, asset_name: "environment", asset_type: "mesh", user_id: 124, upload_date: new Date("2023-07-24T09:50:40Z") },
            { id: 135, asset_name: "geometry scene model", asset_type: "mesh", user_id: 82, upload_date: new Date("2023-06-11T11:53:24Z") },
            { id: 136, asset_name: "prototype environment", asset_type: "animation", user_id: 135, upload_date: null },
            { id: 137, asset_name: "scene artifact representation", asset_type: "shader", user_id: 64, upload_date: new Date("2023-02-09T17:18:08Z") },
            { id: 138, asset_name: "representation", asset_type: "shader", user_id: 183, upload_date: new Date("2023-12-04T10:27:29Z") },
            { id: 139, asset_name: "model artifact equipment", asset_type: "mesh", user_id: 141, upload_date: new Date("2023-11-24T16:48:57Z") },
            { id: 140, asset_name: "tool", asset_type: "animation", user_id: 26, upload_date: null },
            { id: 141, asset_name: "scene simulation", asset_type: "shader", user_id: 151, upload_date: new Date("2023-03-29T13:24:13Z") },
            { id: 142, asset_name: "element", asset_type: "mesh", user_id: 171, upload_date: new Date("2023-12-28T10:37:40Z") },
            { id: 143, asset_name: "building component environment", asset_type: "shader", user_id: 161, upload_date: new Date("2023-06-22T15:05:36Z") },
            { id: 144, asset_name: "tool design", asset_type: "shader", user_id: 98, upload_date: new Date("2023-12-23T15:42:04Z") },
            { id: 145, asset_name: "vehicle equipment mesh", asset_type: "texture", user_id: 177, upload_date: null },
            { id: 146, asset_name: "scene geometry item", asset_type: "shader", user_id: 132, upload_date: new Date("2023-03-01T10:50:29Z") },
            { id: 147, asset_name: "prototype geometry representation", asset_type: "mesh", user_id: 99, upload_date: new Date("2023-02-02T10:59:41Z") },
            { id: 148, asset_name: "model structure element", asset_type: "mesh", user_id: 69, upload_date: new Date("2023-12-12T11:36:47Z") },
            { id: 149, asset_name: "component model environment", asset_type: "mesh", user_id: 184, upload_date: new Date("2023-11-26T10:58:50Z") },
            { id: 150, asset_name: "equipment", asset_type: "mesh", user_id: 51, upload_date: new Date("2023-05-07T16:07:32Z") },
            { id: 151, asset_name: "geometry equipment", asset_type: "texture", user_id: 4, upload_date: null },
            { id: 152, asset_name: "scene", asset_type: "mesh", user_id: 46, upload_date: new Date("2023-05-01T13:12:17Z") },
            { id: 153, asset_name: "scene render building", asset_type: "mesh", user_id: 27, upload_date: new Date("2023-07-02T10:26:34Z") },
            { id: 154, asset_name: "equipment mesh simulation", asset_type: "texture", user_id: 183, upload_date: null },
            { id: 155, asset_name: "component", asset_type: "shader", user_id: 191, upload_date: new Date("2023-12-01T13:43:20Z") },
            { id: 156, asset_name: "vehicle", asset_type: "mesh", user_id: 142, upload_date: new Date("2023-08-08T16:50:54Z") },
            { id: 157, asset_name: "artifact equipment vehicle", asset_type: "texture", user_id: 100, upload_date: null },
            { id: 158, asset_name: "environment", asset_type: "mesh", user_id: 84, upload_date: new Date("2023-10-26T13:01:35Z") },
            { id: 159, asset_name: "asset environment item", asset_type: "mesh", user_id: 110, upload_date: new Date("2023-02-23T09:51:14Z") },
            { id: 160, asset_name: "artifact simulation", asset_type: "shader", user_id: 88, upload_date: new Date("2023-07-29T17:04:56Z") },
            { id: 161, asset_name: "object", asset_type: "texture", user_id: 98, upload_date: null },
            { id: 162, asset_name: "component equipment", asset_type: "shader", user_id: 160, upload_date: new Date("2023-09-18T14:11:48Z") },
            { id: 163, asset_name: "artifact", asset_type: "mesh", user_id: 43, upload_date: new Date("2023-11-03T13:12:55Z") },
            { id: 164, asset_name: "representation object", asset_type: "animation", user_id: 90, upload_date: null },
            { id: 165, asset_name: "render", asset_type: "mesh", user_id: 150, upload_date: new Date("2023-09-22T09:32:33Z") },
            { id: 166, asset_name: "equipment item component", asset_type: "mesh", user_id: 100, upload_date: new Date("2023-12-24T10:28:18Z") },
            { id: 167, asset_name: "simulation equipment", asset_type: "animation", user_id: 51, upload_date: null },
            { id: 168, asset_name: "design representation", asset_type: "shader", user_id: 196, upload_date: new Date("2023-10-21T12:40:25Z") },
            { id: 169, asset_name: "asset render", asset_type: "shader", user_id: 75, upload_date: new Date("2023-10-08T10:37:09Z") },
            { id: 170, asset_name: "environment", asset_type: "mesh", user_id: 171, upload_date: new Date("2023-01-17T11:55:29Z") },
            { id: 171, asset_name: "geometry artifact mesh", asset_type: "shader", user_id: 16, upload_date: new Date("2023-04-07T14:32:11Z") },
            { id: 172, asset_name: "render", asset_type: "shader", user_id: 3, upload_date: new Date("2023-02-16T15:45:21Z") },
            { id: 173, asset_name: "item tool scene", asset_type: "mesh", user_id: 152, upload_date: new Date("2023-04-21T13:17:03Z") },
            { id: 174, asset_name: "design equipment", asset_type: "mesh", user_id: 34, upload_date: new Date("2023-07-28T13:29:27Z") },
            { id: 175, asset_name: "representation equipment artifact", asset_type: "mesh", user_id: 78, upload_date: new Date("2023-11-24T10:45:08Z") },
            { id: 176, asset_name: "simulation", asset_type: "texture", user_id: 197, upload_date: null },
            { id: 177, asset_name: "representation", asset_type: "mesh", user_id: 117, upload_date: new Date("2023-08-28T18:56:11Z") },
            { id: 178, asset_name: "artifact", asset_type: "shader", user_id: 112, upload_date: new Date("2023-09-01T11:36:08Z") },
            { id: 179, asset_name: "simulation equipment geometry", asset_type: "mesh", user_id: 77, upload_date: new Date("2023-06-28T13:25:00Z") },
            { id: 180, asset_name: "simulation", asset_type: "shader", user_id: 131, upload_date: new Date("2023-12-04T16:18:28Z") },
            { id: 181, asset_name: "simulation geometry equipment", asset_type: "texture", user_id: 72, upload_date: null },
            { id: 182, asset_name: "scene", asset_type: "mesh", user_id: 29, upload_date: new Date("2023-08-19T19:47:17Z") },
            { id: 183, asset_name: "tool equipment element", asset_type: "texture", user_id: 66, upload_date: null },
            { id: 184, asset_name: "mesh tool", asset_type: "mesh", user_id: 146, upload_date: new Date("2023-06-21T16:06:18Z") },
            { id: 185, asset_name: "render", asset_type: "mesh", user_id: 158, upload_date: new Date("2023-01-21T08:28:22Z") },
            { id: 186, asset_name: "mesh equipment", asset_type: "shader", user_id: 56, upload_date: new Date("2023-11-04T08:22:09Z") },
            { id: 187, asset_name: "scene item", asset_type: "texture", user_id: 13, upload_date: null },
            { id: 188, asset_name: "component", asset_type: "shader", user_id: 42, upload_date: new Date("2023-03-30T05:06:41Z") },
            { id: 189, asset_name: "building vehicle", asset_type: "mesh", user_id: 158, upload_date: new Date("2023-08-13T14:12:27Z") },
            { id: 190, asset_name: "geometry", asset_type: "shader", user_id: 94, upload_date: new Date("2023-07-11T14:12:19Z") },
            { id: 191, asset_name: "asset", asset_type: "shader", user_id: 59, upload_date: new Date("2023-06-08T09:29:40Z") },
            { id: 192, asset_name: "element mesh", asset_type: "shader", user_id: 80, upload_date: new Date("2023-05-27T16:54:13Z") },
            { id: 193, asset_name: "tool equipment", asset_type: "animation", user_id: 193, upload_date: null },
            { id: 194, asset_name: "design", asset_type: "shader", user_id: 95, upload_date: new Date("2023-09-19T13:53:49Z") },
            { id: 195, asset_name: "simulation", asset_type: "mesh", user_id: 88, upload_date: new Date("2023-05-21T11:36:29Z") },
            { id: 196, asset_name: "geometry item model", asset_type: "shader", user_id: 22, upload_date: new Date("2023-05-07T14:56:34Z") },
            { id: 197, asset_name: "asset", asset_type: "mesh", user_id: 88, upload_date: new Date("2023-12-03T08:04:23Z") },
            { id: 198, asset_name: "simulation component render", asset_type: "shader", user_id: 186, upload_date: new Date("2023-08-02T15:48:03Z") },
            { id: 199, asset_name: "component", asset_type: "mesh", user_id: 91, upload_date: new Date("2023-08-31T17:34:16Z") },
            { id: 200, asset_name: "equipment tool", asset_type: "mesh", user_id: 105, upload_date: new Date("2023-08-26T14:33:25Z") },
            { id: 201, asset_name: "component vehicle", asset_type: "animation", user_id: 153, upload_date: null },
            { id: 202, asset_name: "scene tool", asset_type: "mesh", user_id: 141, upload_date: new Date("2023-09-06T14:32:34Z") },
            { id: 203, asset_name: "model", asset_type: "mesh", user_id: 189, upload_date: new Date("2023-02-01T13:37:25Z") },
            { id: 204, asset_name: "object asset", asset_type: "mesh", user_id: 9, upload_date: new Date("2023-08-30T18:30:53Z") },
            { id: 205, asset_name: "structure", asset_type: "mesh", user_id: 44, upload_date: new Date("2023-12-18T14:14:10Z") },
            { id: 206, asset_name: "model building object", asset_type: "shader", user_id: 186, upload_date: new Date("2023-07-14T09:17:07Z") },
            { id: 207, asset_name: "element", asset_type: "mesh", user_id: 108, upload_date: new Date("2023-09-15T10:45:06Z") },
            { id: 208, asset_name: "component", asset_type: "animation", user_id: 58, upload_date: null },
            { id: 209, asset_name: "design", asset_type: "mesh", user_id: 58, upload_date: new Date("2023-08-08T11:48:45Z") },
            { id: 210, asset_name: "model", asset_type: "mesh", user_id: 106, upload_date: new Date("2023-04-04T13:24:54Z") },
            { id: 211, asset_name: "design", asset_type: "mesh", user_id: 42, upload_date: new Date("2023-10-29T09:26:04Z") },
            { id: 212, asset_name: "asset", asset_type: "texture", user_id: 25, upload_date: null },
            { id: 213, asset_name: "tool artifact", asset_type: "mesh", user_id: 103, upload_date: new Date("2023-12-05T13:15:27Z") },
            { id: 214, asset_name: "structure design", asset_type: "texture", user_id: 20, upload_date: null },
            { id: 215, asset_name: "vehicle tool", asset_type: "mesh", user_id: 195, upload_date: new Date("2023-03-02T17:11:04Z") },
            { id: 216, asset_name: "tool asset", asset_type: "shader", user_id: 40, upload_date: new Date("2023-07-25T09:00:02Z") },
            { id: 217, asset_name: "structure artifact item", asset_type: "shader", user_id: 131, upload_date: new Date("2023-01-16T10:09:27Z") },
            { id: 218, asset_name: "mesh", asset_type: "animation", user_id: 81, upload_date: null },
            { id: 219, asset_name: "tool", asset_type: "texture", user_id: 127, upload_date: null },
            { id: 220, asset_name: "vehicle prototype geometry", asset_type: "texture", user_id: 197, upload_date: null },
            { id: 221, asset_name: "element", asset_type: "shader", user_id: 88, upload_date: new Date("2023-05-11T17:47:05Z") },
            { id: 222, asset_name: "tool element", asset_type: "texture", user_id: 98, upload_date: null },
            { id: 223, asset_name: "component environment simulation", asset_type: "animation", user_id: 82, upload_date: null },
            { id: 224, asset_name: "asset", asset_type: "animation", user_id: 83, upload_date: null },
            { id: 225, asset_name: "mesh geometry item", asset_type: "mesh", user_id: 170, upload_date: new Date("2023-06-03T13:59:39Z") },
            { id: 226, asset_name: "vehicle", asset_type: "mesh", user_id: 129, upload_date: new Date("2023-07-21T06:25:47Z") },
            { id: 227, asset_name: "artifact scene element", asset_type: "mesh", user_id: 21, upload_date: new Date("2023-12-07T14:33:58Z") },
            { id: 228, asset_name: "environment model", asset_type: "shader", user_id: 98, upload_date: new Date("2023-05-16T08:12:30Z") },
            { id: 229, asset_name: "component design", asset_type: "mesh", user_id: 9, upload_date: new Date("2023-08-03T15:57:23Z") },
            { id: 230, asset_name: "geometry", asset_type: "animation", user_id: 192, upload_date: null },
            { id: 231, asset_name: "simulation", asset_type: "mesh", user_id: 134, upload_date: new Date("2023-01-21T10:22:06Z") },
            { id: 232, asset_name: "tool", asset_type: "texture", user_id: 154, upload_date: null },
            { id: 233, asset_name: "artifact", asset_type: "texture", user_id: 130, upload_date: null },
            { id: 234, asset_name: "mesh vehicle", asset_type: "mesh", user_id: 57, upload_date: new Date("2023-08-13T10:19:01Z") },
            { id: 235, asset_name: "asset structure prototype", asset_type: "mesh", user_id: 60, upload_date: new Date("2023-07-17T14:24:43Z") },
            { id: 236, asset_name: "prototype equipment", asset_type: "mesh", user_id: 60, upload_date: new Date("2023-07-21T09:30:20Z") },
            { id: 237, asset_name: "simulation", asset_type: "mesh", user_id: 101, upload_date: new Date("2023-05-28T10:47:31Z") },
            { id: 238, asset_name: "simulation asset", asset_type: "mesh", user_id: 122, upload_date: new Date("2023-05-25T10:48:18Z") },
            { id: 239, asset_name: "artifact", asset_type: "mesh", user_id: 144, upload_date: new Date("2023-09-05T14:25:47Z") },
            { id: 240, asset_name: "artifact representation", asset_type: "shader", user_id: 173, upload_date: new Date("2023-06-30T14:39:15Z") },
            { id: 241, asset_name: "model", asset_type: "mesh", user_id: 2, upload_date: new Date("2023-05-20T12:12:45Z") },
            { id: 242, asset_name: "simulation", asset_type: "shader", user_id: 1, upload_date: new Date("2023-04-16T12:46:58Z") },
            { id: 243, asset_name: "object item", asset_type: "texture", user_id: 114, upload_date: null },
            { id: 244, asset_name: "environment building render", asset_type: "shader", user_id: 4, upload_date: new Date("2023-03-23T10:39:13Z") },
            { id: 245, asset_name: "vehicle geometry", asset_type: "texture", user_id: 163, upload_date: null },
            { id: 246, asset_name: "item building", asset_type: "mesh", user_id: 49, upload_date: new Date("2023-04-10T18:10:56Z") },
            { id: 247, asset_name: "asset", asset_type: "texture", user_id: 73, upload_date: null },
            { id: 248, asset_name: "representation", asset_type: "texture", user_id: 53, upload_date: null },
            { id: 249, asset_name: "simulation object", asset_type: "shader", user_id: 92, upload_date: new Date("2023-10-19T22:47:01Z") },
            { id: 250, asset_name: "model structure component", asset_type: "texture", user_id: 192, upload_date: null },
            { id: 251, asset_name: "simulation scene", asset_type: "texture", user_id: 146, upload_date: null },
            { id: 252, asset_name: "component mesh", asset_type: "texture", user_id: 171, upload_date: null },
            { id: 253, asset_name: "vehicle scene tool", asset_type: "texture", user_id: 170, upload_date: null },
            { id: 254, asset_name: "structure prototype", asset_type: "shader", user_id: 38, upload_date: new Date("2023-11-24T10:27:45Z") },
            { id: 255, asset_name: "asset", asset_type: "mesh", user_id: 171, upload_date: new Date("2023-10-14T10:56:59Z") },
            { id: 256, asset_name: "simulation", asset_type: "texture", user_id: 172, upload_date: null },
            { id: 257, asset_name: "asset scene equipment", asset_type: "shader", user_id: 88, upload_date: new Date("2023-10-26T15:21:02Z") },
            { id: 258, asset_name: "geometry", asset_type: "mesh", user_id: 121, upload_date: new Date("2023-09-05T10:52:32Z") },
            { id: 259, asset_name: "representation prototype asset", asset_type: "animation", user_id: 54, upload_date: null },
            { id: 260, asset_name: "structure", asset_type: "mesh", user_id: 145, upload_date: new Date("2023-01-11T08:23:13Z") },
            { id: 261, asset_name: "mesh geometry element", asset_type: "texture", user_id: 189, upload_date: null },
            { id: 262, asset_name: "element", asset_type: "animation", user_id: 102, upload_date: null },
            { id: 263, asset_name: "model", asset_type: "texture", user_id: 173, upload_date: null },
            { id: 264, asset_name: "artifact", asset_type: "shader", user_id: 141, upload_date: new Date("2023-06-30T13:35:03Z") },
            { id: 265, asset_name: "design component", asset_type: "mesh", user_id: 194, upload_date: new Date("2023-02-27T11:11:02Z") },
            { id: 266, asset_name: "artifact model tool", asset_type: "mesh", user_id: 96, upload_date: new Date("2023-08-30T21:45:37Z") },
            { id: 267, asset_name: "model representation", asset_type: "shader", user_id: 200, upload_date: new Date("2023-11-24T14:32:45Z") },
            { id: 268, asset_name: "prototype representation environment", asset_type: "mesh", user_id: 115, upload_date: new Date("2023-01-25T11:35:40Z") },
            { id: 269, asset_name: "object", asset_type: "mesh", user_id: 26, upload_date: new Date("2023-09-19T16:19:09Z") },
            { id: 270, asset_name: "component item render", asset_type: "shader", user_id: 39, upload_date: new Date("2023-09-12T18:28:34Z") },
            { id: 271, asset_name: "prototype object equipment", asset_type: "texture", user_id: 10, upload_date: null },
            { id: 272, asset_name: "render representation element", asset_type: "shader", user_id: 177, upload_date: new Date("2023-01-02T13:12:45Z") },
            { id: 273, asset_name: "representation element simulation", asset_type: "mesh", user_id: 68, upload_date: new Date("2023-05-26T09:31:42Z") },
            { id: 274, asset_name: "scene", asset_type: "animation", user_id: 152, upload_date: null },
            { id: 275, asset_name: "scene element", asset_type: "mesh", user_id: 3, upload_date: new Date("2023-01-27T03:00:37Z") },
            { id: 276, asset_name: "prototype environment", asset_type: "animation", user_id: 101, upload_date: null },
            { id: 277, asset_name: "scene vehicle", asset_type: "texture", user_id: 173, upload_date: null },
            { id: 278, asset_name: "simulation", asset_type: "animation", user_id: 26, upload_date: null },
            { id: 279, asset_name: "mesh equipment structure", asset_type: "mesh", user_id: 193, upload_date: new Date("2023-09-02T12:42:24Z") },
            { id: 280, asset_name: "vehicle", asset_type: "mesh", user_id: 62, upload_date: new Date("2023-12-13T19:25:07Z") },
            { id: 281, asset_name: "vehicle representation", asset_type: "shader", user_id: 75, upload_date: new Date("2023-07-24T10:43:08Z") },
            { id: 282, asset_name: "structure", asset_type: "shader", user_id: 44, upload_date: new Date("2023-05-19T15:35:29Z") },
            { id: 283, asset_name: "item", asset_type: "mesh", user_id: 33, upload_date: new Date("2023-03-25T13:15:41Z") },
            { id: 284, asset_name: "environment prototype", asset_type: "texture", user_id: 104, upload_date: null },
            { id: 285, asset_name: "tool design", asset_type: "mesh", user_id: 12, upload_date: new Date("2023-06-05T11:20:58Z") },
            { id: 286, asset_name: "design building equipment", asset_type: "mesh", user_id: 138, upload_date: new Date("2023-05-23T15:44:59Z") },
            { id: 287, asset_name: "mesh item component", asset_type: "texture", user_id: 115, upload_date: null },
            { id: 288, asset_name: "render", asset_type: "texture", user_id: 10, upload_date: null },
            { id: 289, asset_name: "representation building model", asset_type: "animation", user_id: 99, upload_date: null },
            { id: 290, asset_name: "environment", asset_type: "texture", user_id: 49, upload_date: null },
            { id: 291, asset_name: "simulation prototype", asset_type: "mesh", user_id: 145, upload_date: new Date("2023-08-20T07:48:30Z") },
            { id: 292, asset_name: "design prototype item", asset_type: "shader", user_id: 114, upload_date: new Date("2023-12-22T17:10:37Z") },
            { id: 293, asset_name: "design artifact simulation", asset_type: "shader", user_id: 84, upload_date: new Date("2023-04-18T16:22:20Z") },
            { id: 294, asset_name: "component render object", asset_type: "shader", user_id: 182, upload_date: new Date("2023-01-07T13:57:37Z") },
            { id: 295, asset_name: "item model building", asset_type: "mesh", user_id: 70, upload_date: new Date("2023-09-10T13:34:36Z") },
            { id: 296, asset_name: "mesh prototype", asset_type: "mesh", user_id: 84, upload_date: new Date("2023-01-13T10:48:37Z") },
            { id: 297, asset_name: "asset object", asset_type: "shader", user_id: 145, upload_date: new Date("2023-08-18T13:43:08Z") },
            { id: 298, asset_name: "component element vehicle", asset_type: "texture", user_id: 177, upload_date: null },
            { id: 299, asset_name: "design environment", asset_type: "mesh", user_id: 21, upload_date: new Date("2023-03-24T01:50:36Z") },
            { id: 300, asset_name: "environment render representation", asset_type: "mesh", user_id: 121, upload_date: new Date("2023-09-02T19:41:32Z") },
            { id: 301, asset_name: "representation render", asset_type: "mesh", user_id: 194, upload_date: new Date("2023-01-04T09:35:35Z") },
            { id: 302, asset_name: "render artifact environment", asset_type: "texture", user_id: 190, upload_date: null },
            { id: 303, asset_name: "component simulation", asset_type: "shader", user_id: 197, upload_date: new Date("2023-05-30T12:41:07Z") },
            { id: 304, asset_name: "item model tool", asset_type: "shader", user_id: 100, upload_date: new Date("2023-11-30T16:58:14Z") },
            { id: 305, asset_name: "geometry", asset_type: "shader", user_id: 44, upload_date: new Date("2023-03-30T08:47:54Z") },
            { id: 306, asset_name: "structure artifact tool", asset_type: "mesh", user_id: 59, upload_date: new Date("2023-02-23T17:06:11Z") },
            { id: 307, asset_name: "mesh item", asset_type: "mesh", user_id: 5, upload_date: new Date("2023-04-27T05:06:28Z") },
            { id: 308, asset_name: "representation building", asset_type: "shader", user_id: 162, upload_date: new Date("2023-03-30T12:18:07Z") },
            { id: 309, asset_name: "artifact tool representation", asset_type: "shader", user_id: 62, upload_date: new Date("2023-12-17T12:22:50Z") },
            { id: 310, asset_name: "prototype asset", asset_type: "animation", user_id: 138, upload_date: null },
            { id: 311, asset_name: "object item", asset_type: "shader", user_id: 15, upload_date: new Date("2023-07-14T11:02:02Z") },
            { id: 312, asset_name: "equipment tool model", asset_type: "mesh", user_id: 162, upload_date: new Date("2023-03-12T09:22:50Z") },
            { id: 313, asset_name: "design mesh representation", asset_type: "mesh", user_id: 166, upload_date: new Date("2023-06-23T20:24:52Z") },
            { id: 314, asset_name: "element", asset_type: "mesh", user_id: 10, upload_date: new Date("2023-12-12T10:05:35Z") },
            { id: 315, asset_name: "item", asset_type: "mesh", user_id: 56, upload_date: new Date("2023-12-11T14:13:53Z") },
            { id: 316, asset_name: "building simulation structure", asset_type: "mesh", user_id: 44, upload_date: new Date("2023-07-21T10:27:03Z") },
            { id: 317, asset_name: "vehicle prototype", asset_type: "shader", user_id: 77, upload_date: new Date("2023-10-13T14:18:33Z") },
            { id: 318, asset_name: "item", asset_type: "animation", user_id: 49, upload_date: null },
            { id: 319, asset_name: "design structure", asset_type: "shader", user_id: 35, upload_date: new Date("2023-03-19T15:16:01Z") },
            { id: 320, asset_name: "equipment tool object", asset_type: "animation", user_id: 200, upload_date: null },
            { id: 321, asset_name: "geometry element", asset_type: "shader", user_id: 56, upload_date: new Date("2023-07-24T09:16:50Z") },
            { id: 322, asset_name: "vehicle", asset_type: "shader", user_id: 132, upload_date: new Date("2023-03-26T13:35:06Z") },
            { id: 323, asset_name: "simulation", asset_type: "mesh", user_id: 79, upload_date: new Date("2023-10-12T16:42:03Z") },
            { id: 324, asset_name: "vehicle asset object", asset_type: "texture", user_id: 49, upload_date: null },
            { id: 325, asset_name: "asset environment mesh", asset_type: "shader", user_id: 151, upload_date: new Date("2023-08-30T15:27:15Z") },
            { id: 326, asset_name: "component", asset_type: "texture", user_id: 185, upload_date: null },
            { id: 327, asset_name: "environment render geometry", asset_type: "animation", user_id: 176, upload_date: null },
            { id: 328, asset_name: "geometry", asset_type: "texture", user_id: 186, upload_date: null },
            { id: 329, asset_name: "simulation", asset_type: "mesh", user_id: 109, upload_date: new Date("2023-11-29T17:08:49Z") },
            { id: 330, asset_name: "render tool", asset_type: "texture", user_id: 154, upload_date: null },
            { id: 331, asset_name: "representation render", asset_type: "animation", user_id: 87, upload_date: null },
            { id: 332, asset_name: "prototype equipment", asset_type: "mesh", user_id: 62, upload_date: new Date("2023-05-08T10:05:52Z") },
            { id: 333, asset_name: "object", asset_type: "mesh", user_id: 55, upload_date: new Date("2023-09-13T14:15:45Z") },
            { id: 334, asset_name: "item design representation", asset_type: "mesh", user_id: 120, upload_date: new Date("2023-08-06T10:29:07Z") },
            { id: 335, asset_name: "artifact simulation scene", asset_type: "mesh", user_id: 165, upload_date: new Date("2023-12-18T15:55:35Z") },
            { id: 336, asset_name: "environment", asset_type: "shader", user_id: 197, upload_date: new Date("2023-05-28T13:03:31Z") },
            { id: 337, asset_name: "scene model", asset_type: "shader", user_id: 88, upload_date: new Date("2023-03-05T14:27:59Z") },
            { id: 338, asset_name: "vehicle representation", asset_type: "shader", user_id: 88, upload_date: new Date("2023-11-08T09:05:18Z") },
            { id: 339, asset_name: "environment prototype", asset_type: "shader", user_id: 63, upload_date: new Date("2023-08-13T16:17:26Z") },
            { id: 340, asset_name: "environment artifact", asset_type: "animation", user_id: 93, upload_date: null },
            { id: 341, asset_name: "geometry scene", asset_type: "texture", user_id: 156, upload_date: null },
            { id: 342, asset_name: "geometry mesh item", asset_type: "texture", user_id: 82, upload_date: null },
            { id: 343, asset_name: "simulation", asset_type: "shader", user_id: 67, upload_date: new Date("2023-12-21T08:39:21Z") },
            { id: 344, asset_name: "representation building", asset_type: "shader", user_id: 144, upload_date: new Date("2023-05-15T08:54:13Z") },
            { id: 345, asset_name: "simulation render", asset_type: "animation", user_id: 151, upload_date: null },
            { id: 346, asset_name: "object", asset_type: "mesh", user_id: 20, upload_date: new Date("2023-08-23T19:07:49Z") },
            { id: 347, asset_name: "geometry equipment", asset_type: "texture", user_id: 190, upload_date: null },
            { id: 348, asset_name: "simulation tool", asset_type: "mesh", user_id: 71, upload_date: new Date("2023-04-08T12:01:06Z") },
            { id: 349, asset_name: "model", asset_type: "mesh", user_id: 196, upload_date: new Date("2023-12-07T17:00:50Z") },
            { id: 350, asset_name: "asset representation", asset_type: "texture", user_id: 181, upload_date: null },
            { id: 351, asset_name: "item tool", asset_type: "mesh", user_id: 117, upload_date: new Date("2023-12-28T05:43:26Z") },
            { id: 352, asset_name: "object prototype model", asset_type: "mesh", user_id: 20, upload_date: new Date("2023-07-15T18:44:53Z") },
            { id: 353, asset_name: "vehicle", asset_type: "mesh", user_id: 4, upload_date: new Date("2023-03-20T10:33:11Z") },
            { id: 354, asset_name: "element", asset_type: "shader", user_id: 73, upload_date: new Date("2023-05-25T06:06:45Z") },
            { id: 355, asset_name: "representation model", asset_type: "texture", user_id: 99, upload_date: null },
            { id: 356, asset_name: "environment geometry object", asset_type: "mesh", user_id: 78, upload_date: new Date("2023-03-30T17:32:22Z") },
            { id: 357, asset_name: "artifact prototype render", asset_type: "shader", user_id: 143, upload_date: new Date("2023-10-10T08:43:25Z") },
            { id: 358, asset_name: "geometry design item", asset_type: "shader", user_id: 88, upload_date: new Date("2023-07-31T10:03:09Z") },
            { id: 359, asset_name: "object", asset_type: "shader", user_id: 103, upload_date: new Date("2023-09-06T08:33:03Z") },
            { id: 360, asset_name: "vehicle simulation equipment", asset_type: "mesh", user_id: 167, upload_date: new Date("2023-10-08T20:38:27Z") },
            { id: 361, asset_name: "equipment structure", asset_type: "mesh", user_id: 74, upload_date: new Date("2023-07-11T09:16:19Z") },
            { id: 362, asset_name: "object", asset_type: "animation", user_id: 7, upload_date: null },
            { id: 363, asset_name: "object", asset_type: "shader", user_id: 87, upload_date: new Date("2023-05-30T09:24:03Z") },
            { id: 364, asset_name: "item", asset_type: "animation", user_id: 49, upload_date: null },
            { id: 365, asset_name: "representation geometry", asset_type: "mesh", user_id: 124, upload_date: new Date("2023-05-23T15:09:29Z") },
            { id: 366, asset_name: "model equipment", asset_type: "animation", user_id: 116, upload_date: null },
            { id: 367, asset_name: "scene render equipment", asset_type: "shader", user_id: 23, upload_date: new Date("2023-03-19T15:43:17Z") },
            { id: 368, asset_name: "component element geometry", asset_type: "shader", user_id: 105, upload_date: new Date("2023-09-30T12:29:48Z") },
            { id: 369, asset_name: "mesh item geometry", asset_type: "mesh", user_id: 92, upload_date: new Date("2023-04-25T13:20:44Z") },
            { id: 370, asset_name: "prototype geometry", asset_type: "shader", user_id: 172, upload_date: new Date("2023-05-10T13:19:53Z") },
            { id: 371, asset_name: "asset", asset_type: "texture", user_id: 191, upload_date: null },
            { id: 372, asset_name: "building design environment", asset_type: "shader", user_id: 29, upload_date: new Date("2023-03-19T16:34:14Z") },
            { id: 373, asset_name: "object geometry", asset_type: "mesh", user_id: 126, upload_date: new Date("2023-08-15T11:00:58Z") },
            { id: 374, asset_name: "design equipment", asset_type: "mesh", user_id: 7, upload_date: new Date("2023-06-30T18:16:20Z") },
            { id: 375, asset_name: "model", asset_type: "animation", user_id: 61, upload_date: null },
            { id: 376, asset_name: "component vehicle scene", asset_type: "shader", user_id: 107, upload_date: new Date("2023-11-01T14:31:16Z") },
            { id: 377, asset_name: "element", asset_type: "mesh", user_id: 22, upload_date: new Date("2023-12-26T14:37:55Z") },
            { id: 378, asset_name: "component tool", asset_type: "texture", user_id: 116, upload_date: null },
            { id: 379, asset_name: "item structure object", asset_type: "mesh", user_id: 106, upload_date: new Date("2023-08-23T13:50:37Z") },
            { id: 380, asset_name: "representation prototype structure", asset_type: "mesh", user_id: 96, upload_date: new Date("2023-10-08T14:45:46Z") },
            { id: 381, asset_name: "prototype", asset_type: "mesh", user_id: 21, upload_date: new Date("2023-08-22T06:54:35Z") },
            { id: 382, asset_name: "asset", asset_type: "shader", user_id: 190, upload_date: new Date("2023-03-03T17:53:53Z") },
            { id: 383, asset_name: "artifact", asset_type: "mesh", user_id: 69, upload_date: new Date("2023-11-14T06:13:42Z") },
            { id: 384, asset_name: "render environment component", asset_type: "mesh", user_id: 128, upload_date: new Date("2023-04-19T14:26:48Z") },
            { id: 385, asset_name: "vehicle structure", asset_type: "texture", user_id: 130, upload_date: null },
            { id: 386, asset_name: "representation", asset_type: "mesh", user_id: 66, upload_date: new Date("2023-03-21T16:02:13Z") },
            { id: 387, asset_name: "object vehicle design", asset_type: "mesh", user_id: 118, upload_date: new Date("2023-04-26T09:34:55Z") },
            { id: 388, asset_name: "prototype", asset_type: "shader", user_id: 92, upload_date: new Date("2023-11-30T11:36:44Z") },
            { id: 389, asset_name: "render component", asset_type: "shader", user_id: 191, upload_date: new Date("2023-07-23T14:46:18Z") },
            { id: 390, asset_name: "building geometry", asset_type: "shader", user_id: 88, upload_date: new Date("2023-08-29T17:51:29Z") },
            { id: 391, asset_name: "component", asset_type: "mesh", user_id: 101, upload_date: new Date("2023-03-25T15:13:25Z") },
            { id: 392, asset_name: "object mesh asset", asset_type: "animation", user_id: 185, upload_date: null },
            { id: 393, asset_name: "representation asset", asset_type: "mesh", user_id: 48, upload_date: new Date("2023-09-26T05:43:07Z") },
            { id: 394, asset_name: "mesh", asset_type: "animation", user_id: 72, upload_date: null },
            { id: 395, asset_name: "geometry", asset_type: "mesh", user_id: 93, upload_date: new Date("2023-08-31T15:31:13Z") },
            { id: 396, asset_name: "component render element", asset_type: "mesh", user_id: 41, upload_date: new Date("2023-11-14T16:03:00Z") },
            { id: 397, asset_name: "structure", asset_type: "mesh", user_id: 44, upload_date: new Date("2023-02-12T14:33:20Z") },
            { id: 398, asset_name: "representation geometry component", asset_type: "mesh", user_id: 145, upload_date: new Date("2023-09-12T05:03:52Z") },
            { id: 399, asset_name: "asset equipment", asset_type: "mesh", user_id: 49, upload_date: new Date("2023-10-26T14:30:43Z") },
            { id: 400, asset_name: "render structure geometry", asset_type: "mesh", user_id: 130, upload_date: new Date("2023-06-25T09:33:20Z") },
            { id: 401, asset_name: "representation environment", asset_type: "mesh", user_id: 112, upload_date: new Date("2023-02-20T14:05:24Z") },
            { id: 402, asset_name: "object component", asset_type: "texture", user_id: 66, upload_date: null },
            { id: 403, asset_name: "scene environment element", asset_type: "texture", user_id: 158, upload_date: null },
            { id: 404, asset_name: "design object geometry", asset_type: "shader", user_id: 107, upload_date: new Date("2023-04-22T14:51:48Z") },
            { id: 405, asset_name: "prototype element asset", asset_type: "animation", user_id: 102, upload_date: null },
            { id: 406, asset_name: "scene", asset_type: "mesh", user_id: 25, upload_date: new Date("2023-02-08T15:58:36Z") },
            { id: 407, asset_name: "artifact object", asset_type: "mesh", user_id: 2, upload_date: new Date("2023-12-17T09:15:21Z") },
            { id: 408, asset_name: "mesh", asset_type: "shader", user_id: 111, upload_date: new Date("2023-05-03T09:28:00Z") },
            { id: 409, asset_name: "scene", asset_type: "shader", user_id: 13, upload_date: new Date("2023-06-01T17:18:40Z") },
            { id: 410, asset_name: "scene object", asset_type: "mesh", user_id: 59, upload_date: new Date("2023-02-03T14:21:33Z") },
            { id: 411, asset_name: "object", asset_type: "animation", user_id: 100, upload_date: null },
            { id: 412, asset_name: "mesh prototype", asset_type: "shader", user_id: 142, upload_date: new Date("2023-01-03T13:28:18Z") },
            { id: 413, asset_name: "representation vehicle tool", asset_type: "animation", user_id: 128, upload_date: null },
            { id: 414, asset_name: "asset element", asset_type: "animation", user_id: 127, upload_date: null },
            { id: 415, asset_name: "geometry", asset_type: "shader", user_id: 4, upload_date: new Date("2023-08-03T08:14:14Z") },
            { id: 416, asset_name: "simulation item representation", asset_type: "mesh", user_id: 163, upload_date: new Date("2023-11-27T15:20:53Z") },
            { id: 417, asset_name: "vehicle representation", asset_type: "texture", user_id: 109, upload_date: null },
            { id: 418, asset_name: "building equipment component", asset_type: "texture", user_id: 165, upload_date: null },
            { id: 419, asset_name: "model", asset_type: "shader", user_id: 52, upload_date: new Date("2023-11-13T09:32:41Z") },
            { id: 420, asset_name: "tool structure representation", asset_type: "mesh", user_id: 200, upload_date: new Date("2023-05-18T17:12:31Z") },
            { id: 421, asset_name: "item structure", asset_type: "mesh", user_id: 187, upload_date: new Date("2023-06-23T14:06:14Z") },
            { id: 422, asset_name: "tool artifact item", asset_type: "mesh", user_id: 173, upload_date: new Date("2023-12-07T11:28:30Z") },
            { id: 423, asset_name: "prototype", asset_type: "shader", user_id: 28, upload_date: new Date("2023-06-28T11:07:42Z") },
            { id: 424, asset_name: "tool vehicle", asset_type: "texture", user_id: 171, upload_date: null },
            { id: 425, asset_name: "render asset building", asset_type: "mesh", user_id: 180, upload_date: new Date("2023-02-25T18:04:11Z") },
            { id: 426, asset_name: "equipment", asset_type: "mesh", user_id: 56, upload_date: new Date("2023-09-08T17:29:50Z") },
            { id: 427, asset_name: "model asset geometry", asset_type: "shader", user_id: 145, upload_date: new Date("2023-07-31T16:28:24Z") },
            { id: 428, asset_name: "vehicle asset geometry", asset_type: "mesh", user_id: 198, upload_date: new Date("2023-04-04T21:30:16Z") },
            { id: 429, asset_name: "model asset geometry", asset_type: "mesh", user_id: 22, upload_date: new Date("2023-12-03T14:56:54Z") },
            { id: 430, asset_name: "structure building vehicle", asset_type: "mesh", user_id: 23, upload_date: new Date("2023-08-14T13:02:45Z") },
            { id: 431, asset_name: "representation render asset", asset_type: "texture", user_id: 72, upload_date: null },
            { id: 432, asset_name: "scene model", asset_type: "mesh", user_id: 56, upload_date: new Date("2023-11-24T16:46:42Z") },
            { id: 433, asset_name: "design scene asset", asset_type: "mesh", user_id: 139, upload_date: new Date("2023-05-04T10:50:56Z") },
            { id: 434, asset_name: "representation", asset_type: "shader", user_id: 102, upload_date: new Date("2023-05-12T07:42:59Z") },
            { id: 435, asset_name: "item prototype", asset_type: "mesh", user_id: 143, upload_date: new Date("2023-05-15T17:27:17Z") },
            { id: 436, asset_name: "scene", asset_type: "mesh", user_id: 126, upload_date: new Date("2023-01-25T13:31:46Z") },
            { id: 437, asset_name: "vehicle building", asset_type: "shader", user_id: 22, upload_date: new Date("2023-02-05T15:40:00Z") },
            { id: 438, asset_name: "asset component", asset_type: "mesh", user_id: 181, upload_date: new Date("2023-03-17T14:41:12Z") },
            { id: 439, asset_name: "asset", asset_type: "mesh", user_id: 156, upload_date: new Date("2023-02-12T11:52:43Z") },
            { id: 440, asset_name: "geometry design vehicle", asset_type: "shader", user_id: 26, upload_date: new Date("2023-09-09T16:48:47Z") },
            { id: 441, asset_name: "element asset", asset_type: "mesh", user_id: 87, upload_date: new Date("2023-10-15T10:46:37Z") },
            { id: 442, asset_name: "scene equipment", asset_type: "mesh", user_id: 109, upload_date: new Date("2023-10-20T14:39:55Z") },
            { id: 443, asset_name: "component asset design", asset_type: "shader", user_id: 150, upload_date: new Date("2023-05-31T11:47:50Z") },
            { id: 444, asset_name: "design component simulation", asset_type: "shader", user_id: 85, upload_date: new Date("2023-04-14T15:09:05Z") },
            { id: 445, asset_name: "prototype component scene", asset_type: "animation", user_id: 14, upload_date: null },
            { id: 446, asset_name: "item", asset_type: "animation", user_id: 184, upload_date: null },
            { id: 447, asset_name: "model", asset_type: "mesh", user_id: 111, upload_date: new Date("2023-10-18T13:26:59Z") },
            { id: 448, asset_name: "simulation render", asset_type: "shader", user_id: 163, upload_date: new Date("2023-10-20T15:25:51Z") },
            { id: 449, asset_name: "asset", asset_type: "texture", user_id: 12, upload_date: null },
            { id: 450, asset_name: "vehicle", asset_type: "mesh", user_id: 199, upload_date: new Date("2023-09-21T19:34:29Z") },
            { id: 451, asset_name: "simulation", asset_type: "animation", user_id: 9, upload_date: null },
            { id: 452, asset_name: "render artifact", asset_type: "mesh", user_id: 115, upload_date: new Date("2023-05-27T16:37:05Z") },
            { id: 453, asset_name: "tool element environment", asset_type: "mesh", user_id: 142, upload_date: new Date("2023-08-07T01:22:40Z") },
            { id: 454, asset_name: "element", asset_type: "shader", user_id: 94, upload_date: new Date("2023-03-26T09:35:35Z") },
            { id: 455, asset_name: "representation geometry", asset_type: "mesh", user_id: 109, upload_date: new Date("2023-10-12T15:05:29Z") },
            { id: 456, asset_name: "geometry model", asset_type: "mesh", user_id: 200, upload_date: new Date("2023-09-13T18:18:38Z") },
            { id: 457, asset_name: "geometry", asset_type: "texture", user_id: 124, upload_date: null },
            { id: 458, asset_name: "mesh environment design", asset_type: "mesh", user_id: 72, upload_date: new Date("2023-08-29T13:58:26Z") },
            { id: 459, asset_name: "model environment design", asset_type: "shader", user_id: 142, upload_date: new Date("2023-09-03T15:30:19Z") },
            { id: 460, asset_name: "prototype", asset_type: "shader", user_id: 45, upload_date: new Date("2023-04-02T08:10:15Z") },
            { id: 461, asset_name: "element artifact simulation", asset_type: "mesh", user_id: 191, upload_date: new Date("2023-06-01T12:27:15Z") },
            { id: 462, asset_name: "item representation", asset_type: "shader", user_id: 63, upload_date: new Date("2023-07-15T17:13:38Z") },
            { id: 463, asset_name: "mesh representation", asset_type: "mesh", user_id: 158, upload_date: new Date("2023-02-16T11:18:29Z") },
            { id: 464, asset_name: "structure", asset_type: "mesh", user_id: 179, upload_date: new Date("2023-07-20T13:35:58Z") },
            { id: 465, asset_name: "simulation", asset_type: "shader", user_id: 135, upload_date: new Date("2023-12-03T14:42:38Z") },
            { id: 466, asset_name: "prototype", asset_type: "texture", user_id: 183, upload_date: null },
            { id: 467, asset_name: "artifact item", asset_type: "mesh", user_id: 150, upload_date: new Date("2023-01-19T12:04:12Z") },
            { id: 468, asset_name: "asset geometry", asset_type: "mesh", user_id: 89, upload_date: new Date("2023-11-09T16:29:47Z") },
            { id: 469, asset_name: "artifact component building", asset_type: "texture", user_id: 78, upload_date: null },
            { id: 470, asset_name: "tool", asset_type: "texture", user_id: 89, upload_date: null },
            { id: 471, asset_name: "component", asset_type: "texture", user_id: 4, upload_date: null },
            { id: 472, asset_name: "geometry object vehicle", asset_type: "mesh", user_id: 118, upload_date: new Date("2023-09-28T12:02:26Z") },
            { id: 473, asset_name: "model scene geometry", asset_type: "shader", user_id: 165, upload_date: new Date("2023-03-15T08:55:30Z") },
            { id: 474, asset_name: "structure component", asset_type: "mesh", user_id: 139, upload_date: new Date("2023-12-20T11:22:51Z") },
            { id: 475, asset_name: "building", asset_type: "texture", user_id: 36, upload_date: null },
            { id: 476, asset_name: "building object environment", asset_type: "mesh", user_id: 61, upload_date: new Date("2023-07-03T15:03:23Z") },
            { id: 477, asset_name: "object structure environment", asset_type: "mesh", user_id: 3, upload_date: new Date("2023-05-10T14:26:18Z") },
            { id: 478, asset_name: "design mesh", asset_type: "mesh", user_id: 54, upload_date: new Date("2023-04-04T12:07:10Z") },
            { id: 479, asset_name: "prototype asset building", asset_type: "shader", user_id: 53, upload_date: new Date("2023-08-15T08:35:19Z") },
            { id: 480, asset_name: "component prototype", asset_type: "mesh", user_id: 61, upload_date: new Date("2023-10-19T10:45:52Z") },
            { id: 481, asset_name: "building structure geometry", asset_type: "shader", user_id: 196, upload_date: new Date("2023-09-09T14:28:22Z") },
            { id: 482, asset_name: "render scene", asset_type: "mesh", user_id: 26, upload_date: new Date("2023-05-03T15:21:55Z") },
            { id: 483, asset_name: "artifact", asset_type: "shader", user_id: 118, upload_date: new Date("2023-09-19T14:45:30Z") },
            { id: 484, asset_name: "scene artifact", asset_type: "texture", user_id: 37, upload_date: null },
            { id: 485, asset_name: "representation scene", asset_type: "texture", user_id: 6, upload_date: null },
            { id: 486, asset_name: "tool item asset", asset_type: "mesh", user_id: 180, upload_date: new Date("2023-06-04T10:15:42Z") },
            { id: 487, asset_name: "mesh", asset_type: "shader", user_id: 90, upload_date: new Date("2023-08-29T15:33:50Z") },
            { id: 488, asset_name: "vehicle scene", asset_type: "mesh", user_id: 24, upload_date: new Date("2023-06-28T10:34:37Z") },
            { id: 489, asset_name: "tool", asset_type: "texture", user_id: 14, upload_date: null },
            { id: 490, asset_name: "render", asset_type: "texture", user_id: 27, upload_date: null },
            { id: 491, asset_name: "vehicle asset component", asset_type: "shader", user_id: 188, upload_date: new Date("2023-02-23T14:26:10Z") },
            { id: 492, asset_name: "render geometry model", asset_type: "mesh", user_id: 30, upload_date: new Date("2023-08-08T11:33:13Z") },
            { id: 493, asset_name: "artifact", asset_type: "mesh", user_id: 140, upload_date: new Date("2023-09-27T14:54:50Z") },
            { id: 494, asset_name: "representation mesh design", asset_type: "animation", user_id: 35, upload_date: null },
            { id: 495, asset_name: "scene item artifact", asset_type: "shader", user_id: 148, upload_date: new Date("2023-09-22T16:48:15Z") },
            { id: 496, asset_name: "equipment structure", asset_type: "mesh", user_id: 97, upload_date: new Date("2023-10-25T14:56:34Z") },
            { id: 497, asset_name: "building", asset_type: "mesh", user_id: 110, upload_date: new Date("2023-02-24T14:01:37Z") },
            { id: 498, asset_name: "render simulation", asset_type: "shader", user_id: 138, upload_date: new Date("2023-08-04T07:45:40Z") },
            { id: 499, asset_name: "representation", asset_type: "shader", user_id: 152, upload_date: new Date("2023-12-25T09:32:04Z") },
            { id: 500, asset_name: "simulation asset", asset_type: "texture", user_id: 92, upload_date: null },
        ],
    });
    await prisma.lighting.createMany({
        data: [
            { id: 1, light_type: "directional", intensity: "6.89", asset_id: 139, shadow_enabled: false },
            { id: 2, light_type: "directional", intensity: "9.75", asset_id: 270, shadow_enabled: true },
            { id: 3, light_type: "directional", intensity: "9.95", asset_id: 439, shadow_enabled: false },
            { id: 4, light_type: "spot", intensity: null, asset_id: 241, shadow_enabled: false },
            { id: 5, light_type: "point", intensity: "2.18", asset_id: 476, shadow_enabled: false },
            { id: 6, light_type: "point", intensity: "10.00", asset_id: 464, shadow_enabled: false },
            { id: 7, light_type: "directional", intensity: "2.84", asset_id: 281, shadow_enabled: false },
            { id: 8, light_type: "spot", intensity: null, asset_id: 229, shadow_enabled: false },
            { id: 9, light_type: "spot", intensity: null, asset_id: 375, shadow_enabled: true },
            { id: 10, light_type: "spot", intensity: null, asset_id: 263, shadow_enabled: false },
            { id: 11, light_type: "directional", intensity: "1.31", asset_id: 305, shadow_enabled: true },
            { id: 12, light_type: "point", intensity: "9.70", asset_id: 339, shadow_enabled: true },
            { id: 13, light_type: "directional", intensity: "9.81", asset_id: 268, shadow_enabled: false },
            { id: 14, light_type: "point", intensity: "7.08", asset_id: 268, shadow_enabled: false },
            { id: 15, light_type: "point", intensity: "7.64", asset_id: 128, shadow_enabled: true },
            { id: 16, light_type: "spot", intensity: null, asset_id: 209, shadow_enabled: true },
            { id: 17, light_type: "spot", intensity: null, asset_id: 159, shadow_enabled: true },
            { id: 18, light_type: "directional", intensity: "5.01", asset_id: 228, shadow_enabled: true },
            { id: 19, light_type: "point", intensity: "0.60", asset_id: 309, shadow_enabled: true },
            { id: 20, light_type: "point", intensity: "9.08", asset_id: 350, shadow_enabled: true },
            { id: 21, light_type: "directional", intensity: "8.90", asset_id: 16, shadow_enabled: false },
            { id: 22, light_type: "directional", intensity: "7.47", asset_id: 7, shadow_enabled: false },
            { id: 23, light_type: "directional", intensity: "4.11", asset_id: 475, shadow_enabled: false },
            { id: 24, light_type: "directional", intensity: "7.55", asset_id: 274, shadow_enabled: true },
            { id: 25, light_type: "point", intensity: "4.59", asset_id: 86, shadow_enabled: true },
            { id: 26, light_type: "point", intensity: "5.72", asset_id: 138, shadow_enabled: false },
            { id: 27, light_type: "point", intensity: "3.57", asset_id: 371, shadow_enabled: false },
            { id: 28, light_type: "point", intensity: "7.56", asset_id: 85, shadow_enabled: false },
            { id: 29, light_type: "point", intensity: "5.04", asset_id: 356, shadow_enabled: true },
            { id: 30, light_type: "point", intensity: "6.71", asset_id: 12, shadow_enabled: false },
            { id: 31, light_type: "spot", intensity: null, asset_id: 103, shadow_enabled: false },
            { id: 32, light_type: "point", intensity: "3.49", asset_id: 369, shadow_enabled: false },
            { id: 33, light_type: "directional", intensity: "6.71", asset_id: 486, shadow_enabled: false },
            { id: 34, light_type: "point", intensity: "1.00", asset_id: 106, shadow_enabled: true },
            { id: 35, light_type: "spot", intensity: null, asset_id: 78, shadow_enabled: true },
            { id: 36, light_type: "point", intensity: "10.00", asset_id: 416, shadow_enabled: false },
            { id: 37, light_type: "point", intensity: "9.91", asset_id: 55, shadow_enabled: true },
            { id: 38, light_type: "point", intensity: "1.26", asset_id: 127, shadow_enabled: false },
            { id: 39, light_type: "point", intensity: "7.31", asset_id: 474, shadow_enabled: false },
            { id: 40, light_type: "directional", intensity: "8.63", asset_id: 247, shadow_enabled: false },
            { id: 41, light_type: "point", intensity: "5.96", asset_id: 101, shadow_enabled: false },
            { id: 42, light_type: "directional", intensity: "9.74", asset_id: 42, shadow_enabled: true },
            { id: 43, light_type: "directional", intensity: "6.61", asset_id: 322, shadow_enabled: true },
            { id: 44, light_type: "point", intensity: "9.44", asset_id: 101, shadow_enabled: true },
            { id: 45, light_type: "point", intensity: "0.12", asset_id: 413, shadow_enabled: false },
            { id: 46, light_type: "directional", intensity: "4.61", asset_id: 439, shadow_enabled: true },
            { id: 47, light_type: "spot", intensity: null, asset_id: 31, shadow_enabled: true },
            { id: 48, light_type: "directional", intensity: "7.80", asset_id: 1, shadow_enabled: true },
            { id: 49, light_type: "point", intensity: "3.37", asset_id: 490, shadow_enabled: true },
            { id: 50, light_type: "point", intensity: "9.98", asset_id: 100, shadow_enabled: false },
            { id: 51, light_type: "point", intensity: "3.58", asset_id: 270, shadow_enabled: true },
            { id: 52, light_type: "point", intensity: "9.73", asset_id: 366, shadow_enabled: true },
            { id: 53, light_type: "directional", intensity: "2.57", asset_id: 352, shadow_enabled: false },
            { id: 54, light_type: "spot", intensity: null, asset_id: 112, shadow_enabled: false },
            { id: 55, light_type: "point", intensity: "9.94", asset_id: 254, shadow_enabled: false },
            { id: 56, light_type: "point", intensity: "5.50", asset_id: 224, shadow_enabled: false },
            { id: 57, light_type: "point", intensity: "2.45", asset_id: 480, shadow_enabled: false },
            { id: 58, light_type: "directional", intensity: "9.81", asset_id: 241, shadow_enabled: true },
            { id: 59, light_type: "spot", intensity: null, asset_id: 184, shadow_enabled: false },
            { id: 60, light_type: "spot", intensity: null, asset_id: 70, shadow_enabled: false },
            { id: 61, light_type: "point", intensity: "3.73", asset_id: 271, shadow_enabled: true },
            { id: 62, light_type: "directional", intensity: "5.75", asset_id: 16, shadow_enabled: false },
            { id: 63, light_type: "directional", intensity: "2.05", asset_id: 265, shadow_enabled: false },
            { id: 64, light_type: "directional", intensity: "6.63", asset_id: 237, shadow_enabled: false },
            { id: 65, light_type: "directional", intensity: "9.89", asset_id: 429, shadow_enabled: true },
            { id: 66, light_type: "point", intensity: "9.85", asset_id: 380, shadow_enabled: true },
            { id: 67, light_type: "point", intensity: "0.40", asset_id: 165, shadow_enabled: false },
            { id: 68, light_type: "point", intensity: "3.57", asset_id: 209, shadow_enabled: false },
            { id: 69, light_type: "spot", intensity: null, asset_id: 151, shadow_enabled: false },
            { id: 70, light_type: "point", intensity: "0.03", asset_id: 57, shadow_enabled: true },
            { id: 71, light_type: "directional", intensity: "8.39", asset_id: 12, shadow_enabled: false },
            { id: 72, light_type: "spot", intensity: null, asset_id: 438, shadow_enabled: false },
            { id: 73, light_type: "point", intensity: "8.05", asset_id: 45, shadow_enabled: false },
            { id: 74, light_type: "point", intensity: "9.82", asset_id: 277, shadow_enabled: true },
            { id: 75, light_type: "spot", intensity: null, asset_id: 486, shadow_enabled: true },
            { id: 76, light_type: "point", intensity: "8.65", asset_id: 163, shadow_enabled: true },
            { id: 77, light_type: "point", intensity: "5.08", asset_id: 266, shadow_enabled: true },
            { id: 78, light_type: "directional", intensity: "9.89", asset_id: 338, shadow_enabled: true },
            { id: 79, light_type: "spot", intensity: null, asset_id: 255, shadow_enabled: false },
            { id: 80, light_type: "directional", intensity: "9.17", asset_id: 107, shadow_enabled: true },
            { id: 81, light_type: "spot", intensity: null, asset_id: 454, shadow_enabled: false },
            { id: 82, light_type: "spot", intensity: null, asset_id: 22, shadow_enabled: true },
            { id: 83, light_type: "point", intensity: "5.00", asset_id: 454, shadow_enabled: true },
            { id: 84, light_type: "point", intensity: "2.85", asset_id: 210, shadow_enabled: true },
            { id: 85, light_type: "point", intensity: "0.81", asset_id: 77, shadow_enabled: true },
            { id: 86, light_type: "directional", intensity: "0.27", asset_id: 459, shadow_enabled: false },
            { id: 87, light_type: "spot", intensity: null, asset_id: 59, shadow_enabled: false },
            { id: 88, light_type: "directional", intensity: "4.66", asset_id: 494, shadow_enabled: false },
            { id: 89, light_type: "point", intensity: "8.72", asset_id: 474, shadow_enabled: true },
            { id: 90, light_type: "directional", intensity: "6.80", asset_id: 257, shadow_enabled: false },
            { id: 91, light_type: "spot", intensity: null, asset_id: 61, shadow_enabled: false },
            { id: 92, light_type: "directional", intensity: "0.92", asset_id: 349, shadow_enabled: true },
            { id: 93, light_type: "point", intensity: "9.64", asset_id: 60, shadow_enabled: true },
            { id: 94, light_type: "spot", intensity: null, asset_id: 84, shadow_enabled: false },
            { id: 95, light_type: "directional", intensity: "7.18", asset_id: 407, shadow_enabled: true },
            { id: 96, light_type: "directional", intensity: "7.15", asset_id: 41, shadow_enabled: false },
            { id: 97, light_type: "point", intensity: "8.73", asset_id: 345, shadow_enabled: false },
            { id: 98, light_type: "directional", intensity: "5.46", asset_id: 71, shadow_enabled: true },
            { id: 99, light_type: "point", intensity: "2.44", asset_id: 37, shadow_enabled: false },
            { id: 100, light_type: "spot", intensity: null, asset_id: 328, shadow_enabled: false },
            { id: 101, light_type: "spot", intensity: null, asset_id: 100, shadow_enabled: true },
            { id: 102, light_type: "spot", intensity: null, asset_id: 81, shadow_enabled: true },
            { id: 103, light_type: "directional", intensity: "6.26", asset_id: 151, shadow_enabled: false },
            { id: 104, light_type: "point", intensity: "9.86", asset_id: 315, shadow_enabled: true },
            { id: 105, light_type: "point", intensity: "5.67", asset_id: 303, shadow_enabled: true },
            { id: 106, light_type: "point", intensity: "8.71", asset_id: 343, shadow_enabled: true },
            { id: 107, light_type: "point", intensity: "5.54", asset_id: 219, shadow_enabled: false },
            { id: 108, light_type: "directional", intensity: "9.66", asset_id: 244, shadow_enabled: false },
            { id: 109, light_type: "point", intensity: "8.39", asset_id: 174, shadow_enabled: true },
            { id: 110, light_type: "directional", intensity: "0.52", asset_id: 454, shadow_enabled: true },
            { id: 111, light_type: "point", intensity: "5.55", asset_id: 481, shadow_enabled: false },
            { id: 112, light_type: "point", intensity: "9.06", asset_id: 103, shadow_enabled: false },
            { id: 113, light_type: "point", intensity: "9.99", asset_id: 439, shadow_enabled: false },
            { id: 114, light_type: "spot", intensity: null, asset_id: 269, shadow_enabled: true },
            { id: 115, light_type: "spot", intensity: null, asset_id: 73, shadow_enabled: true },
            { id: 116, light_type: "point", intensity: "6.07", asset_id: 277, shadow_enabled: false },
            { id: 117, light_type: "spot", intensity: null, asset_id: 288, shadow_enabled: false },
            { id: 118, light_type: "directional", intensity: "2.56", asset_id: 216, shadow_enabled: true },
            { id: 119, light_type: "spot", intensity: null, asset_id: 414, shadow_enabled: false },
            { id: 120, light_type: "spot", intensity: null, asset_id: 164, shadow_enabled: false },
            { id: 121, light_type: "directional", intensity: "9.63", asset_id: 334, shadow_enabled: true },
            { id: 122, light_type: "point", intensity: "6.31", asset_id: 393, shadow_enabled: false },
            { id: 123, light_type: "point", intensity: "8.69", asset_id: 318, shadow_enabled: true },
            { id: 124, light_type: "point", intensity: "6.48", asset_id: 19, shadow_enabled: false },
            { id: 125, light_type: "spot", intensity: null, asset_id: 212, shadow_enabled: false },
            { id: 126, light_type: "directional", intensity: "3.70", asset_id: 223, shadow_enabled: true },
            { id: 127, light_type: "spot", intensity: null, asset_id: 280, shadow_enabled: true },
            { id: 128, light_type: "point", intensity: "9.64", asset_id: 167, shadow_enabled: true },
            { id: 129, light_type: "directional", intensity: "8.06", asset_id: 321, shadow_enabled: false },
            { id: 130, light_type: "point", intensity: "7.70", asset_id: 105, shadow_enabled: false },
            { id: 131, light_type: "point", intensity: "9.71", asset_id: 351, shadow_enabled: true },
            { id: 132, light_type: "spot", intensity: null, asset_id: 124, shadow_enabled: false },
            { id: 133, light_type: "directional", intensity: "4.43", asset_id: 349, shadow_enabled: false },
            { id: 134, light_type: "directional", intensity: "0.27", asset_id: 378, shadow_enabled: true },
            { id: 135, light_type: "directional", intensity: "9.91", asset_id: 364, shadow_enabled: true },
            { id: 136, light_type: "point", intensity: "9.91", asset_id: 310, shadow_enabled: false },
            { id: 137, light_type: "point", intensity: "6.28", asset_id: 424, shadow_enabled: true },
            { id: 138, light_type: "directional", intensity: "7.89", asset_id: 289, shadow_enabled: false },
            { id: 139, light_type: "spot", intensity: null, asset_id: 365, shadow_enabled: true },
            { id: 140, light_type: "point", intensity: "4.55", asset_id: 26, shadow_enabled: true },
            { id: 141, light_type: "point", intensity: "7.25", asset_id: 270, shadow_enabled: true },
            { id: 142, light_type: "spot", intensity: null, asset_id: 152, shadow_enabled: false },
            { id: 143, light_type: "point", intensity: "6.31", asset_id: 6, shadow_enabled: true },
            { id: 144, light_type: "spot", intensity: null, asset_id: 247, shadow_enabled: false },
            { id: 145, light_type: "directional", intensity: "2.03", asset_id: 290, shadow_enabled: false },
            { id: 146, light_type: "directional", intensity: "9.86", asset_id: 160, shadow_enabled: true },
            { id: 147, light_type: "directional", intensity: "2.28", asset_id: 89, shadow_enabled: false },
            { id: 148, light_type: "point", intensity: "5.36", asset_id: 489, shadow_enabled: true },
            { id: 149, light_type: "point", intensity: "5.49", asset_id: 380, shadow_enabled: false },
            { id: 150, light_type: "point", intensity: "8.38", asset_id: 155, shadow_enabled: true },
        ],
    });
    await prisma.textures.createMany({
        data: [
            { id: 1, texture_name: "gradient texture", resolution: 2372, asset_id: 183, file_size_mb: "29.92" },
            { id: 2, texture_name: "emissive texture", resolution: null, asset_id: 352, file_size_mb: "75.37" },
            { id: 3, texture_name: "layer normal", resolution: 1875, asset_id: 255, file_size_mb: "66.06" },
            { id: 4, texture_name: "ambient", resolution: 1880, asset_id: 131, file_size_mb: "45.51" },
            { id: 5, texture_name: "gradient", resolution: 2336, asset_id: 31, file_size_mb: "45.28" },
            { id: 6, texture_name: "pattern specular finish", resolution: 1345, asset_id: 1, file_size_mb: "46.20" },
            { id: 7, texture_name: "finish", resolution: null, asset_id: 339, file_size_mb: "15.08" },
            { id: 8, texture_name: "layer", resolution: 1275, asset_id: 237, file_size_mb: "57.66" },
            { id: 9, texture_name: "metallic opacity", resolution: null, asset_id: 161, file_size_mb: "31.57" },
            { id: 10, texture_name: "surface", resolution: 2043, asset_id: 97, file_size_mb: "54.40" },
            { id: 11, texture_name: "normal bump ambient", resolution: 2215, asset_id: 183, file_size_mb: "81.23" },
            { id: 12, texture_name: "roughness surface metallic", resolution: 1961, asset_id: 458, file_size_mb: "55.84" },
            { id: 13, texture_name: "texture", resolution: null, asset_id: 160, file_size_mb: "66.90" },
            { id: 14, texture_name: "pattern", resolution: 1858, asset_id: 304, file_size_mb: "42.92" },
            { id: 15, texture_name: "color emissive gradient", resolution: 1817, asset_id: 191, file_size_mb: "65.21" },
            { id: 16, texture_name: "pattern", resolution: 2881, asset_id: 347, file_size_mb: "68.86" },
            { id: 17, texture_name: "design metallic color", resolution: 1692, asset_id: 33, file_size_mb: "54.14" },
            { id: 18, texture_name: "surface roughness design", resolution: 2599, asset_id: 385, file_size_mb: "56.20" },
            { id: 19, texture_name: "overlay gradient emissive", resolution: 2477, asset_id: 8, file_size_mb: "47.98" },
            { id: 20, texture_name: "ambient overlay style", resolution: 2229, asset_id: 29, file_size_mb: "82.21" },
            { id: 21, texture_name: "texture roughness", resolution: 1372, asset_id: 435, file_size_mb: "57.77" },
            { id: 22, texture_name: "style diffuse emissive", resolution: 3106, asset_id: 435, file_size_mb: "53.90" },
            { id: 23, texture_name: "emissive color specular", resolution: 1888, asset_id: 200, file_size_mb: "40.63" },
            { id: 24, texture_name: "layer opacity", resolution: 2879, asset_id: 314, file_size_mb: "43.84" },
            { id: 25, texture_name: "detail layer", resolution: 1945, asset_id: 172, file_size_mb: "29.22" },
            { id: 26, texture_name: "material emissive detail", resolution: 2006, asset_id: 274, file_size_mb: "35.90" },
            { id: 27, texture_name: "gradient roughness", resolution: 1448, asset_id: 311, file_size_mb: "60.28" },
            { id: 28, texture_name: "specular design", resolution: 1905, asset_id: 113, file_size_mb: "46.73" },
            { id: 29, texture_name: "color", resolution: 1606, asset_id: 153, file_size_mb: "24.17" },
            { id: 30, texture_name: "normal", resolution: 1842, asset_id: 165, file_size_mb: "45.07" },
            { id: 31, texture_name: "bump pattern normal", resolution: 2585, asset_id: 297, file_size_mb: "27.84" },
            { id: 32, texture_name: "layer texture gradient", resolution: 3260, asset_id: 460, file_size_mb: "47.39" },
            { id: 33, texture_name: "gradient", resolution: 1790, asset_id: 150, file_size_mb: "47.78" },
            { id: 34, texture_name: "color detail finish", resolution: 2100, asset_id: 175, file_size_mb: "60.76" },
            { id: 35, texture_name: "pattern color", resolution: 1341, asset_id: 58, file_size_mb: "52.74" },
            { id: 36, texture_name: "material", resolution: 2470, asset_id: 280, file_size_mb: "30.51" },
            { id: 37, texture_name: "gradient opacity design", resolution: 2773, asset_id: 128, file_size_mb: "65.20" },
            { id: 38, texture_name: "design layer", resolution: 1669, asset_id: 342, file_size_mb: "59.86" },
            { id: 39, texture_name: "normal", resolution: 2140, asset_id: 484, file_size_mb: "34.38" },
            { id: 40, texture_name: "specular color", resolution: null, asset_id: 228, file_size_mb: "69.19" },
            { id: 41, texture_name: "roughness layer", resolution: 1578, asset_id: 45, file_size_mb: "48.47" },
            { id: 42, texture_name: "pattern", resolution: 1401, asset_id: 113, file_size_mb: "33.93" },
            { id: 43, texture_name: "surface normal", resolution: null, asset_id: 88, file_size_mb: "28.77" },
            { id: 44, texture_name: "ambient", resolution: 1946, asset_id: 178, file_size_mb: "49.22" },
            { id: 45, texture_name: "emissive opacity finish", resolution: 1552, asset_id: 101, file_size_mb: "38.14" },
            { id: 46, texture_name: "overlay", resolution: 2503, asset_id: 222, file_size_mb: "55.69" },
            { id: 47, texture_name: "overlay", resolution: null, asset_id: 189, file_size_mb: "68.43" },
            { id: 48, texture_name: "emissive", resolution: 2014, asset_id: 490, file_size_mb: "32.28" },
            { id: 49, texture_name: "bump", resolution: 2157, asset_id: 108, file_size_mb: "27.58" },
            { id: 50, texture_name: "bump", resolution: 1608, asset_id: 32, file_size_mb: "49.85" },
            { id: 51, texture_name: "pattern diffuse specular", resolution: 1923, asset_id: 413, file_size_mb: "53.54" },
            { id: 52, texture_name: "bump style emissive", resolution: 3058, asset_id: 438, file_size_mb: "42.92" },
            { id: 53, texture_name: "roughness layer ambient", resolution: 2646, asset_id: 382, file_size_mb: "31.21" },
            { id: 54, texture_name: "style roughness bump", resolution: 1888, asset_id: 100, file_size_mb: "38.15" },
            { id: 55, texture_name: "overlay", resolution: 1840, asset_id: 82, file_size_mb: "48.26" },
            { id: 56, texture_name: "pattern material gradient", resolution: 2914, asset_id: 452, file_size_mb: "52.03" },
            { id: 57, texture_name: "ambient texture layer", resolution: 2291, asset_id: 151, file_size_mb: "49.30" },
            { id: 58, texture_name: "ambient", resolution: 2444, asset_id: 403, file_size_mb: "62.67" },
            { id: 59, texture_name: "emissive", resolution: 1993, asset_id: 429, file_size_mb: "34.96" },
            { id: 60, texture_name: "opacity texture style", resolution: 1867, asset_id: 288, file_size_mb: "72.83" },
            { id: 61, texture_name: "color pattern", resolution: 1782, asset_id: 95, file_size_mb: "56.59" },
            { id: 62, texture_name: "opacity ambient", resolution: 2569, asset_id: 94, file_size_mb: "66.60" },
            { id: 63, texture_name: "pattern", resolution: 2104, asset_id: 377, file_size_mb: "35.15" },
            { id: 64, texture_name: "metallic detail", resolution: 770, asset_id: 363, file_size_mb: "85.08" },
            { id: 65, texture_name: "texture color", resolution: null, asset_id: 287, file_size_mb: "58.86" },
            { id: 66, texture_name: "emissive", resolution: 1726, asset_id: 60, file_size_mb: "65.91" },
            { id: 67, texture_name: "diffuse finish detail", resolution: null, asset_id: 25, file_size_mb: "50.65" },
            { id: 68, texture_name: "ambient normal layer", resolution: 1788, asset_id: 224, file_size_mb: "38.38" },
            { id: 69, texture_name: "ambient material roughness", resolution: 2331, asset_id: 258, file_size_mb: "73.83" },
            { id: 70, texture_name: "layer metallic", resolution: 3211, asset_id: 281, file_size_mb: "73.75" },
            { id: 71, texture_name: "finish", resolution: 1845, asset_id: 154, file_size_mb: "28.42" },
            { id: 72, texture_name: "roughness", resolution: 2985, asset_id: 44, file_size_mb: "28.24" },
            { id: 73, texture_name: "metallic", resolution: 2883, asset_id: 458, file_size_mb: "20.40" },
            { id: 74, texture_name: "gradient", resolution: 2379, asset_id: 206, file_size_mb: "61.55" },
            { id: 75, texture_name: "roughness", resolution: 1259, asset_id: 207, file_size_mb: "55.56" },
            { id: 76, texture_name: "layer opacity", resolution: 2588, asset_id: 255, file_size_mb: "44.21" },
            { id: 77, texture_name: "ambient", resolution: 1452, asset_id: 369, file_size_mb: "36.45" },
            { id: 78, texture_name: "material diffuse gradient", resolution: 2057, asset_id: 157, file_size_mb: "65.83" },
            { id: 79, texture_name: "surface opacity", resolution: 1277, asset_id: 172, file_size_mb: "67.24" },
            { id: 80, texture_name: "layer", resolution: 1137, asset_id: 276, file_size_mb: "37.47" },
            { id: 81, texture_name: "layer normal", resolution: 2065, asset_id: 377, file_size_mb: "24.36" },
            { id: 82, texture_name: "roughness texture design", resolution: 1641, asset_id: 151, file_size_mb: "69.12" },
            { id: 83, texture_name: "style finish gradient", resolution: 3036, asset_id: 443, file_size_mb: "45.92" },
            { id: 84, texture_name: "bump", resolution: 1043, asset_id: 484, file_size_mb: "44.62" },
            { id: 85, texture_name: "design overlay", resolution: 1736, asset_id: 18, file_size_mb: "38.86" },
            { id: 86, texture_name: "overlay", resolution: 2178, asset_id: 239, file_size_mb: "47.20" },
            { id: 87, texture_name: "texture specular", resolution: null, asset_id: 374, file_size_mb: "60.54" },
            { id: 88, texture_name: "finish color roughness", resolution: 1957, asset_id: 245, file_size_mb: "57.39" },
            { id: 89, texture_name: "color", resolution: 2426, asset_id: 326, file_size_mb: "79.41" },
            { id: 90, texture_name: "metallic", resolution: 2218, asset_id: 409, file_size_mb: "61.23" },
            { id: 91, texture_name: "design gradient", resolution: 2611, asset_id: 498, file_size_mb: "72.46" },
            { id: 92, texture_name: "overlay", resolution: 2070, asset_id: 395, file_size_mb: "39.27" },
            { id: 93, texture_name: "normal specular surface", resolution: 1993, asset_id: 128, file_size_mb: "63.67" },
            { id: 94, texture_name: "normal diffuse ambient", resolution: 2031, asset_id: 16, file_size_mb: "37.77" },
            { id: 95, texture_name: "color texture diffuse", resolution: 3265, asset_id: 445, file_size_mb: "25.64" },
            { id: 96, texture_name: "ambient surface emissive", resolution: 2245, asset_id: 213, file_size_mb: "67.73" },
            { id: 97, texture_name: "layer", resolution: 2149, asset_id: 266, file_size_mb: "79.53" },
            { id: 98, texture_name: "diffuse overlay", resolution: 1785, asset_id: 468, file_size_mb: "72.77" },
            { id: 99, texture_name: "surface", resolution: 2233, asset_id: 62, file_size_mb: "77.43" },
            { id: 100, texture_name: "emissive metallic", resolution: 1297, asset_id: 481, file_size_mb: "57.56" },
            { id: 101, texture_name: "bump surface", resolution: 1469, asset_id: 138, file_size_mb: "41.37" },
            { id: 102, texture_name: "pattern detail surface", resolution: 2316, asset_id: 385, file_size_mb: "35.06" },
            { id: 103, texture_name: "metallic", resolution: 1666, asset_id: 105, file_size_mb: "31.18" },
            { id: 104, texture_name: "material design pattern", resolution: 2827, asset_id: 465, file_size_mb: "27.21" },
            { id: 105, texture_name: "surface specular overlay", resolution: null, asset_id: 65, file_size_mb: "69.04" },
            { id: 106, texture_name: "metallic surface opacity", resolution: null, asset_id: 11, file_size_mb: "56.10" },
            { id: 107, texture_name: "diffuse material finish", resolution: 2817, asset_id: 286, file_size_mb: "44.78" },
            { id: 108, texture_name: "bump surface", resolution: 2072, asset_id: 347, file_size_mb: "49.62" },
            { id: 109, texture_name: "style layer finish", resolution: 2985, asset_id: 187, file_size_mb: "23.34" },
            { id: 110, texture_name: "gradient diffuse", resolution: 3156, asset_id: 331, file_size_mb: "54.62" },
            { id: 111, texture_name: "material normal", resolution: 1629, asset_id: 346, file_size_mb: "46.63" },
            { id: 112, texture_name: "ambient", resolution: 2258, asset_id: 279, file_size_mb: "69.32" },
            { id: 113, texture_name: "bump finish", resolution: 2762, asset_id: 271, file_size_mb: "26.51" },
            { id: 114, texture_name: "ambient specular layer", resolution: 2395, asset_id: 90, file_size_mb: "56.77" },
            { id: 115, texture_name: "overlay emissive metallic", resolution: 1515, asset_id: 95, file_size_mb: "49.52" },
            { id: 116, texture_name: "texture ambient", resolution: 2179, asset_id: 154, file_size_mb: "46.05" },
            { id: 117, texture_name: "pattern style", resolution: 2952, asset_id: 349, file_size_mb: "54.53" },
            { id: 118, texture_name: "diffuse", resolution: 1674, asset_id: 461, file_size_mb: "60.43" },
            { id: 119, texture_name: "normal", resolution: 2814, asset_id: 262, file_size_mb: "42.19" },
            { id: 120, texture_name: "ambient opacity surface", resolution: 1866, asset_id: 62, file_size_mb: "49.82" },
            { id: 121, texture_name: "normal style", resolution: 1765, asset_id: 161, file_size_mb: "59.54" },
            { id: 122, texture_name: "texture", resolution: 1987, asset_id: 336, file_size_mb: "51.02" },
            { id: 123, texture_name: "design gradient metallic", resolution: 1501, asset_id: 59, file_size_mb: "64.61" },
            { id: 124, texture_name: "color", resolution: 2575, asset_id: 241, file_size_mb: "46.45" },
            { id: 125, texture_name: "pattern layer material", resolution: 1504, asset_id: 329, file_size_mb: "52.55" },
            { id: 126, texture_name: "finish", resolution: 1907, asset_id: 376, file_size_mb: "80.18" },
            { id: 127, texture_name: "metallic", resolution: 1458, asset_id: 473, file_size_mb: "51.28" },
            { id: 128, texture_name: "style normal", resolution: 1720, asset_id: 32, file_size_mb: "44.32" },
            { id: 129, texture_name: "ambient specular diffuse", resolution: 1173, asset_id: 278, file_size_mb: "58.43" },
            { id: 130, texture_name: "overlay", resolution: 1772, asset_id: 416, file_size_mb: "49.33" },
            { id: 131, texture_name: "gradient", resolution: 2720, asset_id: 168, file_size_mb: "49.29" },
            { id: 132, texture_name: "diffuse bump detail", resolution: 1667, asset_id: 338, file_size_mb: "32.57" },
            { id: 133, texture_name: "opacity layer", resolution: 1305, asset_id: 117, file_size_mb: "45.78" },
            { id: 134, texture_name: "normal color ambient", resolution: 2480, asset_id: 126, file_size_mb: "83.83" },
            { id: 135, texture_name: "bump style detail", resolution: 1729, asset_id: 265, file_size_mb: "33.29" },
            { id: 136, texture_name: "ambient finish", resolution: 2051, asset_id: 287, file_size_mb: "38.19" },
            { id: 137, texture_name: "bump roughness emissive", resolution: 3270, asset_id: 174, file_size_mb: "57.47" },
            { id: 138, texture_name: "color design texture", resolution: null, asset_id: 257, file_size_mb: "27.67" },
            { id: 139, texture_name: "diffuse overlay", resolution: 2903, asset_id: 389, file_size_mb: "53.32" },
            { id: 140, texture_name: "pattern material", resolution: 2067, asset_id: 174, file_size_mb: "55.09" },
            { id: 141, texture_name: "gradient", resolution: null, asset_id: 238, file_size_mb: "78.06" },
            { id: 142, texture_name: "emissive pattern", resolution: null, asset_id: 354, file_size_mb: "45.16" },
            { id: 143, texture_name: "normal design", resolution: null, asset_id: 284, file_size_mb: "47.56" },
            { id: 144, texture_name: "style opacity surface", resolution: 1716, asset_id: 174, file_size_mb: "76.06" },
            { id: 145, texture_name: "normal", resolution: 2922, asset_id: 416, file_size_mb: "38.98" },
            { id: 146, texture_name: "detail pattern roughness", resolution: 2263, asset_id: 371, file_size_mb: "40.17" },
            { id: 147, texture_name: "ambient", resolution: 2358, asset_id: 47, file_size_mb: "43.83" },
            { id: 148, texture_name: "detail", resolution: 2218, asset_id: 473, file_size_mb: "68.98" },
            { id: 149, texture_name: "pattern specular surface", resolution: 1292, asset_id: 452, file_size_mb: "35.71" },
            { id: 150, texture_name: "color", resolution: null, asset_id: 262, file_size_mb: "49.99" },
            { id: 151, texture_name: "pattern", resolution: 2770, asset_id: 49, file_size_mb: "39.00" },
            { id: 152, texture_name: "metallic ambient diffuse", resolution: 2665, asset_id: 431, file_size_mb: "34.10" },
            { id: 153, texture_name: "material", resolution: 1783, asset_id: 134, file_size_mb: "53.20" },
            { id: 154, texture_name: "surface", resolution: 1800, asset_id: 433, file_size_mb: "43.55" },
            { id: 155, texture_name: "specular metallic", resolution: 2331, asset_id: 52, file_size_mb: "49.37" },
            { id: 156, texture_name: "opacity emissive surface", resolution: 2379, asset_id: 178, file_size_mb: "72.86" },
            { id: 157, texture_name: "style", resolution: 1504, asset_id: 454, file_size_mb: "28.83" },
            { id: 158, texture_name: "detail", resolution: null, asset_id: 405, file_size_mb: "36.20" },
            { id: 159, texture_name: "emissive", resolution: 2737, asset_id: 196, file_size_mb: "32.52" },
            { id: 160, texture_name: "color bump texture", resolution: null, asset_id: 162, file_size_mb: "41.16" },
            { id: 161, texture_name: "overlay surface", resolution: null, asset_id: 379, file_size_mb: "60.80" },
            { id: 162, texture_name: "emissive", resolution: 2708, asset_id: 116, file_size_mb: "19.40" },
            { id: 163, texture_name: "layer specular", resolution: null, asset_id: 159, file_size_mb: "58.84" },
            { id: 164, texture_name: "normal gradient", resolution: 2276, asset_id: 92, file_size_mb: "61.54" },
            { id: 165, texture_name: "diffuse", resolution: 2621, asset_id: 144, file_size_mb: "42.16" },
            { id: 166, texture_name: "material ambient", resolution: 1009, asset_id: 27, file_size_mb: "34.33" },
            { id: 167, texture_name: "material", resolution: 2784, asset_id: 210, file_size_mb: "28.06" },
            { id: 168, texture_name: "color pattern", resolution: 2361, asset_id: 411, file_size_mb: "62.33" },
            { id: 169, texture_name: "overlay roughness pattern", resolution: null, asset_id: 20, file_size_mb: "23.01" },
            { id: 170, texture_name: "design", resolution: null, asset_id: 327, file_size_mb: "57.97" },
            { id: 171, texture_name: "metallic", resolution: 1409, asset_id: 247, file_size_mb: "54.27" },
            { id: 172, texture_name: "bump gradient", resolution: 1574, asset_id: 77, file_size_mb: "55.19" },
            { id: 173, texture_name: "diffuse color", resolution: null, asset_id: 478, file_size_mb: "57.39" },
            { id: 174, texture_name: "bump", resolution: null, asset_id: 416, file_size_mb: "40.36" },
            { id: 175, texture_name: "metallic design gradient", resolution: null, asset_id: 463, file_size_mb: "57.49" },
            { id: 176, texture_name: "overlay", resolution: 2009, asset_id: 59, file_size_mb: "73.09" },
            { id: 177, texture_name: "color", resolution: 1657, asset_id: 5, file_size_mb: "7.68" },
            { id: 178, texture_name: "emissive layer ambient", resolution: 2392, asset_id: 318, file_size_mb: "25.16" },
            { id: 179, texture_name: "opacity gradient", resolution: 2942, asset_id: 49, file_size_mb: "30.40" },
            { id: 180, texture_name: "style surface", resolution: 1759, asset_id: 406, file_size_mb: "66.51" },
            { id: 181, texture_name: "emissive texture ambient", resolution: 2464, asset_id: 457, file_size_mb: "43.32" },
            { id: 182, texture_name: "metallic specular", resolution: 1855, asset_id: 70, file_size_mb: "47.93" },
            { id: 183, texture_name: "design", resolution: 2074, asset_id: 488, file_size_mb: "51.89" },
            { id: 184, texture_name: "emissive color design", resolution: null, asset_id: 406, file_size_mb: "25.91" },
            { id: 185, texture_name: "detail layer surface", resolution: 2955, asset_id: 339, file_size_mb: "40.32" },
            { id: 186, texture_name: "design texture", resolution: 2467, asset_id: 279, file_size_mb: "38.57" },
            { id: 187, texture_name: "bump normal", resolution: null, asset_id: 424, file_size_mb: "37.12" },
            { id: 188, texture_name: "detail layer", resolution: 1734, asset_id: 394, file_size_mb: "65.96" },
            { id: 189, texture_name: "texture", resolution: 2557, asset_id: 356, file_size_mb: "37.37" },
            { id: 190, texture_name: "emissive roughness", resolution: 2095, asset_id: 314, file_size_mb: "66.70" },
            { id: 191, texture_name: "finish layer texture", resolution: 2615, asset_id: 272, file_size_mb: "67.02" },
            { id: 192, texture_name: "emissive", resolution: 2305, asset_id: 293, file_size_mb: "56.60" },
            { id: 193, texture_name: "pattern emissive specular", resolution: 1985, asset_id: 180, file_size_mb: "46.13" },
            { id: 194, texture_name: "material finish detail", resolution: null, asset_id: 467, file_size_mb: "81.74" },
            { id: 195, texture_name: "material design", resolution: 2153, asset_id: 321, file_size_mb: "46.40" },
            { id: 196, texture_name: "emissive ambient", resolution: 2242, asset_id: 412, file_size_mb: "70.00" },
            { id: 197, texture_name: "surface bump", resolution: 2933, asset_id: 386, file_size_mb: "53.33" },
            { id: 198, texture_name: "metallic roughness texture", resolution: 2653, asset_id: 383, file_size_mb: "48.58" },
            { id: 199, texture_name: "finish style texture", resolution: 2608, asset_id: 420, file_size_mb: "60.67" },
            { id: 200, texture_name: "bump", resolution: 2463, asset_id: 210, file_size_mb: "62.15" },
            { id: 201, texture_name: "material diffuse opacity", resolution: 2396, asset_id: 420, file_size_mb: "35.20" },
            { id: 202, texture_name: "detail", resolution: null, asset_id: 30, file_size_mb: "70.77" },
            { id: 203, texture_name: "metallic", resolution: 1617, asset_id: 454, file_size_mb: "66.44" },
            { id: 204, texture_name: "design", resolution: 1532, asset_id: 310, file_size_mb: "62.32" },
            { id: 205, texture_name: "specular design normal", resolution: 927, asset_id: 29, file_size_mb: "44.05" },
            { id: 206, texture_name: "gradient texture", resolution: null, asset_id: 29, file_size_mb: "32.29" },
            { id: 207, texture_name: "gradient pattern style", resolution: 2652, asset_id: 363, file_size_mb: "53.87" },
            { id: 208, texture_name: "material gradient design", resolution: 2875, asset_id: 335, file_size_mb: "51.48" },
            { id: 209, texture_name: "surface", resolution: 2221, asset_id: 142, file_size_mb: "57.32" },
            { id: 210, texture_name: "specular overlay ambient", resolution: 1325, asset_id: 278, file_size_mb: "47.57" },
            { id: 211, texture_name: "overlay", resolution: 1981, asset_id: 310, file_size_mb: "40.28" },
            { id: 212, texture_name: "pattern", resolution: 3095, asset_id: 432, file_size_mb: "64.09" },
            { id: 213, texture_name: "layer", resolution: null, asset_id: 34, file_size_mb: "48.94" },
            { id: 214, texture_name: "style", resolution: 2071, asset_id: 54, file_size_mb: "58.19" },
            { id: 215, texture_name: "ambient layer finish", resolution: null, asset_id: 51, file_size_mb: "68.65" },
            { id: 216, texture_name: "opacity texture detail", resolution: 2478, asset_id: 407, file_size_mb: "54.45" },
            { id: 217, texture_name: "texture opacity", resolution: 1900, asset_id: 208, file_size_mb: "25.85" },
            { id: 218, texture_name: "texture", resolution: 2429, asset_id: 461, file_size_mb: "44.16" },
            { id: 219, texture_name: "emissive texture diffuse", resolution: 2037, asset_id: 93, file_size_mb: "57.55" },
            { id: 220, texture_name: "texture specular roughness", resolution: 1163, asset_id: 206, file_size_mb: "70.18" },
            { id: 221, texture_name: "roughness", resolution: 2165, asset_id: 31, file_size_mb: "35.60" },
            { id: 222, texture_name: "ambient design diffuse", resolution: 1890, asset_id: 66, file_size_mb: "54.84" },
            { id: 223, texture_name: "roughness design normal", resolution: 1890, asset_id: 364, file_size_mb: "37.87" },
            { id: 224, texture_name: "diffuse material design", resolution: 1628, asset_id: 87, file_size_mb: "63.20" },
            { id: 225, texture_name: "surface roughness", resolution: 1344, asset_id: 367, file_size_mb: "40.10" },
            { id: 226, texture_name: "metallic", resolution: 2029, asset_id: 217, file_size_mb: "70.54" },
            { id: 227, texture_name: "metallic", resolution: 986, asset_id: 425, file_size_mb: "31.36" },
            { id: 228, texture_name: "normal", resolution: null, asset_id: 421, file_size_mb: "52.00" },
            { id: 229, texture_name: "layer specular", resolution: null, asset_id: 251, file_size_mb: "44.11" },
            { id: 230, texture_name: "normal material", resolution: 3009, asset_id: 259, file_size_mb: "66.76" },
            { id: 231, texture_name: "material overlay", resolution: 2788, asset_id: 260, file_size_mb: "65.95" },
            { id: 232, texture_name: "color gradient roughness", resolution: 1982, asset_id: 490, file_size_mb: "44.38" },
            { id: 233, texture_name: "gradient", resolution: 2889, asset_id: 352, file_size_mb: "44.68" },
            { id: 234, texture_name: "bump roughness ambient", resolution: 1999, asset_id: 233, file_size_mb: "55.21" },
            { id: 235, texture_name: "texture", resolution: 2839, asset_id: 191, file_size_mb: "74.22" },
            { id: 236, texture_name: "emissive material", resolution: 3388, asset_id: 386, file_size_mb: "59.39" },
            { id: 237, texture_name: "surface", resolution: 2676, asset_id: 79, file_size_mb: "63.13" },
            { id: 238, texture_name: "pattern", resolution: null, asset_id: 492, file_size_mb: "36.89" },
            { id: 239, texture_name: "pattern diffuse", resolution: 1720, asset_id: 203, file_size_mb: "55.40" },
            { id: 240, texture_name: "design color", resolution: null, asset_id: 47, file_size_mb: "79.71" },
            { id: 241, texture_name: "overlay", resolution: 1684, asset_id: 420, file_size_mb: "72.17" },
            { id: 242, texture_name: "color", resolution: 3511, asset_id: 249, file_size_mb: "50.86" },
            { id: 243, texture_name: "diffuse material style", resolution: 2643, asset_id: 382, file_size_mb: "57.50" },
            { id: 244, texture_name: "layer metallic", resolution: 2966, asset_id: 337, file_size_mb: "47.25" },
            { id: 245, texture_name: "texture", resolution: 1265, asset_id: 356, file_size_mb: "80.81" },
            { id: 246, texture_name: "material gradient diffuse", resolution: 1873, asset_id: 87, file_size_mb: "38.55" },
            { id: 247, texture_name: "surface style layer", resolution: 2405, asset_id: 500, file_size_mb: "67.15" },
            { id: 248, texture_name: "emissive diffuse design", resolution: 1779, asset_id: 91, file_size_mb: "72.33" },
            { id: 249, texture_name: "texture normal", resolution: 1148, asset_id: 152, file_size_mb: "39.53" },
            { id: 250, texture_name: "gradient material", resolution: 1788, asset_id: 37, file_size_mb: "46.98" },
            { id: 251, texture_name: "overlay gradient surface", resolution: 2089, asset_id: 357, file_size_mb: "22.19" },
            { id: 252, texture_name: "finish surface", resolution: 2576, asset_id: 210, file_size_mb: "11.11" },
            { id: 253, texture_name: "specular", resolution: 2981, asset_id: 210, file_size_mb: "34.22" },
            { id: 254, texture_name: "style color", resolution: 2357, asset_id: 203, file_size_mb: "52.11" },
            { id: 255, texture_name: "material texture", resolution: 2099, asset_id: 10, file_size_mb: "46.65" },
            { id: 256, texture_name: "style", resolution: 1318, asset_id: 183, file_size_mb: "48.64" },
            { id: 257, texture_name: "color diffuse", resolution: 1685, asset_id: 15, file_size_mb: "52.35" },
            { id: 258, texture_name: "style", resolution: 2758, asset_id: 155, file_size_mb: "55.68" },
            { id: 259, texture_name: "layer", resolution: null, asset_id: 143, file_size_mb: "46.29" },
            { id: 260, texture_name: "color", resolution: null, asset_id: 313, file_size_mb: "59.93" },
            { id: 261, texture_name: "bump", resolution: 2967, asset_id: 203, file_size_mb: "54.10" },
            { id: 262, texture_name: "finish", resolution: 2096, asset_id: 492, file_size_mb: "48.93" },
            { id: 263, texture_name: "finish detail", resolution: 2510, asset_id: 238, file_size_mb: "59.68" },
            { id: 264, texture_name: "overlay opacity", resolution: 1395, asset_id: 15, file_size_mb: "58.81" },
            { id: 265, texture_name: "color gradient overlay", resolution: 2401, asset_id: 239, file_size_mb: "28.56" },
            { id: 266, texture_name: "diffuse bump style", resolution: 1775, asset_id: 450, file_size_mb: "50.87" },
            { id: 267, texture_name: "metallic layer specular", resolution: 2553, asset_id: 380, file_size_mb: "62.31" },
            { id: 268, texture_name: "gradient metallic", resolution: 2148, asset_id: 376, file_size_mb: "41.07" },
            { id: 269, texture_name: "material texture", resolution: 2278, asset_id: 7, file_size_mb: "37.28" },
            { id: 270, texture_name: "specular", resolution: 1189, asset_id: 148, file_size_mb: "32.11" },
            { id: 271, texture_name: "emissive", resolution: 2587, asset_id: 204, file_size_mb: "55.32" },
            { id: 272, texture_name: "opacity", resolution: null, asset_id: 464, file_size_mb: "54.61" },
            { id: 273, texture_name: "material diffuse overlay", resolution: 2181, asset_id: 314, file_size_mb: "41.70" },
            { id: 274, texture_name: "pattern", resolution: 1463, asset_id: 37, file_size_mb: "44.25" },
            { id: 275, texture_name: "detail material", resolution: 2297, asset_id: 169, file_size_mb: "39.56" },
            { id: 276, texture_name: "specular", resolution: 2902, asset_id: 162, file_size_mb: "32.05" },
            { id: 277, texture_name: "specular", resolution: 2457, asset_id: 457, file_size_mb: "18.31" },
            { id: 278, texture_name: "roughness", resolution: 2570, asset_id: 117, file_size_mb: "22.66" },
            { id: 279, texture_name: "surface", resolution: 2061, asset_id: 422, file_size_mb: "67.43" },
            { id: 280, texture_name: "normal material roughness", resolution: 1638, asset_id: 483, file_size_mb: "20.82" },
            { id: 281, texture_name: "roughness diffuse color", resolution: 1502, asset_id: 493, file_size_mb: "66.95" },
            { id: 282, texture_name: "detail ambient", resolution: 2386, asset_id: 232, file_size_mb: "71.65" },
            { id: 283, texture_name: "diffuse detail layer", resolution: null, asset_id: 253, file_size_mb: "57.18" },
            { id: 284, texture_name: "diffuse", resolution: 2605, asset_id: 147, file_size_mb: "74.00" },
            { id: 285, texture_name: "bump metallic", resolution: 917, asset_id: 407, file_size_mb: "34.50" },
            { id: 286, texture_name: "pattern roughness", resolution: 1983, asset_id: 179, file_size_mb: "46.27" },
            { id: 287, texture_name: "specular pattern bump", resolution: 2747, asset_id: 26, file_size_mb: "35.99" },
            { id: 288, texture_name: "finish metallic", resolution: 1593, asset_id: 416, file_size_mb: "71.20" },
            { id: 289, texture_name: "opacity", resolution: 1529, asset_id: 396, file_size_mb: "65.83" },
            { id: 290, texture_name: "texture", resolution: 2019, asset_id: 340, file_size_mb: "56.97" },
            { id: 291, texture_name: "normal", resolution: 3130, asset_id: 379, file_size_mb: "63.13" },
            { id: 292, texture_name: "metallic specular", resolution: null, asset_id: 398, file_size_mb: "80.81" },
            { id: 293, texture_name: "metallic", resolution: 1881, asset_id: 95, file_size_mb: "51.13" },
            { id: 294, texture_name: "pattern normal metallic", resolution: null, asset_id: 1, file_size_mb: "38.85" },
            { id: 295, texture_name: "bump", resolution: 2317, asset_id: 312, file_size_mb: "67.23" },
            { id: 296, texture_name: "design metallic layer", resolution: 2901, asset_id: 489, file_size_mb: "45.55" },
            { id: 297, texture_name: "surface bump", resolution: null, asset_id: 174, file_size_mb: "38.31" },
            { id: 298, texture_name: "texture specular", resolution: 2719, asset_id: 326, file_size_mb: "70.85" },
            { id: 299, texture_name: "finish", resolution: 1898, asset_id: 248, file_size_mb: "76.49" },
            { id: 300, texture_name: "specular", resolution: 1796, asset_id: 304, file_size_mb: "51.60" },
        ],
    });
}

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