// Personality Connections in Gaming (dating-app-with-personality-matching) 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.locations), 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.locations.createMany({
        data: [
            { location_id: 1, city: "Austin", country: "United States", region: "North America", population: 3287769 },
            { location_id: 2, city: "Oslo", country: "Norway", region: "Europe", population: 4369407 },
            { location_id: 3, city: "Nairobi", country: "Kenya", region: "North America", population: 7094670 },
            { location_id: 4, city: "Helsinki", country: "Finland", region: "North America", population: 7211027 },
            { location_id: 5, city: "Auckland", country: "New Zealand", region: "Europe", population: 5611779 },
            { location_id: 6, city: "Barcelona", country: "Spain", region: "Europe", population: 6019144 },
            { location_id: 7, city: "Bogota", country: "Colombia", region: "Europe", population: 4779709 },
            { location_id: 8, city: "London", country: "United Kingdom", region: "North America", population: 3198724 },
            { location_id: 9, city: "Bangkok", country: "Thailand", region: "Oceania", population: 4531139 },
            { location_id: 10, city: "Bangkok", country: "Thailand", region: "Africa", population: 6314775 },
            { location_id: 11, city: "Madrid", country: "Spain", region: "Europe", population: 7309564 },
            { location_id: 12, city: "Mexico City", country: "Mexico", region: "Europe", population: 6193465 },
            { location_id: 13, city: "Montreal", country: "Canada", region: "Asia", population: 3500679 },
            { location_id: 14, city: "Oslo", country: "Norway", region: "North America", population: 5633027 },
            { location_id: 15, city: "Izmir", country: "Turkey", region: "North America", population: 4236409 },
            { location_id: 16, city: "Warsaw", country: "Poland", region: "Asia", population: 8134942 },
            { location_id: 17, city: "Stockholm", country: "Sweden", region: "Asia", population: 5246231 },
            { location_id: 18, city: "Kyoto", country: "Japan", region: "Europe", population: 5985567 },
            { location_id: 19, city: "Madrid", country: "Spain", region: "Asia", population: 5125001 },
            { location_id: 20, city: "Copenhagen", country: "Denmark", region: "Europe", population: 6064972 },
            { location_id: 21, city: "Delhi", country: "India", region: "North America", population: 4961470 },
            { location_id: 22, city: "Cape Town", country: "South Africa", region: "North America", population: 7918798 },
            { location_id: 23, city: "Kyoto", country: "Japan", region: "Africa", population: 4623895 },
            { location_id: 24, city: "Sydney", country: "Australia", region: "Asia", population: 3820718 },
            { location_id: 25, city: "Zurich", country: "Switzerland", region: "Asia", population: 5005017 },
            { location_id: 26, city: "Manila", country: "Philippines", region: "North America", population: 4339582 },
            { location_id: 27, city: "Porto", country: "Portugal", region: "North America", population: 1776547 },
            { location_id: 28, city: "Seattle", country: "United States", region: "North America", population: 3482359 },
            { location_id: 29, city: "Mexico City", country: "Mexico", region: "North America", population: 6793832 },
            { location_id: 30, city: "Tokyo", country: "Japan", region: "Asia", population: 4396492 },
            { location_id: 31, city: "Seoul", country: "South Korea", region: "North America", population: 2591517 },
            { location_id: 32, city: "Vienna", country: "Austria", region: "North America", population: 3107949 },
            { location_id: 33, city: "Dublin", country: "Ireland", region: "Asia", population: 5348312 },
            { location_id: 34, city: "Manchester", country: "United Kingdom", region: "Europe", population: 3715180 },
            { location_id: 35, city: "Taipei", country: "Taiwan", region: "Asia", population: 1410518 },
            { location_id: 36, city: "Izmir", country: "Turkey", region: "North America", population: 8121464 },
            { location_id: 37, city: "Manila", country: "Philippines", region: "Asia", population: 5643385 },
            { location_id: 38, city: "Montreal", country: "Canada", region: "Oceania", population: 4682874 },
            { location_id: 39, city: "Seoul", country: "South Korea", region: "North America", population: 3096934 },
            { location_id: 40, city: "Boston", country: "United States", region: "North America", population: 5235682 },
            { location_id: 41, city: "Rome", country: "Italy", region: "North America", population: 3519676 },
            { location_id: 42, city: "Helsinki", country: "Finland", region: "Africa", population: 4628651 },
            { location_id: 43, city: "Prague", country: "Czech Republic", region: "Europe", population: 3933796 },
            { location_id: 44, city: "Bucharest", country: "Romania", region: "North America", population: 4192199 },
            { location_id: 45, city: "Cape Town", country: "South Africa", region: "Asia", population: 6522125 },
            { location_id: 46, city: "Milan", country: "Italy", region: "North America", population: 2611839 },
            { location_id: 47, city: "Bangkok", country: "Thailand", region: "North America", population: 7191838 },
            { location_id: 48, city: "Denver", country: "United States", region: "North America", population: 3919971 },
            { location_id: 49, city: "Prague", country: "Czech Republic", region: "Europe", population: 6018828 },
            { location_id: 50, city: "Vancouver", country: "Canada", region: "Europe", population: 5459772 },
        ],
    });
    await prisma.users.createMany({
        data: [
            { user_id: 1, username: "gamer hero", personality_type: "extrovert", age: 35, location_id: 10 },
            { user_id: 2, username: "hunter sphinx titan", personality_type: "introvert", age: 31, location_id: 9 },
            { user_id: 3, username: "pixel", personality_type: "ambivert", age: 26, location_id: 19 },
            { user_id: 4, username: "sphinx wizard hunter", personality_type: "ambivert", age: 26, location_id: 31 },
            { user_id: 5, username: "sphinx", personality_type: "ambivert", age: 35, location_id: 19 },
            { user_id: 6, username: "phantom ranger", personality_type: "introvert", age: 27, location_id: 23 },
            { user_id: 7, username: "vortex", personality_type: "ambivert", age: 33, location_id: 23 },
            { user_id: 8, username: "sphinx mage", personality_type: "ambivert", age: 28, location_id: 9 },
            { user_id: 9, username: "mage wizard titan", personality_type: "introvert", age: 27, location_id: 19 },
            { user_id: 10, username: "cyborg vortex ghost", personality_type: "extrovert", age: 30, location_id: 45 },
            { user_id: 11, username: "cyborg ranger", personality_type: "ambivert", age: 33, location_id: 8 },
            { user_id: 12, username: "hunter ninja vortex", personality_type: "extrovert", age: 28, location_id: 19 },
            { user_id: 13, username: "ghost", personality_type: "introvert", age: 31, location_id: 40 },
            { user_id: 14, username: "gamer phantom", personality_type: "introvert", age: 25, location_id: 28 },
            { user_id: 15, username: "hunter rebel", personality_type: "ambivert", age: 33, location_id: 10 },
            { user_id: 16, username: "quest pixel titan", personality_type: "introvert", age: 28, location_id: 10 },
            { user_id: 17, username: "wizard", personality_type: "introvert", age: 31, location_id: 14 },
            { user_id: 18, username: "ghost", personality_type: "introvert", age: 24, location_id: 42 },
            { user_id: 19, username: "cyborg titan hero", personality_type: "ambivert", age: 29, location_id: 36 },
            { user_id: 20, username: "gamer", personality_type: "ambivert", age: 28, location_id: 40 },
            { user_id: 21, username: "hunter sorcerer", personality_type: "introvert", age: 31, location_id: 34 },
            { user_id: 22, username: "pixel hero", personality_type: "introvert", age: 25, location_id: 4 },
            { user_id: 23, username: "sphinx", personality_type: "extrovert", age: 33, location_id: 47 },
            { user_id: 24, username: "ranger rebel gamer", personality_type: "introvert", age: 28, location_id: 27 },
            { user_id: 25, username: "rebel sorcerer", personality_type: "extrovert", age: 30, location_id: 40 },
            { user_id: 26, username: "cyborg sphinx", personality_type: "extrovert", age: 23, location_id: 5 },
            { user_id: 27, username: "knight dragon", personality_type: "ambivert", age: 30, location_id: 1 },
            { user_id: 28, username: "rebel sphinx", personality_type: "introvert", age: 33, location_id: 28 },
            { user_id: 29, username: "sorcerer", personality_type: "introvert", age: 27, location_id: 47 },
            { user_id: 30, username: "phantom hero", personality_type: "introvert", age: 32, location_id: 20 },
            { user_id: 31, username: "gamer", personality_type: "introvert", age: 31, location_id: 31 },
            { user_id: 32, username: "cyborg", personality_type: "introvert", age: 28, location_id: null },
            { user_id: 33, username: "vortex quest titan", personality_type: "introvert", age: 27, location_id: 17 },
            { user_id: 34, username: "quest", personality_type: "extrovert", age: 36, location_id: 42 },
            { user_id: 35, username: "ranger shadow", personality_type: "ambivert", age: 28, location_id: 33 },
            { user_id: 36, username: "shadow gamer ranger", personality_type: "introvert", age: 30, location_id: 30 },
            { user_id: 37, username: "sorcerer", personality_type: "introvert", age: 33, location_id: 13 },
            { user_id: 38, username: "gamer", personality_type: "extrovert", age: 27, location_id: 18 },
            { user_id: 39, username: "quest ranger gamer", personality_type: "introvert", age: 26, location_id: 26 },
            { user_id: 40, username: "cyborg hero sorcerer", personality_type: "ambivert", age: 32, location_id: 14 },
            { user_id: 41, username: "ghost", personality_type: "introvert", age: 21, location_id: 10 },
            { user_id: 42, username: "ghost pixel", personality_type: "extrovert", age: 32, location_id: 3 },
            { user_id: 43, username: "wizard rebel hunter", personality_type: "ambivert", age: 28, location_id: 34 },
            { user_id: 44, username: "quest titan", personality_type: "introvert", age: 28, location_id: 35 },
            { user_id: 45, username: "quest rebel hunter", personality_type: "extrovert", age: 27, location_id: 38 },
            { user_id: 46, username: "sorcerer dragon mage", personality_type: "ambivert", age: 30, location_id: 5 },
            { user_id: 47, username: "phantom dragon ghost", personality_type: "ambivert", age: 34, location_id: 39 },
            { user_id: 48, username: "gamer sphinx", personality_type: "introvert", age: 28, location_id: 44 },
            { user_id: 49, username: "wizard", personality_type: "introvert", age: 30, location_id: null },
            { user_id: 50, username: "rebel", personality_type: "extrovert", age: 25, location_id: 20 },
            { user_id: 51, username: "dragon wizard", personality_type: "extrovert", age: 27, location_id: 29 },
            { user_id: 52, username: "hero knight ninja", personality_type: "ambivert", age: 32, location_id: 1 },
            { user_id: 53, username: "quest", personality_type: "introvert", age: 32, location_id: 12 },
            { user_id: 54, username: "quest hunter pixel", personality_type: "ambivert", age: 31, location_id: 38 },
            { user_id: 55, username: "rebel ghost", personality_type: "ambivert", age: 24, location_id: 1 },
            { user_id: 56, username: "ghost hero", personality_type: "introvert", age: 27, location_id: 24 },
            { user_id: 57, username: "shadow ranger dragon", personality_type: "introvert", age: 26, location_id: 19 },
            { user_id: 58, username: "wizard rebel", personality_type: "introvert", age: 30, location_id: 29 },
            { user_id: 59, username: "ghost ranger knight", personality_type: "ambivert", age: 33, location_id: 1 },
            { user_id: 60, username: "cyborg quest", personality_type: "introvert", age: 32, location_id: 38 },
            { user_id: 61, username: "cyborg mage", personality_type: "extrovert", age: 26, location_id: 13 },
            { user_id: 62, username: "quest", personality_type: "introvert", age: 30, location_id: 43 },
            { user_id: 63, username: "sphinx hunter", personality_type: "introvert", age: 27, location_id: 44 },
            { user_id: 64, username: "ghost", personality_type: "introvert", age: 28, location_id: null },
            { user_id: 65, username: "hunter", personality_type: "introvert", age: 29, location_id: 33 },
            { user_id: 66, username: "quest pixel", personality_type: "introvert", age: 27, location_id: null },
            { user_id: 67, username: "shadow wizard", personality_type: "extrovert", age: 25, location_id: 6 },
            { user_id: 68, username: "ghost phantom sphinx", personality_type: "introvert", age: 25, location_id: 16 },
            { user_id: 69, username: "ninja", personality_type: "introvert", age: 33, location_id: 29 },
            { user_id: 70, username: "cyborg wizard gamer", personality_type: "extrovert", age: 32, location_id: 17 },
            { user_id: 71, username: "sorcerer", personality_type: "introvert", age: 27, location_id: null },
            { user_id: 72, username: "ninja quest hunter", personality_type: "introvert", age: 26, location_id: 49 },
            { user_id: 73, username: "ghost pixel", personality_type: "introvert", age: 34, location_id: 46 },
            { user_id: 74, username: "ranger vortex", personality_type: "introvert", age: 29, location_id: 18 },
            { user_id: 75, username: "quest hero shadow", personality_type: "introvert", age: 22, location_id: null },
            { user_id: 76, username: "gamer dragon", personality_type: "extrovert", age: 29, location_id: 27 },
            { user_id: 77, username: "wizard", personality_type: "introvert", age: 28, location_id: 25 },
            { user_id: 78, username: "titan", personality_type: "introvert", age: 24, location_id: 26 },
            { user_id: 79, username: "quest shadow", personality_type: "introvert", age: 29, location_id: 40 },
            { user_id: 80, username: "titan", personality_type: "extrovert", age: 32, location_id: null },
            { user_id: 81, username: "mage hero gamer", personality_type: "introvert", age: 35, location_id: 3 },
            { user_id: 82, username: "phantom", personality_type: "introvert", age: 28, location_id: null },
            { user_id: 83, username: "sphinx", personality_type: "introvert", age: 30, location_id: 28 },
            { user_id: 84, username: "vortex knight", personality_type: "ambivert", age: 27, location_id: 27 },
            { user_id: 85, username: "rebel", personality_type: "introvert", age: 35, location_id: 1 },
            { user_id: 86, username: "shadow", personality_type: "extrovert", age: 27, location_id: null },
            { user_id: 87, username: "rebel sphinx", personality_type: "introvert", age: 31, location_id: 41 },
            { user_id: 88, username: "quest phantom shadow", personality_type: "extrovert", age: 28, location_id: null },
            { user_id: 89, username: "phantom cyborg", personality_type: "extrovert", age: 25, location_id: 47 },
            { user_id: 90, username: "hero", personality_type: "extrovert", age: 26, location_id: 44 },
            { user_id: 91, username: "rebel cyborg shadow", personality_type: "introvert", age: 32, location_id: 11 },
            { user_id: 92, username: "vortex rebel sphinx", personality_type: "introvert", age: 26, location_id: null },
            { user_id: 93, username: "shadow", personality_type: "ambivert", age: 32, location_id: null },
            { user_id: 94, username: "ninja", personality_type: "introvert", age: 30, location_id: 18 },
            { user_id: 95, username: "ghost cyborg", personality_type: "introvert", age: 30, location_id: 45 },
            { user_id: 96, username: "ghost ranger gamer", personality_type: "introvert", age: 30, location_id: 13 },
            { user_id: 97, username: "sphinx sorcerer", personality_type: "introvert", age: 30, location_id: 26 },
            { user_id: 98, username: "ranger knight wizard", personality_type: "ambivert", age: 32, location_id: 21 },
            { user_id: 99, username: "ranger", personality_type: "introvert", age: 27, location_id: 28 },
            { user_id: 100, username: "phantom", personality_type: "extrovert", age: 28, location_id: 5 },
            { user_id: 101, username: "phantom knight pixel", personality_type: "introvert", age: 35, location_id: 12 },
            { user_id: 102, username: "pixel titan", personality_type: "introvert", age: 26, location_id: 25 },
            { user_id: 103, username: "dragon cyborg", personality_type: "ambivert", age: 30, location_id: null },
            { user_id: 104, username: "ranger quest", personality_type: "introvert", age: 24, location_id: 4 },
            { user_id: 105, username: "cyborg hero wizard", personality_type: "introvert", age: 31, location_id: 28 },
            { user_id: 106, username: "mage ranger", personality_type: "introvert", age: 26, location_id: 9 },
            { user_id: 107, username: "hero", personality_type: "introvert", age: 32, location_id: 36 },
            { user_id: 108, username: "titan", personality_type: "extrovert", age: 32, location_id: 32 },
            { user_id: 109, username: "phantom wizard", personality_type: "introvert", age: 25, location_id: 13 },
            { user_id: 110, username: "cyborg", personality_type: "introvert", age: 25, location_id: 46 },
            { user_id: 111, username: "ranger", personality_type: "introvert", age: 28, location_id: 43 },
            { user_id: 112, username: "ghost", personality_type: "introvert", age: 32, location_id: null },
            { user_id: 113, username: "mage gamer rebel", personality_type: "ambivert", age: 27, location_id: 16 },
            { user_id: 114, username: "titan rebel sorcerer", personality_type: "introvert", age: 29, location_id: null },
            { user_id: 115, username: "vortex", personality_type: "ambivert", age: 26, location_id: 20 },
            { user_id: 116, username: "hunter ranger wizard", personality_type: "introvert", age: 26, location_id: 3 },
            { user_id: 117, username: "cyborg", personality_type: "introvert", age: 31, location_id: 11 },
            { user_id: 118, username: "hunter", personality_type: "extrovert", age: 28, location_id: 21 },
            { user_id: 119, username: "knight ninja phantom", personality_type: "introvert", age: 27, location_id: 33 },
            { user_id: 120, username: "sphinx", personality_type: "introvert", age: 22, location_id: 17 },
            { user_id: 121, username: "mage", personality_type: "extrovert", age: 23, location_id: 3 },
            { user_id: 122, username: "phantom", personality_type: "introvert", age: 31, location_id: 32 },
            { user_id: 123, username: "shadow gamer pixel", personality_type: "introvert", age: 30, location_id: 49 },
            { user_id: 124, username: "shadow titan", personality_type: "introvert", age: 22, location_id: 43 },
            { user_id: 125, username: "ninja", personality_type: "introvert", age: 24, location_id: 23 },
            { user_id: 126, username: "ghost pixel", personality_type: "extrovert", age: 29, location_id: 43 },
            { user_id: 127, username: "mage wizard", personality_type: "ambivert", age: 33, location_id: 9 },
            { user_id: 128, username: "pixel ranger quest", personality_type: "introvert", age: 30, location_id: 2 },
            { user_id: 129, username: "vortex", personality_type: "ambivert", age: 23, location_id: null },
            { user_id: 130, username: "cyborg", personality_type: "introvert", age: 31, location_id: 46 },
            { user_id: 131, username: "knight", personality_type: "introvert", age: 31, location_id: 40 },
            { user_id: 132, username: "knight sorcerer shadow", personality_type: "introvert", age: 30, location_id: 32 },
            { user_id: 133, username: "pixel hero", personality_type: "introvert", age: 28, location_id: 9 },
            { user_id: 134, username: "titan knight", personality_type: "ambivert", age: 32, location_id: 41 },
            { user_id: 135, username: "shadow hero", personality_type: "ambivert", age: 35, location_id: 31 },
            { user_id: 136, username: "gamer", personality_type: "ambivert", age: 34, location_id: 14 },
            { user_id: 137, username: "sphinx", personality_type: "introvert", age: 27, location_id: 13 },
            { user_id: 138, username: "ninja", personality_type: "extrovert", age: 26, location_id: 44 },
            { user_id: 139, username: "vortex wizard", personality_type: "introvert", age: 36, location_id: 34 },
            { user_id: 140, username: "gamer ghost titan", personality_type: "introvert", age: 35, location_id: 5 },
            { user_id: 141, username: "rebel quest pixel", personality_type: "introvert", age: 37, location_id: 50 },
            { user_id: 142, username: "knight pixel", personality_type: "introvert", age: 27, location_id: 8 },
            { user_id: 143, username: "hero", personality_type: "introvert", age: 30, location_id: 44 },
            { user_id: 144, username: "pixel", personality_type: "introvert", age: 27, location_id: 2 },
            { user_id: 145, username: "ranger sphinx", personality_type: "introvert", age: 25, location_id: 30 },
            { user_id: 146, username: "phantom ranger", personality_type: "introvert", age: 27, location_id: 7 },
            { user_id: 147, username: "phantom wizard hunter", personality_type: "introvert", age: 28, location_id: 32 },
            { user_id: 148, username: "quest", personality_type: "introvert", age: 33, location_id: 30 },
            { user_id: 149, username: "quest ranger", personality_type: "introvert", age: 25, location_id: 5 },
            { user_id: 150, username: "vortex mage", personality_type: "introvert", age: 29, location_id: 45 },
            { user_id: 151, username: "phantom", personality_type: "introvert", age: 26, location_id: 5 },
            { user_id: 152, username: "ninja", personality_type: "introvert", age: 27, location_id: 27 },
            { user_id: 153, username: "wizard titan", personality_type: "introvert", age: 29, location_id: 35 },
            { user_id: 154, username: "gamer", personality_type: "ambivert", age: 24, location_id: null },
            { user_id: 155, username: "knight ninja wizard", personality_type: "ambivert", age: 29, location_id: null },
            { user_id: 156, username: "ranger phantom", personality_type: "extrovert", age: 32, location_id: 43 },
            { user_id: 157, username: "quest pixel", personality_type: "introvert", age: 28, location_id: 37 },
            { user_id: 158, username: "hero dragon", personality_type: "ambivert", age: 30, location_id: null },
            { user_id: 159, username: "sphinx pixel shadow", personality_type: "introvert", age: 34, location_id: 21 },
            { user_id: 160, username: "ninja", personality_type: "introvert", age: 29, location_id: 47 },
            { user_id: 161, username: "mage vortex", personality_type: "ambivert", age: 30, location_id: 43 },
            { user_id: 162, username: "hero ranger", personality_type: "introvert", age: 32, location_id: 15 },
            { user_id: 163, username: "pixel ranger hunter", personality_type: "introvert", age: 21, location_id: 36 },
            { user_id: 164, username: "titan", personality_type: "introvert", age: 31, location_id: 1 },
            { user_id: 165, username: "cyborg titan", personality_type: "extrovert", age: 25, location_id: 32 },
            { user_id: 166, username: "gamer ghost", personality_type: "ambivert", age: 30, location_id: null },
            { user_id: 167, username: "quest sorcerer titan", personality_type: "introvert", age: 30, location_id: 4 },
            { user_id: 168, username: "vortex sorcerer", personality_type: "introvert", age: 28, location_id: 43 },
            { user_id: 169, username: "dragon phantom knight", personality_type: "ambivert", age: 32, location_id: null },
            { user_id: 170, username: "mage ranger", personality_type: "introvert", age: 26, location_id: null },
            { user_id: 171, username: "dragon", personality_type: "introvert", age: 32, location_id: 28 },
            { user_id: 172, username: "titan shadow", personality_type: "introvert", age: 28, location_id: null },
            { user_id: 173, username: "knight", personality_type: "introvert", age: 31, location_id: 32 },
            { user_id: 174, username: "titan hero gamer", personality_type: "introvert", age: 25, location_id: 6 },
            { user_id: 175, username: "rebel vortex", personality_type: "introvert", age: 31, location_id: null },
            { user_id: 176, username: "ghost", personality_type: "introvert", age: 24, location_id: 1 },
            { user_id: 177, username: "phantom sorcerer hunter", personality_type: "ambivert", age: 33, location_id: 35 },
            { user_id: 178, username: "vortex gamer wizard", personality_type: "extrovert", age: 29, location_id: 16 },
            { user_id: 179, username: "dragon cyborg titan", personality_type: "introvert", age: 33, location_id: 10 },
            { user_id: 180, username: "mage", personality_type: "extrovert", age: 36, location_id: 42 },
            { user_id: 181, username: "hunter shadow sorcerer", personality_type: "extrovert", age: 29, location_id: 12 },
            { user_id: 182, username: "hero knight pixel", personality_type: "ambivert", age: 29, location_id: 6 },
            { user_id: 183, username: "rebel", personality_type: "introvert", age: 30, location_id: 49 },
            { user_id: 184, username: "sorcerer vortex dragon", personality_type: "introvert", age: 32, location_id: 42 },
            { user_id: 185, username: "vortex", personality_type: "ambivert", age: 32, location_id: 39 },
            { user_id: 186, username: "cyborg", personality_type: "ambivert", age: 35, location_id: null },
            { user_id: 187, username: "gamer", personality_type: "extrovert", age: 27, location_id: 4 },
            { user_id: 188, username: "knight ranger", personality_type: "introvert", age: 33, location_id: 43 },
            { user_id: 189, username: "ranger", personality_type: "extrovert", age: 31, location_id: 40 },
            { user_id: 190, username: "ghost ranger quest", personality_type: "introvert", age: 31, location_id: 36 },
            { user_id: 191, username: "sorcerer knight dragon", personality_type: "ambivert", age: 31, location_id: 39 },
            { user_id: 192, username: "shadow hero mage", personality_type: "introvert", age: 27, location_id: 50 },
            { user_id: 193, username: "ranger pixel hunter", personality_type: "extrovert", age: 23, location_id: null },
            { user_id: 194, username: "dragon titan", personality_type: "introvert", age: 25, location_id: 35 },
            { user_id: 195, username: "titan vortex rebel", personality_type: "introvert", age: 27, location_id: 33 },
            { user_id: 196, username: "mage", personality_type: "extrovert", age: 33, location_id: 17 },
            { user_id: 197, username: "sphinx pixel", personality_type: "extrovert", age: 34, location_id: 21 },
            { user_id: 198, username: "mage sorcerer cyborg", personality_type: "extrovert", age: 29, location_id: 11 },
            { user_id: 199, username: "gamer dragon", personality_type: "introvert", age: 30, location_id: 42 },
            { user_id: 200, username: "rebel dragon", personality_type: "introvert", age: 24, location_id: 49 },
        ],
    });
    await prisma.connections.createMany({
        data: [
            { connection_id: 1, user_id_1: 167, user_id_2: 83, connected_at: new Date("2021-01-12T17:28:01Z"), connection_strength: 3, interaction_count: 55 },
            { connection_id: 2, user_id_1: 191, user_id_2: 1, connected_at: new Date("2022-02-06T15:45:06Z"), connection_strength: 1, interaction_count: 37 },
            { connection_id: 3, user_id_1: 133, user_id_2: 26, connected_at: new Date("2023-04-23T04:46:27Z"), connection_strength: 4, interaction_count: 50 },
            { connection_id: 4, user_id_1: 109, user_id_2: 164, connected_at: new Date("2023-06-14T00:13:23Z"), connection_strength: 3, interaction_count: 59 },
            { connection_id: 5, user_id_1: 15, user_id_2: 181, connected_at: new Date("2023-12-17T15:14:23Z"), connection_strength: 2, interaction_count: 72 },
            { connection_id: 6, user_id_1: 95, user_id_2: 41, connected_at: new Date("2023-03-08T10:03:43Z"), connection_strength: 3, interaction_count: 48 },
            { connection_id: 7, user_id_1: 129, user_id_2: 132, connected_at: new Date("2021-11-14T18:09:54Z"), connection_strength: 5, interaction_count: 50 },
            { connection_id: 8, user_id_1: 79, user_id_2: 40, connected_at: new Date("2022-10-19T19:39:46Z"), connection_strength: 1, interaction_count: 29 },
            { connection_id: 9, user_id_1: 72, user_id_2: 191, connected_at: new Date("2021-11-24T06:29:15Z"), connection_strength: 3, interaction_count: 41 },
            { connection_id: 10, user_id_1: 86, user_id_2: 39, connected_at: new Date("2021-10-14T07:44:43Z"), connection_strength: 5, interaction_count: 47 },
            { connection_id: 11, user_id_1: 16, user_id_2: 103, connected_at: new Date("2021-11-07T18:06:14Z"), connection_strength: 1, interaction_count: 49 },
            { connection_id: 12, user_id_1: 185, user_id_2: 72, connected_at: new Date("2022-06-19T17:39:56Z"), connection_strength: 2, interaction_count: 73 },
            { connection_id: 13, user_id_1: 125, user_id_2: 70, connected_at: new Date("2021-06-05T10:29:25Z"), connection_strength: 3, interaction_count: 60 },
            { connection_id: 14, user_id_1: 78, user_id_2: 102, connected_at: new Date("2021-03-19T16:14:26Z"), connection_strength: 2, interaction_count: 79 },
            { connection_id: 15, user_id_1: 55, user_id_2: 36, connected_at: new Date("2023-01-09T18:15:31Z"), connection_strength: 5, interaction_count: 46 },
            { connection_id: 16, user_id_1: 174, user_id_2: 30, connected_at: new Date("2021-07-03T08:08:08Z"), connection_strength: 2, interaction_count: 61 },
            { connection_id: 17, user_id_1: 98, user_id_2: 141, connected_at: new Date("2022-11-12T18:50:37Z"), connection_strength: 1, interaction_count: 28 },
            { connection_id: 18, user_id_1: 148, user_id_2: 5, connected_at: new Date("2022-12-03T12:33:07Z"), connection_strength: 2, interaction_count: 44 },
            { connection_id: 19, user_id_1: 20, user_id_2: 5, connected_at: new Date("2022-08-22T20:51:12Z"), connection_strength: 4, interaction_count: 57 },
            { connection_id: 20, user_id_1: 192, user_id_2: 62, connected_at: new Date("2023-04-17T15:33:03Z"), connection_strength: 1, interaction_count: 54 },
            { connection_id: 21, user_id_1: 81, user_id_2: 180, connected_at: new Date("2022-10-31T20:14:20Z"), connection_strength: 3, interaction_count: 36 },
            { connection_id: 22, user_id_1: 182, user_id_2: 155, connected_at: new Date("2022-02-04T13:06:37Z"), connection_strength: 4, interaction_count: 33 },
            { connection_id: 23, user_id_1: 195, user_id_2: 2, connected_at: new Date("2023-11-01T13:39:28Z"), connection_strength: 5, interaction_count: 48 },
            { connection_id: 24, user_id_1: 108, user_id_2: 162, connected_at: new Date("2022-07-29T14:09:36Z"), connection_strength: 3, interaction_count: 51 },
            { connection_id: 25, user_id_1: 166, user_id_2: 139, connected_at: new Date("2023-10-20T09:57:15Z"), connection_strength: 2, interaction_count: 57 },
            { connection_id: 26, user_id_1: 187, user_id_2: 26, connected_at: new Date("2021-12-22T11:31:25Z"), connection_strength: 1, interaction_count: 68 },
            { connection_id: 27, user_id_1: 172, user_id_2: 101, connected_at: new Date("2023-05-22T13:00:49Z"), connection_strength: 3, interaction_count: 73 },
            { connection_id: 28, user_id_1: 101, user_id_2: 7, connected_at: new Date("2022-05-18T20:48:18Z"), connection_strength: 5, interaction_count: 47 },
            { connection_id: 29, user_id_1: 156, user_id_2: 7, connected_at: new Date("2023-08-11T13:02:04Z"), connection_strength: 2, interaction_count: 62 },
            { connection_id: 30, user_id_1: 58, user_id_2: 29, connected_at: new Date("2021-10-29T08:57:25Z"), connection_strength: 2, interaction_count: 57 },
            { connection_id: 31, user_id_1: 40, user_id_2: 40, connected_at: new Date("2023-02-25T21:03:35Z"), connection_strength: 3, interaction_count: 67 },
            { connection_id: 32, user_id_1: 200, user_id_2: 45, connected_at: new Date("2023-09-27T16:37:51Z"), connection_strength: 5, interaction_count: 78 },
            { connection_id: 33, user_id_1: 78, user_id_2: 117, connected_at: new Date("2023-08-22T00:00:48Z"), connection_strength: 5, interaction_count: 29 },
            { connection_id: 34, user_id_1: 26, user_id_2: 152, connected_at: new Date("2022-04-14T20:24:38Z"), connection_strength: 5, interaction_count: 41 },
            { connection_id: 35, user_id_1: 153, user_id_2: 88, connected_at: new Date("2022-12-30T15:04:46Z"), connection_strength: 5, interaction_count: 30 },
            { connection_id: 36, user_id_1: 42, user_id_2: 64, connected_at: new Date("2023-06-19T13:37:53Z"), connection_strength: 5, interaction_count: 82 },
            { connection_id: 37, user_id_1: 115, user_id_2: 117, connected_at: new Date("2023-01-24T21:55:16Z"), connection_strength: 5, interaction_count: 37 },
            { connection_id: 38, user_id_1: 5, user_id_2: 35, connected_at: new Date("2021-09-02T20:50:24Z"), connection_strength: 2, interaction_count: 32 },
            { connection_id: 39, user_id_1: 116, user_id_2: 88, connected_at: new Date("2022-01-13T18:32:05Z"), connection_strength: 3, interaction_count: 44 },
            { connection_id: 40, user_id_1: 27, user_id_2: 145, connected_at: new Date("2023-05-28T18:54:48Z"), connection_strength: 5, interaction_count: 58 },
            { connection_id: 41, user_id_1: 61, user_id_2: 140, connected_at: new Date("2021-08-03T14:47:07Z"), connection_strength: 4, interaction_count: 30 },
            { connection_id: 42, user_id_1: 77, user_id_2: 47, connected_at: new Date("2021-04-08T17:44:02Z"), connection_strength: 3, interaction_count: 56 },
            { connection_id: 43, user_id_1: 149, user_id_2: 154, connected_at: new Date("2023-11-07T09:35:55Z"), connection_strength: 5, interaction_count: 72 },
            { connection_id: 44, user_id_1: 23, user_id_2: 17, connected_at: new Date("2022-04-01T19:36:12Z"), connection_strength: 5, interaction_count: 68 },
            { connection_id: 45, user_id_1: 163, user_id_2: 27, connected_at: new Date("2023-10-18T23:54:13Z"), connection_strength: 4, interaction_count: 22 },
            { connection_id: 46, user_id_1: 140, user_id_2: 176, connected_at: new Date("2022-04-27T19:34:21Z"), connection_strength: 2, interaction_count: 57 },
            { connection_id: 47, user_id_1: 25, user_id_2: 63, connected_at: new Date("2021-11-13T21:03:57Z"), connection_strength: 2, interaction_count: 69 },
            { connection_id: 48, user_id_1: 178, user_id_2: 21, connected_at: new Date("2021-11-02T13:54:32Z"), connection_strength: 1, interaction_count: 34 },
            { connection_id: 49, user_id_1: 36, user_id_2: 85, connected_at: new Date("2023-05-22T09:43:37Z"), connection_strength: 2, interaction_count: 52 },
            { connection_id: 50, user_id_1: 121, user_id_2: 177, connected_at: new Date("2022-03-09T17:45:09Z"), connection_strength: 4, interaction_count: 44 },
            { connection_id: 51, user_id_1: 122, user_id_2: 131, connected_at: new Date("2021-07-28T15:15:04Z"), connection_strength: 4, interaction_count: 48 },
            { connection_id: 52, user_id_1: 13, user_id_2: 46, connected_at: new Date("2021-04-09T09:03:01Z"), connection_strength: 5, interaction_count: 49 },
            { connection_id: 53, user_id_1: 101, user_id_2: 31, connected_at: new Date("2021-02-21T08:28:36Z"), connection_strength: 5, interaction_count: 58 },
            { connection_id: 54, user_id_1: 191, user_id_2: 13, connected_at: new Date("2022-05-20T12:56:15Z"), connection_strength: 4, interaction_count: 42 },
            { connection_id: 55, user_id_1: 148, user_id_2: 44, connected_at: new Date("2021-06-14T03:40:39Z"), connection_strength: 5, interaction_count: 76 },
            { connection_id: 56, user_id_1: 131, user_id_2: 52, connected_at: new Date("2021-12-19T10:56:20Z"), connection_strength: 5, interaction_count: 63 },
            { connection_id: 57, user_id_1: 126, user_id_2: 133, connected_at: new Date("2021-03-23T12:13:14Z"), connection_strength: 4, interaction_count: 33 },
            { connection_id: 58, user_id_1: 34, user_id_2: 3, connected_at: new Date("2021-02-12T19:47:32Z"), connection_strength: 4, interaction_count: 41 },
            { connection_id: 59, user_id_1: 21, user_id_2: 82, connected_at: new Date("2021-01-13T12:07:33Z"), connection_strength: 5, interaction_count: 75 },
            { connection_id: 60, user_id_1: 88, user_id_2: 175, connected_at: new Date("2022-01-17T18:24:49Z"), connection_strength: 4, interaction_count: 58 },
            { connection_id: 61, user_id_1: 46, user_id_2: 125, connected_at: new Date("2021-09-28T09:23:33Z"), connection_strength: 5, interaction_count: 75 },
            { connection_id: 62, user_id_1: 182, user_id_2: 179, connected_at: new Date("2022-05-24T20:55:58Z"), connection_strength: 5, interaction_count: 72 },
            { connection_id: 63, user_id_1: 109, user_id_2: 76, connected_at: new Date("2022-02-18T09:12:12Z"), connection_strength: 4, interaction_count: 59 },
            { connection_id: 64, user_id_1: 16, user_id_2: 18, connected_at: new Date("2023-01-05T10:00:29Z"), connection_strength: 5, interaction_count: 68 },
            { connection_id: 65, user_id_1: 139, user_id_2: 1, connected_at: new Date("2021-11-27T22:28:10Z"), connection_strength: 2, interaction_count: 44 },
            { connection_id: 66, user_id_1: 120, user_id_2: 170, connected_at: new Date("2023-10-19T18:21:43Z"), connection_strength: 3, interaction_count: 61 },
            { connection_id: 67, user_id_1: 110, user_id_2: 119, connected_at: new Date("2022-08-12T16:32:50Z"), connection_strength: 4, interaction_count: 58 },
            { connection_id: 68, user_id_1: 169, user_id_2: 77, connected_at: new Date("2022-11-01T16:41:33Z"), connection_strength: 3, interaction_count: 51 },
            { connection_id: 69, user_id_1: 161, user_id_2: 64, connected_at: new Date("2021-02-04T11:58:14Z"), connection_strength: 4, interaction_count: 63 },
            { connection_id: 70, user_id_1: 186, user_id_2: 154, connected_at: new Date("2022-09-22T21:24:45Z"), connection_strength: 3, interaction_count: 35 },
            { connection_id: 71, user_id_1: 111, user_id_2: 189, connected_at: new Date("2022-06-28T16:50:00Z"), connection_strength: 3, interaction_count: 57 },
            { connection_id: 72, user_id_1: 180, user_id_2: 87, connected_at: new Date("2022-10-01T11:11:38Z"), connection_strength: 5, interaction_count: 39 },
            { connection_id: 73, user_id_1: 7, user_id_2: 24, connected_at: new Date("2021-05-02T09:46:42Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 74, user_id_1: 63, user_id_2: 128, connected_at: new Date("2022-02-22T14:39:52Z"), connection_strength: 5, interaction_count: 52 },
            { connection_id: 75, user_id_1: 83, user_id_2: 58, connected_at: new Date("2023-02-09T22:56:41Z"), connection_strength: 4, interaction_count: 49 },
            { connection_id: 76, user_id_1: 177, user_id_2: 2, connected_at: new Date("2023-12-26T17:44:02Z"), connection_strength: 5, interaction_count: 56 },
            { connection_id: 77, user_id_1: 155, user_id_2: 65, connected_at: new Date("2021-04-04T15:03:04Z"), connection_strength: 5, interaction_count: 57 },
            { connection_id: 78, user_id_1: 5, user_id_2: 191, connected_at: new Date("2022-02-25T12:37:26Z"), connection_strength: 3, interaction_count: 49 },
            { connection_id: 79, user_id_1: 35, user_id_2: 3, connected_at: new Date("2022-10-21T20:25:30Z"), connection_strength: 2, interaction_count: 52 },
            { connection_id: 80, user_id_1: 30, user_id_2: 71, connected_at: new Date("2021-05-14T17:22:03Z"), connection_strength: 4, interaction_count: 47 },
            { connection_id: 81, user_id_1: 152, user_id_2: 107, connected_at: new Date("2023-08-17T12:25:05Z"), connection_strength: 2, interaction_count: 28 },
            { connection_id: 82, user_id_1: 197, user_id_2: 170, connected_at: new Date("2022-10-26T14:08:33Z"), connection_strength: 4, interaction_count: 37 },
            { connection_id: 83, user_id_1: 32, user_id_2: 134, connected_at: new Date("2022-03-06T21:05:28Z"), connection_strength: 4, interaction_count: 36 },
            { connection_id: 84, user_id_1: 195, user_id_2: 159, connected_at: new Date("2022-11-18T21:03:34Z"), connection_strength: 5, interaction_count: 46 },
            { connection_id: 85, user_id_1: 8, user_id_2: 157, connected_at: new Date("2021-05-28T08:12:04Z"), connection_strength: 3, interaction_count: 60 },
            { connection_id: 86, user_id_1: 8, user_id_2: 165, connected_at: new Date("2021-04-06T23:12:34Z"), connection_strength: 2, interaction_count: 52 },
            { connection_id: 87, user_id_1: 4, user_id_2: 70, connected_at: new Date("2022-07-23T17:30:23Z"), connection_strength: 2, interaction_count: 48 },
            { connection_id: 88, user_id_1: 63, user_id_2: 177, connected_at: new Date("2021-01-04T10:52:10Z"), connection_strength: 1, interaction_count: 53 },
            { connection_id: 89, user_id_1: 20, user_id_2: 170, connected_at: new Date("2023-03-05T20:33:49Z"), connection_strength: 3, interaction_count: 56 },
            { connection_id: 90, user_id_1: 185, user_id_2: 37, connected_at: new Date("2022-11-28T10:12:37Z"), connection_strength: 4, interaction_count: 8 },
            { connection_id: 91, user_id_1: 108, user_id_2: 177, connected_at: new Date("2023-05-02T20:21:23Z"), connection_strength: 2, interaction_count: 53 },
            { connection_id: 92, user_id_1: 37, user_id_2: 87, connected_at: new Date("2022-01-06T18:59:50Z"), connection_strength: 2, interaction_count: 54 },
            { connection_id: 93, user_id_1: 140, user_id_2: 103, connected_at: new Date("2022-10-24T19:10:47Z"), connection_strength: 4, interaction_count: 59 },
            { connection_id: 94, user_id_1: 56, user_id_2: 186, connected_at: new Date("2023-07-09T03:58:44Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 95, user_id_1: 24, user_id_2: 182, connected_at: new Date("2022-04-22T11:32:08Z"), connection_strength: 3, interaction_count: 49 },
            { connection_id: 96, user_id_1: 106, user_id_2: 123, connected_at: new Date("2023-03-11T00:51:25Z"), connection_strength: 3, interaction_count: 68 },
            { connection_id: 97, user_id_1: 34, user_id_2: 16, connected_at: new Date("2021-05-10T18:30:04Z"), connection_strength: 3, interaction_count: 38 },
            { connection_id: 98, user_id_1: 85, user_id_2: 121, connected_at: new Date("2022-07-10T19:10:33Z"), connection_strength: 5, interaction_count: 40 },
            { connection_id: 99, user_id_1: 71, user_id_2: 154, connected_at: new Date("2022-08-19T18:49:45Z"), connection_strength: 4, interaction_count: 79 },
            { connection_id: 100, user_id_1: 76, user_id_2: 139, connected_at: new Date("2023-05-15T10:08:02Z"), connection_strength: 3, interaction_count: 37 },
            { connection_id: 101, user_id_1: 53, user_id_2: 32, connected_at: new Date("2023-11-07T09:37:18Z"), connection_strength: 2, interaction_count: 40 },
            { connection_id: 102, user_id_1: 37, user_id_2: 124, connected_at: new Date("2021-03-20T20:27:59Z"), connection_strength: 4, interaction_count: 28 },
            { connection_id: 103, user_id_1: 38, user_id_2: 22, connected_at: new Date("2021-01-05T09:27:32Z"), connection_strength: 5, interaction_count: 35 },
            { connection_id: 104, user_id_1: 33, user_id_2: 156, connected_at: new Date("2022-12-12T17:23:48Z"), connection_strength: 3, interaction_count: 72 },
            { connection_id: 105, user_id_1: 120, user_id_2: 167, connected_at: new Date("2021-07-09T14:48:58Z"), connection_strength: 4, interaction_count: 56 },
            { connection_id: 106, user_id_1: 156, user_id_2: 61, connected_at: new Date("2022-01-15T16:07:13Z"), connection_strength: 5, interaction_count: 49 },
            { connection_id: 107, user_id_1: 71, user_id_2: 41, connected_at: new Date("2021-09-07T10:40:09Z"), connection_strength: 3, interaction_count: 37 },
            { connection_id: 108, user_id_1: 78, user_id_2: 106, connected_at: new Date("2023-06-11T16:47:24Z"), connection_strength: 5, interaction_count: 44 },
            { connection_id: 109, user_id_1: 121, user_id_2: 73, connected_at: new Date("2021-03-01T19:29:07Z"), connection_strength: 2, interaction_count: 39 },
            { connection_id: 110, user_id_1: 159, user_id_2: 95, connected_at: new Date("2022-11-10T12:11:16Z"), connection_strength: 3, interaction_count: 47 },
            { connection_id: 111, user_id_1: 152, user_id_2: 71, connected_at: new Date("2021-09-26T16:52:19Z"), connection_strength: 5, interaction_count: 52 },
            { connection_id: 112, user_id_1: 70, user_id_2: 186, connected_at: new Date("2022-02-03T14:14:35Z"), connection_strength: 1, interaction_count: 69 },
            { connection_id: 113, user_id_1: 156, user_id_2: 177, connected_at: new Date("2021-12-18T12:30:13Z"), connection_strength: 5, interaction_count: 37 },
            { connection_id: 114, user_id_1: 61, user_id_2: 85, connected_at: new Date("2022-05-18T14:18:00Z"), connection_strength: 4, interaction_count: 50 },
            { connection_id: 115, user_id_1: 58, user_id_2: 17, connected_at: new Date("2021-05-19T15:39:26Z"), connection_strength: 3, interaction_count: 58 },
            { connection_id: 116, user_id_1: 44, user_id_2: 172, connected_at: new Date("2023-05-10T18:36:33Z"), connection_strength: 5, interaction_count: 53 },
            { connection_id: 117, user_id_1: 93, user_id_2: 180, connected_at: new Date("2022-09-27T07:43:33Z"), connection_strength: 5, interaction_count: 57 },
            { connection_id: 118, user_id_1: 22, user_id_2: 61, connected_at: new Date("2021-12-02T17:11:37Z"), connection_strength: 5, interaction_count: 60 },
            { connection_id: 119, user_id_1: 78, user_id_2: 117, connected_at: new Date("2021-06-09T14:10:47Z"), connection_strength: 5, interaction_count: 62 },
            { connection_id: 120, user_id_1: 61, user_id_2: 132, connected_at: new Date("2022-11-09T19:44:54Z"), connection_strength: 4, interaction_count: 77 },
            { connection_id: 121, user_id_1: 20, user_id_2: 47, connected_at: new Date("2022-12-10T13:49:55Z"), connection_strength: 4, interaction_count: 42 },
            { connection_id: 122, user_id_1: 8, user_id_2: 184, connected_at: new Date("2021-06-16T09:55:46Z"), connection_strength: 4, interaction_count: 53 },
            { connection_id: 123, user_id_1: 34, user_id_2: 155, connected_at: new Date("2021-09-02T16:24:14Z"), connection_strength: 3, interaction_count: 55 },
            { connection_id: 124, user_id_1: 15, user_id_2: 43, connected_at: new Date("2023-12-31T07:36:00Z"), connection_strength: 4, interaction_count: 65 },
            { connection_id: 125, user_id_1: 185, user_id_2: 10, connected_at: new Date("2023-12-31T13:31:04Z"), connection_strength: 5, interaction_count: 53 },
            { connection_id: 126, user_id_1: 36, user_id_2: 125, connected_at: new Date("2023-10-19T00:36:55Z"), connection_strength: 3, interaction_count: 59 },
            { connection_id: 127, user_id_1: 28, user_id_2: 25, connected_at: new Date("2023-07-18T12:02:09Z"), connection_strength: 5, interaction_count: 44 },
            { connection_id: 128, user_id_1: 163, user_id_2: 149, connected_at: new Date("2022-12-06T13:55:27Z"), connection_strength: 2, interaction_count: 44 },
            { connection_id: 129, user_id_1: 6, user_id_2: 98, connected_at: new Date("2021-12-10T12:21:26Z"), connection_strength: 3, interaction_count: 50 },
            { connection_id: 130, user_id_1: 128, user_id_2: 146, connected_at: new Date("2023-01-02T18:08:59Z"), connection_strength: 2, interaction_count: 51 },
            { connection_id: 131, user_id_1: 45, user_id_2: 175, connected_at: new Date("2021-06-16T16:45:17Z"), connection_strength: 5, interaction_count: 74 },
            { connection_id: 132, user_id_1: 68, user_id_2: 67, connected_at: new Date("2022-01-31T15:20:01Z"), connection_strength: 4, interaction_count: 55 },
            { connection_id: 133, user_id_1: 65, user_id_2: 109, connected_at: new Date("2022-08-01T20:37:13Z"), connection_strength: 4, interaction_count: 58 },
            { connection_id: 134, user_id_1: 35, user_id_2: 1, connected_at: new Date("2021-06-10T20:53:43Z"), connection_strength: 2, interaction_count: 36 },
            { connection_id: 135, user_id_1: 138, user_id_2: 37, connected_at: new Date("2022-11-10T16:37:47Z"), connection_strength: 2, interaction_count: 69 },
            { connection_id: 136, user_id_1: 189, user_id_2: 197, connected_at: new Date("2022-07-19T07:34:10Z"), connection_strength: 2, interaction_count: 47 },
            { connection_id: 137, user_id_1: 144, user_id_2: 188, connected_at: new Date("2023-08-26T12:16:39Z"), connection_strength: 4, interaction_count: 47 },
            { connection_id: 138, user_id_1: 107, user_id_2: 98, connected_at: new Date("2022-11-18T16:57:42Z"), connection_strength: 1, interaction_count: 55 },
            { connection_id: 139, user_id_1: 198, user_id_2: 199, connected_at: new Date("2022-09-24T08:41:40Z"), connection_strength: 4, interaction_count: 49 },
            { connection_id: 140, user_id_1: 173, user_id_2: 99, connected_at: new Date("2023-06-25T09:12:21Z"), connection_strength: 3, interaction_count: 66 },
            { connection_id: 141, user_id_1: 74, user_id_2: 44, connected_at: new Date("2021-12-20T12:37:30Z"), connection_strength: 1, interaction_count: 54 },
            { connection_id: 142, user_id_1: 63, user_id_2: 190, connected_at: new Date("2021-10-14T12:04:03Z"), connection_strength: 1, interaction_count: 69 },
            { connection_id: 143, user_id_1: 120, user_id_2: 68, connected_at: new Date("2022-10-27T18:02:57Z"), connection_strength: 3, interaction_count: 32 },
            { connection_id: 144, user_id_1: 91, user_id_2: 78, connected_at: new Date("2021-07-24T07:34:04Z"), connection_strength: 5, interaction_count: 30 },
            { connection_id: 145, user_id_1: 142, user_id_2: 177, connected_at: new Date("2022-01-08T14:05:36Z"), connection_strength: 4, interaction_count: 44 },
            { connection_id: 146, user_id_1: 113, user_id_2: 31, connected_at: new Date("2022-11-28T06:34:43Z"), connection_strength: 5, interaction_count: 35 },
            { connection_id: 147, user_id_1: 7, user_id_2: 81, connected_at: new Date("2021-06-22T19:24:50Z"), connection_strength: 2, interaction_count: 38 },
            { connection_id: 148, user_id_1: 161, user_id_2: 145, connected_at: new Date("2022-07-10T15:24:44Z"), connection_strength: 5, interaction_count: 66 },
            { connection_id: 149, user_id_1: 55, user_id_2: 133, connected_at: new Date("2023-04-24T19:37:23Z"), connection_strength: 5, interaction_count: 66 },
            { connection_id: 150, user_id_1: 180, user_id_2: 167, connected_at: new Date("2023-08-03T13:17:37Z"), connection_strength: 3, interaction_count: 59 },
            { connection_id: 151, user_id_1: 34, user_id_2: 59, connected_at: new Date("2022-04-09T15:43:44Z"), connection_strength: 4, interaction_count: 43 },
            { connection_id: 152, user_id_1: 198, user_id_2: 22, connected_at: new Date("2022-03-23T17:35:00Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 153, user_id_1: 156, user_id_2: 25, connected_at: new Date("2023-12-26T03:34:27Z"), connection_strength: 3, interaction_count: 39 },
            { connection_id: 154, user_id_1: 152, user_id_2: 19, connected_at: new Date("2021-09-26T09:26:04Z"), connection_strength: 5, interaction_count: 66 },
            { connection_id: 155, user_id_1: 177, user_id_2: 6, connected_at: new Date("2021-01-09T19:06:30Z"), connection_strength: 4, interaction_count: 48 },
            { connection_id: 156, user_id_1: 172, user_id_2: 155, connected_at: new Date("2022-11-18T04:44:03Z"), connection_strength: 4, interaction_count: 64 },
            { connection_id: 157, user_id_1: 10, user_id_2: 127, connected_at: new Date("2021-08-16T11:17:52Z"), connection_strength: 3, interaction_count: 81 },
            { connection_id: 158, user_id_1: 189, user_id_2: 143, connected_at: new Date("2021-02-15T06:31:39Z"), connection_strength: 5, interaction_count: 52 },
            { connection_id: 159, user_id_1: 162, user_id_2: 156, connected_at: new Date("2023-08-23T12:43:28Z"), connection_strength: 1, interaction_count: 61 },
            { connection_id: 160, user_id_1: 32, user_id_2: 61, connected_at: new Date("2023-04-20T20:06:02Z"), connection_strength: 5, interaction_count: 80 },
            { connection_id: 161, user_id_1: 162, user_id_2: 115, connected_at: new Date("2021-09-19T11:29:51Z"), connection_strength: 5, interaction_count: 52 },
            { connection_id: 162, user_id_1: 19, user_id_2: 83, connected_at: new Date("2023-04-18T20:49:57Z"), connection_strength: 2, interaction_count: 52 },
            { connection_id: 163, user_id_1: 30, user_id_2: 22, connected_at: new Date("2022-01-28T14:49:27Z"), connection_strength: 4, interaction_count: 33 },
            { connection_id: 164, user_id_1: 156, user_id_2: 89, connected_at: new Date("2023-09-05T12:39:48Z"), connection_strength: 4, interaction_count: 43 },
            { connection_id: 165, user_id_1: 23, user_id_2: 37, connected_at: new Date("2023-11-06T09:41:42Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 166, user_id_1: 15, user_id_2: 48, connected_at: new Date("2021-10-10T08:34:53Z"), connection_strength: 2, interaction_count: 27 },
            { connection_id: 167, user_id_1: 153, user_id_2: 67, connected_at: new Date("2021-07-22T07:49:44Z"), connection_strength: 2, interaction_count: 50 },
            { connection_id: 168, user_id_1: 143, user_id_2: 179, connected_at: new Date("2022-08-20T21:47:17Z"), connection_strength: 3, interaction_count: 43 },
            { connection_id: 169, user_id_1: 20, user_id_2: 145, connected_at: new Date("2021-02-06T17:03:55Z"), connection_strength: 2, interaction_count: 55 },
            { connection_id: 170, user_id_1: 34, user_id_2: 103, connected_at: new Date("2022-04-29T18:11:28Z"), connection_strength: 2, interaction_count: 46 },
            { connection_id: 171, user_id_1: 156, user_id_2: 77, connected_at: new Date("2022-02-16T09:26:56Z"), connection_strength: 5, interaction_count: 11 },
            { connection_id: 172, user_id_1: 53, user_id_2: 28, connected_at: new Date("2022-03-20T14:37:51Z"), connection_strength: 3, interaction_count: 24 },
            { connection_id: 173, user_id_1: 20, user_id_2: 13, connected_at: new Date("2023-04-07T17:33:17Z"), connection_strength: 2, interaction_count: 26 },
            { connection_id: 174, user_id_1: 131, user_id_2: 170, connected_at: new Date("2021-05-16T09:46:38Z"), connection_strength: 5, interaction_count: 44 },
            { connection_id: 175, user_id_1: 90, user_id_2: 7, connected_at: new Date("2022-02-05T22:00:58Z"), connection_strength: 2, interaction_count: 47 },
            { connection_id: 176, user_id_1: 80, user_id_2: 99, connected_at: new Date("2023-07-23T23:13:10Z"), connection_strength: 4, interaction_count: 60 },
            { connection_id: 177, user_id_1: 119, user_id_2: 27, connected_at: new Date("2022-07-27T11:08:41Z"), connection_strength: 4, interaction_count: 66 },
            { connection_id: 178, user_id_1: 25, user_id_2: 82, connected_at: new Date("2023-02-15T00:14:59Z"), connection_strength: 2, interaction_count: 61 },
            { connection_id: 179, user_id_1: 57, user_id_2: 11, connected_at: new Date("2021-04-26T11:13:29Z"), connection_strength: 4, interaction_count: 48 },
            { connection_id: 180, user_id_1: 69, user_id_2: 126, connected_at: new Date("2023-11-04T18:34:19Z"), connection_strength: 3, interaction_count: 42 },
            { connection_id: 181, user_id_1: 123, user_id_2: 61, connected_at: new Date("2022-11-06T19:18:43Z"), connection_strength: 1, interaction_count: 19 },
            { connection_id: 182, user_id_1: 16, user_id_2: 62, connected_at: new Date("2023-09-18T09:16:20Z"), connection_strength: 4, interaction_count: 30 },
            { connection_id: 183, user_id_1: 154, user_id_2: 82, connected_at: new Date("2022-04-16T16:56:53Z"), connection_strength: 2, interaction_count: 43 },
            { connection_id: 184, user_id_1: 178, user_id_2: 90, connected_at: new Date("2021-05-02T12:00:24Z"), connection_strength: 3, interaction_count: 46 },
            { connection_id: 185, user_id_1: 64, user_id_2: 73, connected_at: new Date("2021-12-28T19:50:22Z"), connection_strength: 4, interaction_count: 21 },
            { connection_id: 186, user_id_1: 188, user_id_2: 5, connected_at: new Date("2023-07-15T08:37:24Z"), connection_strength: 5, interaction_count: 34 },
            { connection_id: 187, user_id_1: 100, user_id_2: 9, connected_at: new Date("2021-03-30T09:17:11Z"), connection_strength: 5, interaction_count: 36 },
            { connection_id: 188, user_id_1: 40, user_id_2: 147, connected_at: new Date("2023-09-28T12:44:32Z"), connection_strength: 1, interaction_count: 25 },
            { connection_id: 189, user_id_1: 42, user_id_2: 178, connected_at: new Date("2022-09-11T12:30:55Z"), connection_strength: 2, interaction_count: 46 },
            { connection_id: 190, user_id_1: 71, user_id_2: 19, connected_at: new Date("2022-08-01T13:46:04Z"), connection_strength: 3, interaction_count: 36 },
            { connection_id: 191, user_id_1: 46, user_id_2: 100, connected_at: new Date("2023-10-13T19:52:27Z"), connection_strength: 4, interaction_count: 70 },
            { connection_id: 192, user_id_1: 107, user_id_2: 171, connected_at: new Date("2022-03-09T09:00:26Z"), connection_strength: 1, interaction_count: 35 },
            { connection_id: 193, user_id_1: 158, user_id_2: 95, connected_at: new Date("2021-04-25T22:09:06Z"), connection_strength: 3, interaction_count: 53 },
            { connection_id: 194, user_id_1: 191, user_id_2: 24, connected_at: new Date("2021-10-07T14:49:13Z"), connection_strength: 1, interaction_count: 49 },
            { connection_id: 195, user_id_1: 90, user_id_2: 197, connected_at: new Date("2022-05-24T10:30:34Z"), connection_strength: 2, interaction_count: 45 },
            { connection_id: 196, user_id_1: 37, user_id_2: 77, connected_at: new Date("2023-09-30T16:09:16Z"), connection_strength: 5, interaction_count: 79 },
            { connection_id: 197, user_id_1: 130, user_id_2: 93, connected_at: new Date("2021-05-26T19:31:34Z"), connection_strength: 5, interaction_count: 32 },
            { connection_id: 198, user_id_1: 44, user_id_2: 153, connected_at: new Date("2022-02-25T17:16:51Z"), connection_strength: 5, interaction_count: 65 },
            { connection_id: 199, user_id_1: 35, user_id_2: 14, connected_at: new Date("2022-11-17T05:02:19Z"), connection_strength: 3, interaction_count: 72 },
            { connection_id: 200, user_id_1: 101, user_id_2: 73, connected_at: new Date("2021-12-16T08:21:41Z"), connection_strength: 5, interaction_count: 60 },
            { connection_id: 201, user_id_1: 148, user_id_2: 37, connected_at: new Date("2022-09-25T12:48:46Z"), connection_strength: 4, interaction_count: 39 },
            { connection_id: 202, user_id_1: 81, user_id_2: 188, connected_at: new Date("2021-07-16T18:32:04Z"), connection_strength: 4, interaction_count: 60 },
            { connection_id: 203, user_id_1: 75, user_id_2: 127, connected_at: new Date("2023-03-18T22:00:48Z"), connection_strength: 1, interaction_count: 63 },
            { connection_id: 204, user_id_1: 175, user_id_2: 121, connected_at: new Date("2022-12-26T20:50:17Z"), connection_strength: 1, interaction_count: 63 },
            { connection_id: 205, user_id_1: 170, user_id_2: 34, connected_at: new Date("2021-02-11T17:13:34Z"), connection_strength: 5, interaction_count: 64 },
            { connection_id: 206, user_id_1: 193, user_id_2: 41, connected_at: new Date("2022-11-15T19:53:53Z"), connection_strength: 3, interaction_count: 44 },
            { connection_id: 207, user_id_1: 163, user_id_2: 34, connected_at: new Date("2023-10-07T14:00:54Z"), connection_strength: 3, interaction_count: 52 },
            { connection_id: 208, user_id_1: 41, user_id_2: 160, connected_at: new Date("2023-04-24T17:53:48Z"), connection_strength: 3, interaction_count: 24 },
            { connection_id: 209, user_id_1: 90, user_id_2: 60, connected_at: new Date("2021-10-30T08:08:45Z"), connection_strength: 5, interaction_count: 46 },
            { connection_id: 210, user_id_1: 123, user_id_2: 167, connected_at: new Date("2023-03-25T20:02:46Z"), connection_strength: 5, interaction_count: 21 },
            { connection_id: 211, user_id_1: 155, user_id_2: 146, connected_at: new Date("2022-04-30T15:49:14Z"), connection_strength: 5, interaction_count: 42 },
            { connection_id: 212, user_id_1: 92, user_id_2: 102, connected_at: new Date("2023-05-22T10:12:02Z"), connection_strength: 1, interaction_count: 51 },
            { connection_id: 213, user_id_1: 34, user_id_2: 173, connected_at: new Date("2021-03-21T21:40:41Z"), connection_strength: 5, interaction_count: 40 },
            { connection_id: 214, user_id_1: 142, user_id_2: 180, connected_at: new Date("2021-06-20T14:23:33Z"), connection_strength: 2, interaction_count: 82 },
            { connection_id: 215, user_id_1: 126, user_id_2: 132, connected_at: new Date("2021-06-04T18:02:06Z"), connection_strength: 3, interaction_count: 55 },
            { connection_id: 216, user_id_1: 166, user_id_2: 194, connected_at: new Date("2023-11-29T14:34:19Z"), connection_strength: 5, interaction_count: 53 },
            { connection_id: 217, user_id_1: 53, user_id_2: 179, connected_at: new Date("2022-12-14T02:53:51Z"), connection_strength: 4, interaction_count: 41 },
            { connection_id: 218, user_id_1: 138, user_id_2: 61, connected_at: new Date("2023-06-05T18:59:37Z"), connection_strength: 3, interaction_count: 50 },
            { connection_id: 219, user_id_1: 185, user_id_2: 106, connected_at: new Date("2021-07-27T20:41:52Z"), connection_strength: 4, interaction_count: 62 },
            { connection_id: 220, user_id_1: 8, user_id_2: 96, connected_at: new Date("2021-10-28T09:47:27Z"), connection_strength: 3, interaction_count: 70 },
            { connection_id: 221, user_id_1: 45, user_id_2: 5, connected_at: new Date("2023-04-04T21:06:48Z"), connection_strength: 5, interaction_count: 33 },
            { connection_id: 222, user_id_1: 172, user_id_2: 94, connected_at: new Date("2021-08-26T09:27:16Z"), connection_strength: 3, interaction_count: 69 },
            { connection_id: 223, user_id_1: 127, user_id_2: 117, connected_at: new Date("2023-09-09T19:05:58Z"), connection_strength: 5, interaction_count: 73 },
            { connection_id: 224, user_id_1: 39, user_id_2: 163, connected_at: new Date("2023-03-25T20:15:48Z"), connection_strength: 3, interaction_count: 31 },
            { connection_id: 225, user_id_1: 5, user_id_2: 138, connected_at: new Date("2023-03-13T09:19:16Z"), connection_strength: 1, interaction_count: 79 },
            { connection_id: 226, user_id_1: 108, user_id_2: 155, connected_at: new Date("2022-07-28T08:46:36Z"), connection_strength: 5, interaction_count: 52 },
            { connection_id: 227, user_id_1: 64, user_id_2: 30, connected_at: new Date("2022-02-17T20:23:01Z"), connection_strength: 5, interaction_count: 38 },
            { connection_id: 228, user_id_1: 125, user_id_2: 60, connected_at: new Date("2023-12-23T10:49:57Z"), connection_strength: 1, interaction_count: 26 },
            { connection_id: 229, user_id_1: 33, user_id_2: 163, connected_at: new Date("2021-01-02T11:56:41Z"), connection_strength: 2, interaction_count: 43 },
            { connection_id: 230, user_id_1: 149, user_id_2: 96, connected_at: new Date("2021-10-09T12:56:27Z"), connection_strength: 4, interaction_count: 43 },
            { connection_id: 231, user_id_1: 184, user_id_2: 47, connected_at: new Date("2022-10-20T12:02:22Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 232, user_id_1: 55, user_id_2: 173, connected_at: new Date("2023-11-26T14:44:25Z"), connection_strength: 2, interaction_count: 37 },
            { connection_id: 233, user_id_1: 121, user_id_2: 83, connected_at: new Date("2022-06-16T17:17:36Z"), connection_strength: 5, interaction_count: 33 },
            { connection_id: 234, user_id_1: 192, user_id_2: 42, connected_at: new Date("2023-09-05T16:46:42Z"), connection_strength: 3, interaction_count: 79 },
            { connection_id: 235, user_id_1: 173, user_id_2: 183, connected_at: new Date("2023-10-17T17:53:32Z"), connection_strength: 4, interaction_count: 45 },
            { connection_id: 236, user_id_1: 33, user_id_2: 104, connected_at: new Date("2021-08-18T01:04:18Z"), connection_strength: 3, interaction_count: 29 },
            { connection_id: 237, user_id_1: 136, user_id_2: 162, connected_at: new Date("2022-03-07T18:48:41Z"), connection_strength: 3, interaction_count: 47 },
            { connection_id: 238, user_id_1: 99, user_id_2: 102, connected_at: new Date("2023-03-29T15:20:38Z"), connection_strength: 5, interaction_count: 48 },
            { connection_id: 239, user_id_1: 147, user_id_2: 194, connected_at: new Date("2022-04-29T13:04:31Z"), connection_strength: 3, interaction_count: 58 },
            { connection_id: 240, user_id_1: 159, user_id_2: 4, connected_at: new Date("2022-01-07T16:04:17Z"), connection_strength: 1, interaction_count: 37 },
            { connection_id: 241, user_id_1: 86, user_id_2: 66, connected_at: new Date("2021-09-29T23:05:43Z"), connection_strength: 4, interaction_count: 31 },
            { connection_id: 242, user_id_1: 66, user_id_2: 182, connected_at: new Date("2023-07-22T20:29:09Z"), connection_strength: 5, interaction_count: 63 },
            { connection_id: 243, user_id_1: 200, user_id_2: 47, connected_at: new Date("2022-04-07T12:59:40Z"), connection_strength: 4, interaction_count: 63 },
            { connection_id: 244, user_id_1: 88, user_id_2: 161, connected_at: new Date("2021-06-16T08:41:17Z"), connection_strength: 2, interaction_count: 75 },
            { connection_id: 245, user_id_1: 157, user_id_2: 15, connected_at: new Date("2023-12-07T15:13:41Z"), connection_strength: 5, interaction_count: 75 },
            { connection_id: 246, user_id_1: 128, user_id_2: 64, connected_at: new Date("2023-04-11T23:41:57Z"), connection_strength: 5, interaction_count: 33 },
            { connection_id: 247, user_id_1: 93, user_id_2: 34, connected_at: new Date("2021-04-02T19:25:42Z"), connection_strength: 5, interaction_count: 41 },
            { connection_id: 248, user_id_1: 40, user_id_2: 60, connected_at: new Date("2022-09-18T06:29:43Z"), connection_strength: 5, interaction_count: 73 },
            { connection_id: 249, user_id_1: 118, user_id_2: 110, connected_at: new Date("2021-11-18T20:13:10Z"), connection_strength: 2, interaction_count: 49 },
            { connection_id: 250, user_id_1: 55, user_id_2: 132, connected_at: new Date("2022-02-12T14:09:23Z"), connection_strength: 4, interaction_count: 36 },
            { connection_id: 251, user_id_1: 147, user_id_2: 65, connected_at: new Date("2022-06-29T10:06:47Z"), connection_strength: 4, interaction_count: 68 },
            { connection_id: 252, user_id_1: 78, user_id_2: 144, connected_at: new Date("2023-02-09T11:17:02Z"), connection_strength: 1, interaction_count: 72 },
            { connection_id: 253, user_id_1: 30, user_id_2: 142, connected_at: new Date("2022-11-21T13:26:07Z"), connection_strength: 5, interaction_count: 42 },
            { connection_id: 254, user_id_1: 182, user_id_2: 168, connected_at: new Date("2021-12-30T08:03:44Z"), connection_strength: 4, interaction_count: 17 },
            { connection_id: 255, user_id_1: 106, user_id_2: 12, connected_at: new Date("2022-10-04T22:51:27Z"), connection_strength: 4, interaction_count: 53 },
            { connection_id: 256, user_id_1: 131, user_id_2: 74, connected_at: new Date("2023-06-30T12:07:47Z"), connection_strength: 4, interaction_count: 61 },
            { connection_id: 257, user_id_1: 139, user_id_2: 28, connected_at: new Date("2022-11-08T16:29:09Z"), connection_strength: 5, interaction_count: 47 },
            { connection_id: 258, user_id_1: 2, user_id_2: 162, connected_at: new Date("2023-02-05T19:19:04Z"), connection_strength: 5, interaction_count: 45 },
            { connection_id: 259, user_id_1: 40, user_id_2: 113, connected_at: new Date("2023-06-16T19:26:24Z"), connection_strength: 2, interaction_count: 46 },
            { connection_id: 260, user_id_1: 59, user_id_2: 54, connected_at: new Date("2021-07-29T19:56:32Z"), connection_strength: 1, interaction_count: 58 },
            { connection_id: 261, user_id_1: 93, user_id_2: 41, connected_at: new Date("2021-11-02T10:20:46Z"), connection_strength: 4, interaction_count: 51 },
            { connection_id: 262, user_id_1: 18, user_id_2: 72, connected_at: new Date("2021-03-19T12:29:27Z"), connection_strength: 4, interaction_count: 59 },
            { connection_id: 263, user_id_1: 72, user_id_2: 14, connected_at: new Date("2022-03-10T07:19:53Z"), connection_strength: 4, interaction_count: 35 },
            { connection_id: 264, user_id_1: 190, user_id_2: 28, connected_at: new Date("2022-10-09T16:57:56Z"), connection_strength: 5, interaction_count: 61 },
            { connection_id: 265, user_id_1: 77, user_id_2: 35, connected_at: new Date("2021-01-11T16:13:16Z"), connection_strength: 5, interaction_count: 45 },
            { connection_id: 266, user_id_1: 121, user_id_2: 149, connected_at: new Date("2023-03-18T09:28:36Z"), connection_strength: 2, interaction_count: 38 },
            { connection_id: 267, user_id_1: 111, user_id_2: 74, connected_at: new Date("2021-10-29T09:49:31Z"), connection_strength: 1, interaction_count: 35 },
            { connection_id: 268, user_id_1: 134, user_id_2: 112, connected_at: new Date("2022-02-10T15:12:56Z"), connection_strength: 5, interaction_count: 72 },
            { connection_id: 269, user_id_1: 16, user_id_2: 113, connected_at: new Date("2023-07-30T16:27:50Z"), connection_strength: 1, interaction_count: 32 },
            { connection_id: 270, user_id_1: 90, user_id_2: 93, connected_at: new Date("2021-07-04T16:37:51Z"), connection_strength: 4, interaction_count: 31 },
            { connection_id: 271, user_id_1: 44, user_id_2: 123, connected_at: new Date("2022-08-20T19:52:55Z"), connection_strength: 3, interaction_count: 28 },
            { connection_id: 272, user_id_1: 48, user_id_2: 183, connected_at: new Date("2023-12-18T10:05:56Z"), connection_strength: 4, interaction_count: 77 },
            { connection_id: 273, user_id_1: 158, user_id_2: 116, connected_at: new Date("2021-04-17T20:18:50Z"), connection_strength: 5, interaction_count: 57 },
            { connection_id: 274, user_id_1: 151, user_id_2: 194, connected_at: new Date("2022-07-25T17:07:36Z"), connection_strength: 4, interaction_count: 58 },
            { connection_id: 275, user_id_1: 150, user_id_2: 195, connected_at: new Date("2023-11-17T11:27:51Z"), connection_strength: 5, interaction_count: 58 },
            { connection_id: 276, user_id_1: 166, user_id_2: 76, connected_at: new Date("2021-05-16T00:10:34Z"), connection_strength: 2, interaction_count: 37 },
            { connection_id: 277, user_id_1: 91, user_id_2: 51, connected_at: new Date("2023-04-05T11:41:02Z"), connection_strength: 3, interaction_count: 40 },
            { connection_id: 278, user_id_1: 40, user_id_2: 24, connected_at: new Date("2023-10-10T11:01:20Z"), connection_strength: 2, interaction_count: 65 },
            { connection_id: 279, user_id_1: 154, user_id_2: 49, connected_at: new Date("2022-07-06T16:36:07Z"), connection_strength: 4, interaction_count: 43 },
            { connection_id: 280, user_id_1: 134, user_id_2: 126, connected_at: new Date("2023-03-10T21:35:28Z"), connection_strength: 5, interaction_count: 68 },
            { connection_id: 281, user_id_1: 71, user_id_2: 97, connected_at: new Date("2021-04-02T17:00:13Z"), connection_strength: 2, interaction_count: 20 },
            { connection_id: 282, user_id_1: 38, user_id_2: 26, connected_at: new Date("2023-01-10T17:59:36Z"), connection_strength: 5, interaction_count: 57 },
            { connection_id: 283, user_id_1: 68, user_id_2: 199, connected_at: new Date("2023-05-27T13:37:08Z"), connection_strength: 3, interaction_count: 72 },
            { connection_id: 284, user_id_1: 14, user_id_2: 81, connected_at: new Date("2022-03-23T10:31:17Z"), connection_strength: 5, interaction_count: 41 },
            { connection_id: 285, user_id_1: 167, user_id_2: 170, connected_at: new Date("2022-09-19T10:49:14Z"), connection_strength: 5, interaction_count: 52 },
            { connection_id: 286, user_id_1: 196, user_id_2: 45, connected_at: new Date("2021-07-14T13:42:39Z"), connection_strength: 2, interaction_count: 60 },
            { connection_id: 287, user_id_1: 35, user_id_2: 175, connected_at: new Date("2021-08-03T19:19:39Z"), connection_strength: 5, interaction_count: 36 },
            { connection_id: 288, user_id_1: 35, user_id_2: 175, connected_at: new Date("2023-09-09T18:44:29Z"), connection_strength: 5, interaction_count: 66 },
            { connection_id: 289, user_id_1: 5, user_id_2: 195, connected_at: new Date("2022-04-15T12:07:02Z"), connection_strength: 5, interaction_count: 50 },
            { connection_id: 290, user_id_1: 53, user_id_2: 137, connected_at: new Date("2023-07-24T16:56:23Z"), connection_strength: 5, interaction_count: 50 },
            { connection_id: 291, user_id_1: 129, user_id_2: 15, connected_at: new Date("2021-02-15T14:26:30Z"), connection_strength: 5, interaction_count: 55 },
            { connection_id: 292, user_id_1: 173, user_id_2: 191, connected_at: new Date("2022-06-13T18:26:58Z"), connection_strength: 1, interaction_count: 48 },
            { connection_id: 293, user_id_1: 60, user_id_2: 63, connected_at: new Date("2022-09-27T01:21:12Z"), connection_strength: 5, interaction_count: 68 },
            { connection_id: 294, user_id_1: 155, user_id_2: 4, connected_at: new Date("2021-10-27T22:19:25Z"), connection_strength: 5, interaction_count: 30 },
            { connection_id: 295, user_id_1: 123, user_id_2: 121, connected_at: new Date("2022-02-21T09:40:41Z"), connection_strength: 1, interaction_count: 52 },
            { connection_id: 296, user_id_1: 125, user_id_2: 3, connected_at: new Date("2021-03-18T20:36:08Z"), connection_strength: 4, interaction_count: 37 },
            { connection_id: 297, user_id_1: 127, user_id_2: 160, connected_at: new Date("2021-03-18T21:26:33Z"), connection_strength: 5, interaction_count: 29 },
            { connection_id: 298, user_id_1: 183, user_id_2: 53, connected_at: new Date("2023-09-11T18:49:03Z"), connection_strength: 3, interaction_count: 63 },
            { connection_id: 299, user_id_1: 80, user_id_2: 122, connected_at: new Date("2022-02-19T17:42:05Z"), connection_strength: 1, interaction_count: 46 },
            { connection_id: 300, user_id_1: 47, user_id_2: 158, connected_at: new Date("2021-07-28T03:36:41Z"), connection_strength: 2, interaction_count: 53 },
            { connection_id: 301, user_id_1: 40, user_id_2: 94, connected_at: new Date("2023-03-17T07:51:40Z"), connection_strength: 3, interaction_count: 26 },
            { connection_id: 302, user_id_1: 32, user_id_2: 145, connected_at: new Date("2023-09-27T10:26:51Z"), connection_strength: 1, interaction_count: 49 },
            { connection_id: 303, user_id_1: 133, user_id_2: 81, connected_at: new Date("2023-09-25T05:22:49Z"), connection_strength: 4, interaction_count: 48 },
            { connection_id: 304, user_id_1: 198, user_id_2: 188, connected_at: new Date("2023-01-14T21:18:56Z"), connection_strength: 5, interaction_count: 44 },
            { connection_id: 305, user_id_1: 186, user_id_2: 66, connected_at: new Date("2021-07-17T18:13:52Z"), connection_strength: 4, interaction_count: 71 },
            { connection_id: 306, user_id_1: 111, user_id_2: 166, connected_at: new Date("2022-04-26T19:06:26Z"), connection_strength: 5, interaction_count: 47 },
            { connection_id: 307, user_id_1: 83, user_id_2: 169, connected_at: new Date("2023-08-18T19:31:38Z"), connection_strength: 4, interaction_count: 46 },
            { connection_id: 308, user_id_1: 198, user_id_2: 165, connected_at: new Date("2021-11-18T22:31:35Z"), connection_strength: 5, interaction_count: 22 },
            { connection_id: 309, user_id_1: 107, user_id_2: 9, connected_at: new Date("2023-11-17T10:23:49Z"), connection_strength: 5, interaction_count: 55 },
            { connection_id: 310, user_id_1: 169, user_id_2: 28, connected_at: new Date("2021-07-27T19:55:49Z"), connection_strength: 2, interaction_count: 51 },
            { connection_id: 311, user_id_1: 40, user_id_2: 111, connected_at: new Date("2023-04-04T21:56:38Z"), connection_strength: 3, interaction_count: 21 },
            { connection_id: 312, user_id_1: 80, user_id_2: 151, connected_at: new Date("2023-02-06T12:10:11Z"), connection_strength: 5, interaction_count: 57 },
            { connection_id: 313, user_id_1: 113, user_id_2: 179, connected_at: new Date("2022-10-10T14:18:36Z"), connection_strength: 2, interaction_count: 58 },
            { connection_id: 314, user_id_1: 70, user_id_2: 36, connected_at: new Date("2023-03-29T18:19:46Z"), connection_strength: 5, interaction_count: 41 },
            { connection_id: 315, user_id_1: 98, user_id_2: 16, connected_at: new Date("2022-09-17T10:24:04Z"), connection_strength: 3, interaction_count: 43 },
            { connection_id: 316, user_id_1: 16, user_id_2: 79, connected_at: new Date("2021-10-08T11:43:13Z"), connection_strength: 5, interaction_count: 65 },
            { connection_id: 317, user_id_1: 76, user_id_2: 2, connected_at: new Date("2023-12-01T18:43:39Z"), connection_strength: 4, interaction_count: 48 },
            { connection_id: 318, user_id_1: 109, user_id_2: 10, connected_at: new Date("2023-12-17T17:15:11Z"), connection_strength: 3, interaction_count: 42 },
            { connection_id: 319, user_id_1: 130, user_id_2: 141, connected_at: new Date("2022-03-08T19:27:36Z"), connection_strength: 3, interaction_count: 33 },
            { connection_id: 320, user_id_1: 76, user_id_2: 2, connected_at: new Date("2023-09-06T16:39:45Z"), connection_strength: 3, interaction_count: 57 },
            { connection_id: 321, user_id_1: 135, user_id_2: 190, connected_at: new Date("2023-07-27T14:21:20Z"), connection_strength: 3, interaction_count: 57 },
            { connection_id: 322, user_id_1: 12, user_id_2: 56, connected_at: new Date("2023-08-26T19:12:21Z"), connection_strength: 5, interaction_count: 74 },
            { connection_id: 323, user_id_1: 109, user_id_2: 85, connected_at: new Date("2022-12-26T17:00:10Z"), connection_strength: 4, interaction_count: 51 },
            { connection_id: 324, user_id_1: 74, user_id_2: 98, connected_at: new Date("2022-05-14T10:01:55Z"), connection_strength: 5, interaction_count: 38 },
            { connection_id: 325, user_id_1: 152, user_id_2: 173, connected_at: new Date("2022-08-10T20:25:15Z"), connection_strength: 5, interaction_count: 31 },
            { connection_id: 326, user_id_1: 85, user_id_2: 118, connected_at: new Date("2021-09-09T19:12:13Z"), connection_strength: 2, interaction_count: 56 },
            { connection_id: 327, user_id_1: 112, user_id_2: 63, connected_at: new Date("2023-05-14T21:23:58Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 328, user_id_1: 122, user_id_2: 165, connected_at: new Date("2021-02-10T20:02:05Z"), connection_strength: 4, interaction_count: 60 },
            { connection_id: 329, user_id_1: 49, user_id_2: 108, connected_at: new Date("2023-04-10T14:01:27Z"), connection_strength: 5, interaction_count: 44 },
            { connection_id: 330, user_id_1: 60, user_id_2: 93, connected_at: new Date("2021-06-17T09:30:46Z"), connection_strength: 3, interaction_count: 59 },
            { connection_id: 331, user_id_1: 61, user_id_2: 61, connected_at: new Date("2022-11-15T07:09:03Z"), connection_strength: 4, interaction_count: 64 },
            { connection_id: 332, user_id_1: 64, user_id_2: 186, connected_at: new Date("2021-12-05T14:50:12Z"), connection_strength: 4, interaction_count: 56 },
            { connection_id: 333, user_id_1: 174, user_id_2: 13, connected_at: new Date("2022-01-08T01:10:36Z"), connection_strength: 4, interaction_count: 33 },
            { connection_id: 334, user_id_1: 4, user_id_2: 181, connected_at: new Date("2022-12-28T11:29:37Z"), connection_strength: 5, interaction_count: 53 },
            { connection_id: 335, user_id_1: 160, user_id_2: 154, connected_at: new Date("2023-02-20T20:56:13Z"), connection_strength: 3, interaction_count: 39 },
            { connection_id: 336, user_id_1: 108, user_id_2: 197, connected_at: new Date("2022-06-23T15:57:38Z"), connection_strength: 2, interaction_count: 64 },
            { connection_id: 337, user_id_1: 176, user_id_2: 89, connected_at: new Date("2023-03-05T09:35:12Z"), connection_strength: 4, interaction_count: 61 },
            { connection_id: 338, user_id_1: 21, user_id_2: 65, connected_at: new Date("2021-10-20T10:19:23Z"), connection_strength: 5, interaction_count: 70 },
            { connection_id: 339, user_id_1: 150, user_id_2: 55, connected_at: new Date("2021-12-10T19:27:45Z"), connection_strength: 2, interaction_count: 59 },
            { connection_id: 340, user_id_1: 21, user_id_2: 188, connected_at: new Date("2023-07-25T19:29:54Z"), connection_strength: 5, interaction_count: 43 },
            { connection_id: 341, user_id_1: 82, user_id_2: 102, connected_at: new Date("2023-01-31T11:23:15Z"), connection_strength: 5, interaction_count: 42 },
            { connection_id: 342, user_id_1: 78, user_id_2: 36, connected_at: new Date("2023-10-04T12:22:01Z"), connection_strength: 5, interaction_count: 29 },
            { connection_id: 343, user_id_1: 164, user_id_2: 134, connected_at: new Date("2021-03-08T09:00:09Z"), connection_strength: 5, interaction_count: 30 },
            { connection_id: 344, user_id_1: 12, user_id_2: 39, connected_at: new Date("2022-01-30T09:42:52Z"), connection_strength: 4, interaction_count: 38 },
            { connection_id: 345, user_id_1: 146, user_id_2: 13, connected_at: new Date("2021-01-01T09:17:25Z"), connection_strength: 5, interaction_count: 26 },
            { connection_id: 346, user_id_1: 28, user_id_2: 133, connected_at: new Date("2023-01-25T14:21:03Z"), connection_strength: 5, interaction_count: 32 },
            { connection_id: 347, user_id_1: 185, user_id_2: 46, connected_at: new Date("2023-03-15T13:54:24Z"), connection_strength: 2, interaction_count: 50 },
            { connection_id: 348, user_id_1: 36, user_id_2: 116, connected_at: new Date("2021-09-14T21:26:23Z"), connection_strength: 2, interaction_count: 54 },
            { connection_id: 349, user_id_1: 91, user_id_2: 86, connected_at: new Date("2021-12-10T05:41:16Z"), connection_strength: 2, interaction_count: 81 },
            { connection_id: 350, user_id_1: 149, user_id_2: 183, connected_at: new Date("2022-09-15T15:28:34Z"), connection_strength: 5, interaction_count: 45 },
            { connection_id: 351, user_id_1: 161, user_id_2: 168, connected_at: new Date("2023-03-08T00:48:35Z"), connection_strength: 4, interaction_count: 46 },
            { connection_id: 352, user_id_1: 13, user_id_2: 196, connected_at: new Date("2023-08-10T17:01:20Z"), connection_strength: 4, interaction_count: 42 },
            { connection_id: 353, user_id_1: 130, user_id_2: 85, connected_at: new Date("2021-07-26T10:05:49Z"), connection_strength: 4, interaction_count: 58 },
            { connection_id: 354, user_id_1: 74, user_id_2: 8, connected_at: new Date("2022-10-07T20:19:52Z"), connection_strength: 5, interaction_count: 49 },
            { connection_id: 355, user_id_1: 111, user_id_2: 124, connected_at: new Date("2023-02-09T21:46:00Z"), connection_strength: 3, interaction_count: 54 },
            { connection_id: 356, user_id_1: 168, user_id_2: 60, connected_at: new Date("2021-06-09T20:33:13Z"), connection_strength: 4, interaction_count: 71 },
            { connection_id: 357, user_id_1: 29, user_id_2: 198, connected_at: new Date("2022-09-15T14:27:12Z"), connection_strength: 2, interaction_count: 58 },
            { connection_id: 358, user_id_1: 162, user_id_2: 42, connected_at: new Date("2021-10-23T15:43:36Z"), connection_strength: 5, interaction_count: 53 },
            { connection_id: 359, user_id_1: 198, user_id_2: 194, connected_at: new Date("2022-01-21T23:06:19Z"), connection_strength: 5, interaction_count: 42 },
            { connection_id: 360, user_id_1: 169, user_id_2: 160, connected_at: new Date("2022-12-24T18:23:23Z"), connection_strength: 2, interaction_count: 55 },
            { connection_id: 361, user_id_1: 4, user_id_2: 84, connected_at: new Date("2021-03-24T18:57:36Z"), connection_strength: 4, interaction_count: 27 },
            { connection_id: 362, user_id_1: 33, user_id_2: 39, connected_at: new Date("2021-07-02T23:46:51Z"), connection_strength: 5, interaction_count: 50 },
            { connection_id: 363, user_id_1: 75, user_id_2: 37, connected_at: new Date("2021-12-21T15:39:01Z"), connection_strength: 5, interaction_count: 32 },
            { connection_id: 364, user_id_1: 106, user_id_2: 199, connected_at: new Date("2022-11-06T09:29:26Z"), connection_strength: 4, interaction_count: 38 },
            { connection_id: 365, user_id_1: 37, user_id_2: 31, connected_at: new Date("2023-11-09T23:13:52Z"), connection_strength: 4, interaction_count: 50 },
            { connection_id: 366, user_id_1: 190, user_id_2: 36, connected_at: new Date("2023-08-15T19:19:08Z"), connection_strength: 3, interaction_count: 38 },
            { connection_id: 367, user_id_1: 63, user_id_2: 28, connected_at: new Date("2022-12-08T18:14:09Z"), connection_strength: 5, interaction_count: 69 },
            { connection_id: 368, user_id_1: 165, user_id_2: 39, connected_at: new Date("2021-05-18T12:51:41Z"), connection_strength: 3, interaction_count: 32 },
            { connection_id: 369, user_id_1: 107, user_id_2: 99, connected_at: new Date("2023-02-02T19:59:20Z"), connection_strength: 3, interaction_count: 33 },
            { connection_id: 370, user_id_1: 153, user_id_2: 129, connected_at: new Date("2023-11-08T20:42:11Z"), connection_strength: 5, interaction_count: 27 },
            { connection_id: 371, user_id_1: 47, user_id_2: 148, connected_at: new Date("2022-01-25T15:22:55Z"), connection_strength: 3, interaction_count: 42 },
            { connection_id: 372, user_id_1: 114, user_id_2: 56, connected_at: new Date("2021-02-27T19:13:14Z"), connection_strength: 4, interaction_count: 27 },
            { connection_id: 373, user_id_1: 61, user_id_2: 190, connected_at: new Date("2021-05-13T00:52:45Z"), connection_strength: 2, interaction_count: 63 },
            { connection_id: 374, user_id_1: 152, user_id_2: 186, connected_at: new Date("2022-06-12T17:47:10Z"), connection_strength: 2, interaction_count: 69 },
            { connection_id: 375, user_id_1: 25, user_id_2: 1, connected_at: new Date("2023-11-25T17:32:11Z"), connection_strength: 2, interaction_count: 45 },
            { connection_id: 376, user_id_1: 125, user_id_2: 52, connected_at: new Date("2021-12-17T19:40:18Z"), connection_strength: 5, interaction_count: 42 },
            { connection_id: 377, user_id_1: 160, user_id_2: 50, connected_at: new Date("2021-04-14T21:44:56Z"), connection_strength: 2, interaction_count: 45 },
            { connection_id: 378, user_id_1: 103, user_id_2: 134, connected_at: new Date("2023-01-04T17:35:06Z"), connection_strength: 2, interaction_count: 56 },
            { connection_id: 379, user_id_1: 8, user_id_2: 74, connected_at: new Date("2021-03-22T17:36:26Z"), connection_strength: 2, interaction_count: 53 },
            { connection_id: 380, user_id_1: 40, user_id_2: 102, connected_at: new Date("2021-11-13T22:09:14Z"), connection_strength: 5, interaction_count: 56 },
            { connection_id: 381, user_id_1: 132, user_id_2: 128, connected_at: new Date("2023-05-26T19:34:03Z"), connection_strength: 5, interaction_count: 53 },
            { connection_id: 382, user_id_1: 169, user_id_2: 61, connected_at: new Date("2022-03-17T03:41:47Z"), connection_strength: 5, interaction_count: 30 },
            { connection_id: 383, user_id_1: 143, user_id_2: 111, connected_at: new Date("2023-12-17T12:49:04Z"), connection_strength: 3, interaction_count: 73 },
            { connection_id: 384, user_id_1: 95, user_id_2: 184, connected_at: new Date("2023-06-11T19:07:31Z"), connection_strength: 4, interaction_count: 42 },
            { connection_id: 385, user_id_1: 50, user_id_2: 6, connected_at: new Date("2023-12-14T16:52:40Z"), connection_strength: 4, interaction_count: 50 },
            { connection_id: 386, user_id_1: 157, user_id_2: 6, connected_at: new Date("2021-10-31T17:04:26Z"), connection_strength: 5, interaction_count: 47 },
            { connection_id: 387, user_id_1: 196, user_id_2: 97, connected_at: new Date("2023-04-21T06:33:07Z"), connection_strength: 5, interaction_count: 54 },
            { connection_id: 388, user_id_1: 21, user_id_2: 77, connected_at: new Date("2022-12-29T10:51:23Z"), connection_strength: 2, interaction_count: 48 },
            { connection_id: 389, user_id_1: 70, user_id_2: 18, connected_at: new Date("2021-03-03T16:24:13Z"), connection_strength: 2, interaction_count: 43 },
            { connection_id: 390, user_id_1: 108, user_id_2: 79, connected_at: new Date("2022-11-16T11:02:13Z"), connection_strength: 4, interaction_count: 22 },
            { connection_id: 391, user_id_1: 79, user_id_2: 111, connected_at: new Date("2021-07-29T21:03:03Z"), connection_strength: 4, interaction_count: 47 },
            { connection_id: 392, user_id_1: 55, user_id_2: 118, connected_at: new Date("2021-10-15T12:33:22Z"), connection_strength: 5, interaction_count: 56 },
            { connection_id: 393, user_id_1: 190, user_id_2: 61, connected_at: new Date("2022-02-24T21:52:02Z"), connection_strength: 2, interaction_count: 33 },
            { connection_id: 394, user_id_1: 31, user_id_2: 14, connected_at: new Date("2021-09-08T14:16:46Z"), connection_strength: 4, interaction_count: 37 },
            { connection_id: 395, user_id_1: 173, user_id_2: 124, connected_at: new Date("2021-08-14T18:56:19Z"), connection_strength: 5, interaction_count: 45 },
            { connection_id: 396, user_id_1: 62, user_id_2: 181, connected_at: new Date("2022-11-21T01:24:30Z"), connection_strength: 5, interaction_count: 43 },
            { connection_id: 397, user_id_1: 47, user_id_2: 8, connected_at: new Date("2023-11-11T19:35:34Z"), connection_strength: 4, interaction_count: 59 },
            { connection_id: 398, user_id_1: 104, user_id_2: 98, connected_at: new Date("2023-11-23T00:51:52Z"), connection_strength: 4, interaction_count: 27 },
            { connection_id: 399, user_id_1: 57, user_id_2: 134, connected_at: new Date("2022-04-14T15:20:29Z"), connection_strength: 1, interaction_count: 19 },
            { connection_id: 400, user_id_1: 158, user_id_2: 183, connected_at: new Date("2023-07-04T09:23:29Z"), connection_strength: 5, interaction_count: 31 },
        ],
    });
    await prisma.interests.createMany({
        data: [
            { interest_id: 1, interest_name: "strategy community", user_id: 133, interest_category: "sports", interest_level: 5 },
            { interest_id: 2, interest_name: "esports puzzle design", user_id: 167, interest_category: "music", interest_level: 5 },
            { interest_id: 3, interest_name: "roleplay competition", user_id: 135, interest_category: "sports", interest_level: 4 },
            { interest_id: 4, interest_name: "exploration virtual community", user_id: 90, interest_category: "technology", interest_level: 5 },
            { interest_id: 5, interest_name: "streaming competition", user_id: 38, interest_category: "music", interest_level: 6 },
            { interest_id: 6, interest_name: "adventure design", user_id: 102, interest_category: "gaming", interest_level: 3 },
            { interest_id: 7, interest_name: "crafting", user_id: 174, interest_category: "music", interest_level: 4 },
            { interest_id: 8, interest_name: "esports", user_id: 35, interest_category: "music", interest_level: 5 },
            { interest_id: 9, interest_name: "storytelling roleplay", user_id: 104, interest_category: "sports", interest_level: 7 },
            { interest_id: 10, interest_name: "design adventure crafting", user_id: 61, interest_category: "gaming", interest_level: 7 },
            { interest_id: 11, interest_name: "simulation", user_id: 33, interest_category: "technology", interest_level: 7 },
            { interest_id: 12, interest_name: "modding", user_id: 152, interest_category: "gaming", interest_level: 4 },
            { interest_id: 13, interest_name: "modding simulation", user_id: 78, interest_category: "sports", interest_level: 7 },
            { interest_id: 14, interest_name: "roleplay", user_id: 12, interest_category: "gaming", interest_level: 6 },
            { interest_id: 15, interest_name: "simulation community", user_id: 80, interest_category: "music", interest_level: 5 },
            { interest_id: 16, interest_name: "roleplay exploration", user_id: 30, interest_category: "music", interest_level: 5 },
            { interest_id: 17, interest_name: "puzzle community", user_id: 134, interest_category: "art", interest_level: 7 },
            { interest_id: 18, interest_name: "development strategy virtual", user_id: 188, interest_category: "sports", interest_level: 8 },
            { interest_id: 19, interest_name: "esports collecting streaming", user_id: 71, interest_category: "gaming", interest_level: 4 },
            { interest_id: 20, interest_name: "design", user_id: 163, interest_category: "gaming", interest_level: 4 },
            { interest_id: 21, interest_name: "exploration", user_id: 186, interest_category: "technology", interest_level: 8 },
            { interest_id: 22, interest_name: "competition", user_id: 57, interest_category: "gaming", interest_level: 5 },
            { interest_id: 23, interest_name: "design", user_id: 154, interest_category: "sports", interest_level: 5 },
            { interest_id: 24, interest_name: "puzzle adventure multiplayer", user_id: 12, interest_category: "gaming", interest_level: 6 },
            { interest_id: 25, interest_name: "collecting virtual", user_id: 82, interest_category: "gaming", interest_level: 6 },
            { interest_id: 26, interest_name: "virtual", user_id: 31, interest_category: "music", interest_level: 7 },
            { interest_id: 27, interest_name: "competition", user_id: 76, interest_category: "gaming", interest_level: 5 },
            { interest_id: 28, interest_name: "narrative", user_id: 13, interest_category: "technology", interest_level: 7 },
            { interest_id: 29, interest_name: "gaming roleplay", user_id: 198, interest_category: "sports", interest_level: 7 },
            { interest_id: 30, interest_name: "exploration", user_id: 180, interest_category: "music", interest_level: 6 },
            { interest_id: 31, interest_name: "modding collecting", user_id: 138, interest_category: "gaming", interest_level: 6 },
            { interest_id: 32, interest_name: "multiplayer esports", user_id: 121, interest_category: "sports", interest_level: 7 },
            { interest_id: 33, interest_name: "modding design", user_id: 64, interest_category: "technology", interest_level: 4 },
            { interest_id: 34, interest_name: "exploration", user_id: 73, interest_category: "gaming", interest_level: 6 },
            { interest_id: 35, interest_name: "design", user_id: 62, interest_category: "music", interest_level: 7 },
            { interest_id: 36, interest_name: "multiplayer virtual design", user_id: 37, interest_category: "gaming", interest_level: 3 },
            { interest_id: 37, interest_name: "strategy", user_id: 29, interest_category: "gaming", interest_level: 6 },
            { interest_id: 38, interest_name: "storytelling crafting esports", user_id: 106, interest_category: "sports", interest_level: 7 },
            { interest_id: 39, interest_name: "strategy action storytelling", user_id: 192, interest_category: "sports", interest_level: 8 },
            { interest_id: 40, interest_name: "crafting community", user_id: 179, interest_category: "sports", interest_level: 8 },
            { interest_id: 41, interest_name: "community modding", user_id: 125, interest_category: "sports", interest_level: 7 },
            { interest_id: 42, interest_name: "gaming development esports", user_id: 41, interest_category: "music", interest_level: 5 },
            { interest_id: 43, interest_name: "exploration storytelling roleplay", user_id: 136, interest_category: "gaming", interest_level: 4 },
            { interest_id: 44, interest_name: "design narrative", user_id: 15, interest_category: "sports", interest_level: 4 },
            { interest_id: 45, interest_name: "modding", user_id: 51, interest_category: "gaming", interest_level: 8 },
            { interest_id: 46, interest_name: "design gaming community", user_id: 57, interest_category: "music", interest_level: 6 },
            { interest_id: 47, interest_name: "narrative", user_id: 73, interest_category: "gaming", interest_level: 5 },
            { interest_id: 48, interest_name: "development", user_id: 151, interest_category: "gaming", interest_level: 4 },
            { interest_id: 49, interest_name: "action", user_id: 10, interest_category: "gaming", interest_level: 5 },
            { interest_id: 50, interest_name: "strategy", user_id: 86, interest_category: "sports", interest_level: 4 },
            { interest_id: 51, interest_name: "adventure design narrative", user_id: 147, interest_category: "gaming", interest_level: 4 },
            { interest_id: 52, interest_name: "storytelling community", user_id: 64, interest_category: "art", interest_level: 5 },
            { interest_id: 53, interest_name: "gaming storytelling", user_id: 184, interest_category: "gaming", interest_level: 5 },
            { interest_id: 54, interest_name: "streaming crafting narrative", user_id: 25, interest_category: "sports", interest_level: 9 },
            { interest_id: 55, interest_name: "storytelling strategy crafting", user_id: 38, interest_category: "music", interest_level: 7 },
            { interest_id: 56, interest_name: "virtual", user_id: 102, interest_category: "music", interest_level: 7 },
            { interest_id: 57, interest_name: "puzzle", user_id: 87, interest_category: "sports", interest_level: 6 },
            { interest_id: 58, interest_name: "development strategy gaming", user_id: 137, interest_category: "music", interest_level: 4 },
            { interest_id: 59, interest_name: "multiplayer collecting", user_id: 69, interest_category: "gaming", interest_level: 4 },
            { interest_id: 60, interest_name: "modding", user_id: 174, interest_category: "music", interest_level: 7 },
            { interest_id: 61, interest_name: "narrative competition action", user_id: 167, interest_category: "music", interest_level: 6 },
            { interest_id: 62, interest_name: "competition action", user_id: 40, interest_category: "art", interest_level: 4 },
            { interest_id: 63, interest_name: "strategy crafting", user_id: 159, interest_category: "gaming", interest_level: 5 },
            { interest_id: 64, interest_name: "crafting esports storytelling", user_id: 152, interest_category: "gaming", interest_level: 5 },
            { interest_id: 65, interest_name: "competition action puzzle", user_id: 161, interest_category: "sports", interest_level: 8 },
            { interest_id: 66, interest_name: "esports puzzle", user_id: 43, interest_category: "gaming", interest_level: 4 },
            { interest_id: 67, interest_name: "storytelling", user_id: 108, interest_category: "music", interest_level: 7 },
            { interest_id: 68, interest_name: "roleplay", user_id: 174, interest_category: "technology", interest_level: 6 },
            { interest_id: 69, interest_name: "development esports strategy", user_id: 161, interest_category: "sports", interest_level: 3 },
            { interest_id: 70, interest_name: "exploration collecting", user_id: 11, interest_category: "sports", interest_level: 5 },
            { interest_id: 71, interest_name: "multiplayer modding roleplay", user_id: 183, interest_category: "sports", interest_level: 7 },
            { interest_id: 72, interest_name: "community", user_id: 181, interest_category: "music", interest_level: 4 },
            { interest_id: 73, interest_name: "modding", user_id: 58, interest_category: "gaming", interest_level: 3 },
            { interest_id: 74, interest_name: "exploration storytelling crafting", user_id: 69, interest_category: "gaming", interest_level: 6 },
            { interest_id: 75, interest_name: "design roleplay", user_id: 127, interest_category: "music", interest_level: 5 },
            { interest_id: 76, interest_name: "esports gaming multiplayer", user_id: 96, interest_category: "technology", interest_level: 4 },
            { interest_id: 77, interest_name: "streaming competition", user_id: 31, interest_category: "music", interest_level: 6 },
            { interest_id: 78, interest_name: "crafting exploration", user_id: 51, interest_category: "technology", interest_level: 5 },
            { interest_id: 79, interest_name: "adventure collecting", user_id: 32, interest_category: "music", interest_level: 5 },
            { interest_id: 80, interest_name: "puzzle modding multiplayer", user_id: 178, interest_category: "art", interest_level: 6 },
            { interest_id: 81, interest_name: "esports", user_id: 29, interest_category: "music", interest_level: 2 },
            { interest_id: 82, interest_name: "exploration", user_id: 127, interest_category: "gaming", interest_level: 5 },
            { interest_id: 83, interest_name: "competition crafting action", user_id: 9, interest_category: "technology", interest_level: 5 },
            { interest_id: 84, interest_name: "design puzzle collecting", user_id: 126, interest_category: "sports", interest_level: 3 },
            { interest_id: 85, interest_name: "crafting", user_id: 162, interest_category: "art", interest_level: 5 },
            { interest_id: 86, interest_name: "roleplay", user_id: 55, interest_category: "gaming", interest_level: 5 },
            { interest_id: 87, interest_name: "puzzle action", user_id: 72, interest_category: "technology", interest_level: 4 },
            { interest_id: 88, interest_name: "streaming virtual roleplay", user_id: 104, interest_category: "music", interest_level: 3 },
            { interest_id: 89, interest_name: "adventure multiplayer streaming", user_id: 87, interest_category: "music", interest_level: 6 },
            { interest_id: 90, interest_name: "crafting roleplay adventure", user_id: 68, interest_category: "gaming", interest_level: 7 },
            { interest_id: 91, interest_name: "crafting storytelling", user_id: 31, interest_category: "sports", interest_level: 4 },
            { interest_id: 92, interest_name: "crafting roleplay", user_id: 63, interest_category: "music", interest_level: 5 },
            { interest_id: 93, interest_name: "roleplay", user_id: 41, interest_category: "sports", interest_level: 8 },
            { interest_id: 94, interest_name: "competition", user_id: 84, interest_category: "technology", interest_level: 7 },
            { interest_id: 95, interest_name: "design", user_id: 100, interest_category: "gaming", interest_level: 6 },
            { interest_id: 96, interest_name: "storytelling strategy", user_id: 127, interest_category: "technology", interest_level: 4 },
            { interest_id: 97, interest_name: "strategy action", user_id: 56, interest_category: "gaming", interest_level: 7 },
            { interest_id: 98, interest_name: "simulation", user_id: 179, interest_category: "sports", interest_level: 5 },
            { interest_id: 99, interest_name: "modding", user_id: 121, interest_category: "art", interest_level: 6 },
            { interest_id: 100, interest_name: "action", user_id: 101, interest_category: "gaming", interest_level: 3 },
            { interest_id: 101, interest_name: "crafting storytelling", user_id: 121, interest_category: "music", interest_level: 4 },
            { interest_id: 102, interest_name: "gaming storytelling", user_id: 195, interest_category: "sports", interest_level: 5 },
            { interest_id: 103, interest_name: "virtual gaming esports", user_id: 60, interest_category: "technology", interest_level: 3 },
            { interest_id: 104, interest_name: "gaming simulation puzzle", user_id: 53, interest_category: "gaming", interest_level: 5 },
            { interest_id: 105, interest_name: "roleplay competition", user_id: 195, interest_category: "gaming", interest_level: 7 },
            { interest_id: 106, interest_name: "gaming modding", user_id: 67, interest_category: "gaming", interest_level: 5 },
            { interest_id: 107, interest_name: "puzzle storytelling", user_id: 68, interest_category: "music", interest_level: 6 },
            { interest_id: 108, interest_name: "multiplayer", user_id: 139, interest_category: "music", interest_level: 5 },
            { interest_id: 109, interest_name: "action", user_id: 28, interest_category: "technology", interest_level: 6 },
            { interest_id: 110, interest_name: "roleplay modding", user_id: 21, interest_category: "gaming", interest_level: 4 },
            { interest_id: 111, interest_name: "virtual multiplayer", user_id: 30, interest_category: "music", interest_level: 5 },
            { interest_id: 112, interest_name: "storytelling", user_id: 190, interest_category: "gaming", interest_level: 4 },
            { interest_id: 113, interest_name: "crafting adventure", user_id: 52, interest_category: "music", interest_level: 5 },
            { interest_id: 114, interest_name: "development exploration multiplayer", user_id: 93, interest_category: "gaming", interest_level: 7 },
            { interest_id: 115, interest_name: "collecting storytelling adventure", user_id: 66, interest_category: "music", interest_level: 6 },
            { interest_id: 116, interest_name: "gaming simulation", user_id: 22, interest_category: "sports", interest_level: 4 },
            { interest_id: 117, interest_name: "adventure", user_id: 161, interest_category: "music", interest_level: 6 },
            { interest_id: 118, interest_name: "collecting gaming development", user_id: 17, interest_category: "music", interest_level: 5 },
            { interest_id: 119, interest_name: "exploration", user_id: 28, interest_category: "technology", interest_level: 5 },
            { interest_id: 120, interest_name: "puzzle action", user_id: 86, interest_category: "sports", interest_level: 6 },
            { interest_id: 121, interest_name: "adventure exploration", user_id: 153, interest_category: "gaming", interest_level: 4 },
            { interest_id: 122, interest_name: "multiplayer modding action", user_id: 177, interest_category: "gaming", interest_level: 5 },
            { interest_id: 123, interest_name: "gaming", user_id: 38, interest_category: "sports", interest_level: 5 },
            { interest_id: 124, interest_name: "development strategy", user_id: 167, interest_category: "sports", interest_level: 3 },
            { interest_id: 125, interest_name: "storytelling", user_id: 147, interest_category: "music", interest_level: 6 },
            { interest_id: 126, interest_name: "simulation action", user_id: 84, interest_category: "technology", interest_level: 3 },
            { interest_id: 127, interest_name: "community adventure development", user_id: 36, interest_category: "sports", interest_level: 9 },
            { interest_id: 128, interest_name: "adventure multiplayer puzzle", user_id: 83, interest_category: "gaming", interest_level: 6 },
            { interest_id: 129, interest_name: "esports", user_id: 162, interest_category: "music", interest_level: 3 },
            { interest_id: 130, interest_name: "narrative esports adventure", user_id: 112, interest_category: "sports", interest_level: 4 },
            { interest_id: 131, interest_name: "design storytelling", user_id: 32, interest_category: "technology", interest_level: 8 },
            { interest_id: 132, interest_name: "action", user_id: 50, interest_category: "gaming", interest_level: 7 },
            { interest_id: 133, interest_name: "exploration", user_id: 57, interest_category: "music", interest_level: 5 },
            { interest_id: 134, interest_name: "adventure multiplayer", user_id: 174, interest_category: "gaming", interest_level: 5 },
            { interest_id: 135, interest_name: "narrative puzzle development", user_id: 54, interest_category: "technology", interest_level: 8 },
            { interest_id: 136, interest_name: "adventure", user_id: 146, interest_category: "sports", interest_level: 6 },
            { interest_id: 137, interest_name: "exploration", user_id: 134, interest_category: "technology", interest_level: 7 },
            { interest_id: 138, interest_name: "design multiplayer", user_id: 166, interest_category: "gaming", interest_level: 7 },
            { interest_id: 139, interest_name: "modding", user_id: 79, interest_category: "art", interest_level: 4 },
            { interest_id: 140, interest_name: "virtual", user_id: 9, interest_category: "music", interest_level: 7 },
            { interest_id: 141, interest_name: "roleplay strategy", user_id: 146, interest_category: "gaming", interest_level: 5 },
            { interest_id: 142, interest_name: "development", user_id: 165, interest_category: "gaming", interest_level: 6 },
            { interest_id: 143, interest_name: "streaming action", user_id: 11, interest_category: "gaming", interest_level: 3 },
            { interest_id: 144, interest_name: "roleplay", user_id: 102, interest_category: "art", interest_level: 6 },
            { interest_id: 145, interest_name: "simulation", user_id: 96, interest_category: "gaming", interest_level: 4 },
            { interest_id: 146, interest_name: "competition collecting", user_id: 136, interest_category: "gaming", interest_level: 6 },
            { interest_id: 147, interest_name: "action modding collecting", user_id: 149, interest_category: "sports", interest_level: 4 },
            { interest_id: 148, interest_name: "multiplayer adventure", user_id: 28, interest_category: "sports", interest_level: 6 },
            { interest_id: 149, interest_name: "narrative strategy adventure", user_id: 144, interest_category: "gaming", interest_level: 7 },
            { interest_id: 150, interest_name: "exploration", user_id: 168, interest_category: "gaming", interest_level: 5 },
            { interest_id: 151, interest_name: "crafting multiplayer", user_id: 182, interest_category: "technology", interest_level: 6 },
            { interest_id: 152, interest_name: "puzzle roleplay", user_id: 182, interest_category: "gaming", interest_level: 7 },
            { interest_id: 153, interest_name: "streaming design storytelling", user_id: 173, interest_category: "technology", interest_level: 3 },
            { interest_id: 154, interest_name: "modding adventure", user_id: 32, interest_category: "sports", interest_level: 5 },
            { interest_id: 155, interest_name: "narrative", user_id: 73, interest_category: "gaming", interest_level: 6 },
            { interest_id: 156, interest_name: "narrative adventure esports", user_id: 50, interest_category: "music", interest_level: 5 },
            { interest_id: 157, interest_name: "simulation gaming", user_id: 137, interest_category: "technology", interest_level: 7 },
            { interest_id: 158, interest_name: "modding", user_id: 91, interest_category: "technology", interest_level: 8 },
            { interest_id: 159, interest_name: "design puzzle modding", user_id: 66, interest_category: "gaming", interest_level: 6 },
            { interest_id: 160, interest_name: "roleplay streaming", user_id: 95, interest_category: "sports", interest_level: 8 },
            { interest_id: 161, interest_name: "development narrative puzzle", user_id: 48, interest_category: "sports", interest_level: 3 },
            { interest_id: 162, interest_name: "action crafting gaming", user_id: 54, interest_category: "gaming", interest_level: 7 },
            { interest_id: 163, interest_name: "modding puzzle narrative", user_id: 22, interest_category: "art", interest_level: 6 },
            { interest_id: 164, interest_name: "design streaming exploration", user_id: 176, interest_category: "gaming", interest_level: 8 },
            { interest_id: 165, interest_name: "puzzle", user_id: 44, interest_category: "art", interest_level: 5 },
            { interest_id: 166, interest_name: "narrative adventure action", user_id: 151, interest_category: "art", interest_level: 3 },
            { interest_id: 167, interest_name: "esports strategy storytelling", user_id: 180, interest_category: "sports", interest_level: 8 },
            { interest_id: 168, interest_name: "narrative modding strategy", user_id: 144, interest_category: "technology", interest_level: 5 },
            { interest_id: 169, interest_name: "puzzle", user_id: 102, interest_category: "sports", interest_level: 4 },
            { interest_id: 170, interest_name: "competition design", user_id: 118, interest_category: "gaming", interest_level: 5 },
            { interest_id: 171, interest_name: "modding storytelling exploration", user_id: 58, interest_category: "gaming", interest_level: 4 },
            { interest_id: 172, interest_name: "gaming", user_id: 177, interest_category: "gaming", interest_level: 7 },
            { interest_id: 173, interest_name: "design virtual simulation", user_id: 24, interest_category: "gaming", interest_level: 4 },
            { interest_id: 174, interest_name: "simulation storytelling", user_id: 109, interest_category: "sports", interest_level: 5 },
            { interest_id: 175, interest_name: "action", user_id: 55, interest_category: "gaming", interest_level: 6 },
            { interest_id: 176, interest_name: "multiplayer streaming", user_id: 166, interest_category: "sports", interest_level: 5 },
            { interest_id: 177, interest_name: "action esports", user_id: 66, interest_category: "sports", interest_level: 5 },
            { interest_id: 178, interest_name: "design strategy", user_id: 43, interest_category: "gaming", interest_level: 7 },
            { interest_id: 179, interest_name: "design", user_id: 178, interest_category: "sports", interest_level: 8 },
            { interest_id: 180, interest_name: "puzzle collecting streaming", user_id: 64, interest_category: "gaming", interest_level: 7 },
            { interest_id: 181, interest_name: "puzzle narrative multiplayer", user_id: 145, interest_category: "gaming", interest_level: 7 },
            { interest_id: 182, interest_name: "virtual development roleplay", user_id: 38, interest_category: "art", interest_level: 5 },
            { interest_id: 183, interest_name: "puzzle esports gaming", user_id: 83, interest_category: "gaming", interest_level: 8 },
            { interest_id: 184, interest_name: "competition", user_id: 49, interest_category: "sports", interest_level: 4 },
            { interest_id: 185, interest_name: "design puzzle", user_id: 85, interest_category: "gaming", interest_level: 6 },
            { interest_id: 186, interest_name: "narrative development roleplay", user_id: 8, interest_category: "gaming", interest_level: 6 },
            { interest_id: 187, interest_name: "multiplayer", user_id: 127, interest_category: "art", interest_level: 2 },
            { interest_id: 188, interest_name: "modding", user_id: 122, interest_category: "art", interest_level: 8 },
            { interest_id: 189, interest_name: "collecting competition exploration", user_id: 11, interest_category: "music", interest_level: 4 },
            { interest_id: 190, interest_name: "virtual competition", user_id: 71, interest_category: "music", interest_level: 5 },
            { interest_id: 191, interest_name: "modding exploration storytelling", user_id: 30, interest_category: "gaming", interest_level: 5 },
            { interest_id: 192, interest_name: "storytelling virtual multiplayer", user_id: 164, interest_category: "music", interest_level: 5 },
            { interest_id: 193, interest_name: "modding narrative", user_id: 56, interest_category: "gaming", interest_level: 6 },
            { interest_id: 194, interest_name: "simulation crafting modding", user_id: 82, interest_category: "music", interest_level: 8 },
            { interest_id: 195, interest_name: "virtual puzzle", user_id: 177, interest_category: "sports", interest_level: 4 },
            { interest_id: 196, interest_name: "storytelling competition puzzle", user_id: 182, interest_category: "art", interest_level: 6 },
            { interest_id: 197, interest_name: "virtual community", user_id: 11, interest_category: "technology", interest_level: 6 },
            { interest_id: 198, interest_name: "development", user_id: 109, interest_category: "gaming", interest_level: 6 },
            { interest_id: 199, interest_name: "community streaming", user_id: 130, interest_category: "gaming", interest_level: 6 },
            { interest_id: 200, interest_name: "collecting streaming modding", user_id: 18, interest_category: "art", interest_level: 4 },
            { interest_id: 201, interest_name: "esports modding", user_id: 197, interest_category: "sports", interest_level: 3 },
            { interest_id: 202, interest_name: "modding crafting", user_id: 125, interest_category: "music", interest_level: 5 },
            { interest_id: 203, interest_name: "exploration strategy", user_id: 197, interest_category: "gaming", interest_level: 7 },
            { interest_id: 204, interest_name: "design strategy", user_id: 96, interest_category: "gaming", interest_level: 4 },
            { interest_id: 205, interest_name: "adventure", user_id: 185, interest_category: "gaming", interest_level: 3 },
            { interest_id: 206, interest_name: "virtual modding", user_id: 163, interest_category: "gaming", interest_level: 5 },
            { interest_id: 207, interest_name: "crafting community competition", user_id: 118, interest_category: "gaming", interest_level: 7 },
            { interest_id: 208, interest_name: "simulation", user_id: 148, interest_category: "music", interest_level: 4 },
            { interest_id: 209, interest_name: "adventure", user_id: 96, interest_category: "music", interest_level: 4 },
            { interest_id: 210, interest_name: "exploration collecting", user_id: 6, interest_category: "music", interest_level: 4 },
            { interest_id: 211, interest_name: "multiplayer", user_id: 122, interest_category: "sports", interest_level: 5 },
            { interest_id: 212, interest_name: "design gaming", user_id: 137, interest_category: "art", interest_level: 5 },
            { interest_id: 213, interest_name: "design", user_id: 87, interest_category: "art", interest_level: 5 },
            { interest_id: 214, interest_name: "exploration", user_id: 115, interest_category: "music", interest_level: 3 },
            { interest_id: 215, interest_name: "strategy crafting", user_id: 98, interest_category: "gaming", interest_level: 5 },
            { interest_id: 216, interest_name: "community simulation", user_id: 87, interest_category: "sports", interest_level: 7 },
            { interest_id: 217, interest_name: "streaming esports design", user_id: 35, interest_category: "sports", interest_level: 5 },
            { interest_id: 218, interest_name: "storytelling narrative", user_id: 158, interest_category: "gaming", interest_level: 5 },
            { interest_id: 219, interest_name: "multiplayer simulation development", user_id: 102, interest_category: "art", interest_level: 8 },
            { interest_id: 220, interest_name: "streaming narrative", user_id: 48, interest_category: "art", interest_level: 6 },
            { interest_id: 221, interest_name: "adventure", user_id: 92, interest_category: "gaming", interest_level: 6 },
            { interest_id: 222, interest_name: "narrative design", user_id: 12, interest_category: "music", interest_level: 6 },
            { interest_id: 223, interest_name: "adventure", user_id: 67, interest_category: "sports", interest_level: 5 },
            { interest_id: 224, interest_name: "roleplay simulation", user_id: 23, interest_category: "gaming", interest_level: 6 },
            { interest_id: 225, interest_name: "simulation strategy storytelling", user_id: 34, interest_category: "gaming", interest_level: 4 },
            { interest_id: 226, interest_name: "narrative", user_id: 93, interest_category: "technology", interest_level: 7 },
            { interest_id: 227, interest_name: "gaming", user_id: 155, interest_category: "gaming", interest_level: 8 },
            { interest_id: 228, interest_name: "adventure", user_id: 96, interest_category: "gaming", interest_level: 4 },
            { interest_id: 229, interest_name: "collecting action simulation", user_id: 103, interest_category: "sports", interest_level: 5 },
            { interest_id: 230, interest_name: "modding simulation puzzle", user_id: 33, interest_category: "sports", interest_level: 5 },
            { interest_id: 231, interest_name: "esports", user_id: 73, interest_category: "gaming", interest_level: 6 },
            { interest_id: 232, interest_name: "development", user_id: 46, interest_category: "technology", interest_level: 7 },
            { interest_id: 233, interest_name: "development community simulation", user_id: 100, interest_category: "gaming", interest_level: 5 },
            { interest_id: 234, interest_name: "modding esports", user_id: 157, interest_category: "sports", interest_level: 5 },
            { interest_id: 235, interest_name: "streaming", user_id: 3, interest_category: "sports", interest_level: 7 },
            { interest_id: 236, interest_name: "crafting streaming", user_id: 120, interest_category: "gaming", interest_level: 6 },
            { interest_id: 237, interest_name: "strategy adventure storytelling", user_id: 24, interest_category: "gaming", interest_level: 5 },
            { interest_id: 238, interest_name: "community collecting multiplayer", user_id: 173, interest_category: "sports", interest_level: 4 },
            { interest_id: 239, interest_name: "collecting strategy esports", user_id: 93, interest_category: "gaming", interest_level: 4 },
            { interest_id: 240, interest_name: "narrative", user_id: 91, interest_category: "music", interest_level: 5 },
            { interest_id: 241, interest_name: "puzzle exploration", user_id: 107, interest_category: "art", interest_level: 4 },
            { interest_id: 242, interest_name: "competition", user_id: 28, interest_category: "music", interest_level: 3 },
            { interest_id: 243, interest_name: "action", user_id: 195, interest_category: "gaming", interest_level: 4 },
            { interest_id: 244, interest_name: "gaming multiplayer action", user_id: 22, interest_category: "music", interest_level: 5 },
            { interest_id: 245, interest_name: "modding", user_id: 135, interest_category: "technology", interest_level: 3 },
            { interest_id: 246, interest_name: "crafting", user_id: 36, interest_category: "gaming", interest_level: 6 },
            { interest_id: 247, interest_name: "community", user_id: 102, interest_category: "gaming", interest_level: 6 },
            { interest_id: 248, interest_name: "development narrative puzzle", user_id: 76, interest_category: "sports", interest_level: 7 },
            { interest_id: 249, interest_name: "community exploration gaming", user_id: 42, interest_category: "gaming", interest_level: 6 },
            { interest_id: 250, interest_name: "development", user_id: 60, interest_category: "gaming", interest_level: 4 },
            { interest_id: 251, interest_name: "gaming action community", user_id: 82, interest_category: "gaming", interest_level: 6 },
            { interest_id: 252, interest_name: "competition virtual", user_id: 162, interest_category: "music", interest_level: 7 },
            { interest_id: 253, interest_name: "development esports community", user_id: 170, interest_category: "art", interest_level: 5 },
            { interest_id: 254, interest_name: "virtual roleplay", user_id: 66, interest_category: "music", interest_level: 7 },
            { interest_id: 255, interest_name: "narrative storytelling development", user_id: 154, interest_category: "technology", interest_level: 4 },
            { interest_id: 256, interest_name: "multiplayer puzzle action", user_id: 124, interest_category: "gaming", interest_level: 5 },
            { interest_id: 257, interest_name: "gaming community puzzle", user_id: 107, interest_category: "gaming", interest_level: 4 },
            { interest_id: 258, interest_name: "community multiplayer development", user_id: 21, interest_category: "music", interest_level: 5 },
            { interest_id: 259, interest_name: "adventure", user_id: 196, interest_category: "gaming", interest_level: 4 },
            { interest_id: 260, interest_name: "simulation", user_id: 146, interest_category: "sports", interest_level: 6 },
            { interest_id: 261, interest_name: "puzzle", user_id: 114, interest_category: "art", interest_level: 6 },
            { interest_id: 262, interest_name: "multiplayer storytelling adventure", user_id: 139, interest_category: "gaming", interest_level: 7 },
            { interest_id: 263, interest_name: "competition", user_id: 103, interest_category: "gaming", interest_level: 7 },
            { interest_id: 264, interest_name: "crafting", user_id: 25, interest_category: "music", interest_level: 7 },
            { interest_id: 265, interest_name: "action exploration", user_id: 97, interest_category: "gaming", interest_level: 6 },
            { interest_id: 266, interest_name: "storytelling development streaming", user_id: 187, interest_category: "art", interest_level: 4 },
            { interest_id: 267, interest_name: "virtual multiplayer gaming", user_id: 174, interest_category: "gaming", interest_level: 5 },
            { interest_id: 268, interest_name: "exploration narrative gaming", user_id: 90, interest_category: "music", interest_level: 5 },
            { interest_id: 269, interest_name: "multiplayer strategy", user_id: 142, interest_category: "technology", interest_level: 7 },
            { interest_id: 270, interest_name: "gaming strategy virtual", user_id: 167, interest_category: "gaming", interest_level: 7 },
            { interest_id: 271, interest_name: "virtual", user_id: 89, interest_category: "gaming", interest_level: 3 },
            { interest_id: 272, interest_name: "narrative simulation", user_id: 186, interest_category: "gaming", interest_level: 7 },
            { interest_id: 273, interest_name: "narrative roleplay", user_id: 156, interest_category: "music", interest_level: 6 },
            { interest_id: 274, interest_name: "puzzle virtual", user_id: 11, interest_category: "music", interest_level: 4 },
            { interest_id: 275, interest_name: "competition virtual strategy", user_id: 200, interest_category: "gaming", interest_level: 5 },
            { interest_id: 276, interest_name: "modding strategy", user_id: 110, interest_category: "gaming", interest_level: 6 },
            { interest_id: 277, interest_name: "modding exploration puzzle", user_id: 57, interest_category: "gaming", interest_level: 6 },
            { interest_id: 278, interest_name: "community collecting puzzle", user_id: 31, interest_category: "gaming", interest_level: 5 },
            { interest_id: 279, interest_name: "modding exploration collecting", user_id: 23, interest_category: "technology", interest_level: 4 },
            { interest_id: 280, interest_name: "development streaming", user_id: 127, interest_category: "gaming", interest_level: 5 },
            { interest_id: 281, interest_name: "multiplayer", user_id: 95, interest_category: "music", interest_level: 6 },
            { interest_id: 282, interest_name: "gaming streaming", user_id: 126, interest_category: "gaming", interest_level: 5 },
            { interest_id: 283, interest_name: "narrative strategy development", user_id: 182, interest_category: "gaming", interest_level: 5 },
            { interest_id: 284, interest_name: "exploration crafting", user_id: 30, interest_category: "sports", interest_level: 4 },
            { interest_id: 285, interest_name: "community modding", user_id: 77, interest_category: "music", interest_level: 3 },
            { interest_id: 286, interest_name: "puzzle", user_id: 71, interest_category: "gaming", interest_level: 6 },
            { interest_id: 287, interest_name: "action", user_id: 199, interest_category: "technology", interest_level: 5 },
            { interest_id: 288, interest_name: "design", user_id: 132, interest_category: "music", interest_level: 4 },
            { interest_id: 289, interest_name: "simulation crafting", user_id: 177, interest_category: "gaming", interest_level: 5 },
            { interest_id: 290, interest_name: "esports exploration modding", user_id: 7, interest_category: "music", interest_level: 4 },
            { interest_id: 291, interest_name: "modding streaming collecting", user_id: 10, interest_category: "technology", interest_level: 4 },
            { interest_id: 292, interest_name: "competition community gaming", user_id: 186, interest_category: "sports", interest_level: 4 },
            { interest_id: 293, interest_name: "puzzle action roleplay", user_id: 153, interest_category: "gaming", interest_level: 3 },
            { interest_id: 294, interest_name: "narrative adventure multiplayer", user_id: 62, interest_category: "sports", interest_level: 6 },
            { interest_id: 295, interest_name: "crafting", user_id: 175, interest_category: "gaming", interest_level: 7 },
            { interest_id: 296, interest_name: "community", user_id: 18, interest_category: "sports", interest_level: 8 },
            { interest_id: 297, interest_name: "adventure", user_id: 154, interest_category: "sports", interest_level: 7 },
            { interest_id: 298, interest_name: "gaming", user_id: 131, interest_category: "gaming", interest_level: 2 },
            { interest_id: 299, interest_name: "modding virtual", user_id: 189, interest_category: "music", interest_level: 5 },
            { interest_id: 300, interest_name: "competition", user_id: 18, interest_category: "gaming", interest_level: 5 },
        ],
    });
    await prisma.subscriptions.createMany({
        data: [
            { subscription_id: 1, plan_name: "founder silver plus", user_id: 180, start_date: "2023-07-18", duration_months: 4 },
            { subscription_id: 2, plan_name: "founder ultimate family", user_id: 155, start_date: "2022-05-30", duration_months: 2 },
            { subscription_id: 3, plan_name: "silver", user_id: 107, start_date: "2023-09-14", duration_months: 4 },
            { subscription_id: 4, plan_name: "basic deluxe", user_id: 172, start_date: "2022-10-29", duration_months: 5 },
            { subscription_id: 5, plan_name: "monthly trial", user_id: 31, start_date: "2023-03-02", duration_months: 8 },
            { subscription_id: 6, plan_name: "student", user_id: 146, start_date: "2023-05-19", duration_months: 1 },
            { subscription_id: 7, plan_name: "deluxe vip elite", user_id: 109, start_date: "2021-12-30", duration_months: 7 },
            { subscription_id: 8, plan_name: "lite premium basic", user_id: 37, start_date: "2023-11-09", duration_months: 8 },
            { subscription_id: 9, plan_name: "monthly", user_id: 70, start_date: "2023-07-25", duration_months: 1 },
            { subscription_id: 10, plan_name: "gold", user_id: 57, start_date: "2023-11-26", duration_months: 3 },
            { subscription_id: 11, plan_name: "bronze", user_id: 178, start_date: "2021-05-09", duration_months: 5 },
            { subscription_id: 12, plan_name: "monthly gold ultimate", user_id: 22, start_date: "2022-10-21", duration_months: 4 },
            { subscription_id: 13, plan_name: "annual deluxe", user_id: 100, start_date: "2021-09-27", duration_months: 3 },
            { subscription_id: 14, plan_name: "founder elite silver", user_id: 100, start_date: "2022-08-17", duration_months: 1 },
            { subscription_id: 15, plan_name: "family", user_id: 120, start_date: "2023-05-03", duration_months: 11 },
            { subscription_id: 16, plan_name: "ultimate elite annual", user_id: 178, start_date: "2023-08-24", duration_months: 6 },
            { subscription_id: 17, plan_name: "ultimate annual pro", user_id: 68, start_date: "2021-07-30", duration_months: 3 },
            { subscription_id: 18, plan_name: "elite legacy standard", user_id: 111, start_date: "2022-02-24", duration_months: 5 },
            { subscription_id: 19, plan_name: "student annual", user_id: 76, start_date: "2022-09-16", duration_months: 1 },
            { subscription_id: 20, plan_name: "gold", user_id: 51, start_date: "2023-07-05", duration_months: 10 },
            { subscription_id: 21, plan_name: "premium legacy", user_id: 103, start_date: "2023-01-19", duration_months: 1 },
            { subscription_id: 22, plan_name: "gold", user_id: 182, start_date: "2022-08-18", duration_months: 2 },
            { subscription_id: 23, plan_name: "silver trial deluxe", user_id: 42, start_date: "2023-02-23", duration_months: 1 },
            { subscription_id: 24, plan_name: "founder", user_id: 26, start_date: "2023-09-01", duration_months: 1 },
            { subscription_id: 25, plan_name: "annual premium deluxe", user_id: 16, start_date: "2023-11-17", duration_months: 1 },
            { subscription_id: 26, plan_name: "deluxe bronze", user_id: 177, start_date: "2021-09-29", duration_months: 2 },
            { subscription_id: 27, plan_name: "founder monthly", user_id: 114, start_date: "2022-03-26", duration_months: 10 },
            { subscription_id: 28, plan_name: "basic vip legacy", user_id: 151, start_date: "2023-09-14", duration_months: 1 },
            { subscription_id: 29, plan_name: "silver", user_id: 135, start_date: "2021-03-03", duration_months: 4 },
            { subscription_id: 30, plan_name: "lite silver founder", user_id: 37, start_date: "2023-01-11", duration_months: 1 },
            { subscription_id: 31, plan_name: "lite silver student", user_id: 91, start_date: "2023-07-22", duration_months: 1 },
            { subscription_id: 32, plan_name: "basic trial premium", user_id: 28, start_date: "2022-05-22", duration_months: 1 },
            { subscription_id: 33, plan_name: "premium", user_id: 188, start_date: "2023-07-21", duration_months: 2 },
            { subscription_id: 34, plan_name: "elite deluxe standard", user_id: 153, start_date: "2021-10-07", duration_months: 11 },
            { subscription_id: 35, plan_name: "ultimate deluxe", user_id: 146, start_date: "2021-10-11", duration_months: 2 },
            { subscription_id: 36, plan_name: "plus pro silver", user_id: 51, start_date: "2022-01-05", duration_months: 7 },
            { subscription_id: 37, plan_name: "founder bronze", user_id: 193, start_date: "2023-03-06", duration_months: 8 },
            { subscription_id: 38, plan_name: "trial silver", user_id: 73, start_date: "2023-09-09", duration_months: 2 },
            { subscription_id: 39, plan_name: "pro basic", user_id: 102, start_date: "2022-11-27", duration_months: 4 },
            { subscription_id: 40, plan_name: "family", user_id: 120, start_date: "2023-06-12", duration_months: 7 },
            { subscription_id: 41, plan_name: "elite", user_id: 152, start_date: "2021-06-06", duration_months: 7 },
            { subscription_id: 42, plan_name: "deluxe legacy", user_id: 46, start_date: "2023-03-18", duration_months: 1 },
            { subscription_id: 43, plan_name: "deluxe", user_id: 100, start_date: "2021-12-26", duration_months: 9 },
            { subscription_id: 44, plan_name: "lite founder", user_id: 165, start_date: "2022-12-25", duration_months: 1 },
            { subscription_id: 45, plan_name: "silver ultimate basic", user_id: 45, start_date: "2022-04-04", duration_months: 9 },
            { subscription_id: 46, plan_name: "gold monthly", user_id: 88, start_date: "2023-10-05", duration_months: 7 },
            { subscription_id: 47, plan_name: "student bronze", user_id: 120, start_date: "2022-10-26", duration_months: 6 },
            { subscription_id: 48, plan_name: "elite legacy deluxe", user_id: 6, start_date: "2023-10-25", duration_months: 2 },
            { subscription_id: 49, plan_name: "elite silver ultimate", user_id: 70, start_date: "2023-05-07", duration_months: 1 },
            { subscription_id: 50, plan_name: "deluxe", user_id: 69, start_date: "2023-02-26", duration_months: 6 },
            { subscription_id: 51, plan_name: "family student pro", user_id: 2, start_date: "2023-06-20", duration_months: 8 },
            { subscription_id: 52, plan_name: "basic", user_id: 26, start_date: "2023-12-22", duration_months: 7 },
            { subscription_id: 53, plan_name: "exclusive annual student", user_id: 49, start_date: "2023-02-19", duration_months: 4 },
            { subscription_id: 54, plan_name: "monthly gold founder", user_id: 125, start_date: "2023-11-02", duration_months: 6 },
            { subscription_id: 55, plan_name: "plus family", user_id: 103, start_date: "2021-12-26", duration_months: 2 },
            { subscription_id: 56, plan_name: "pro annual", user_id: 5, start_date: "2023-01-12", duration_months: 1 },
            { subscription_id: 57, plan_name: "legacy", user_id: 156, start_date: "2022-01-18", duration_months: 4 },
            { subscription_id: 58, plan_name: "student monthly", user_id: 136, start_date: "2023-11-05", duration_months: 2 },
            { subscription_id: 59, plan_name: "family standard", user_id: 182, start_date: "2021-05-07", duration_months: 4 },
            { subscription_id: 60, plan_name: "deluxe", user_id: 104, start_date: "2021-08-30", duration_months: 2 },
            { subscription_id: 61, plan_name: "trial plus elite", user_id: 40, start_date: "2023-09-16", duration_months: 1 },
            { subscription_id: 62, plan_name: "elite bronze monthly", user_id: 157, start_date: "2023-06-10", duration_months: 5 },
            { subscription_id: 63, plan_name: "standard plus monthly", user_id: 50, start_date: "2023-08-24", duration_months: 10 },
            { subscription_id: 64, plan_name: "bronze", user_id: 167, start_date: "2021-09-12", duration_months: 12 },
            { subscription_id: 65, plan_name: "basic vip pro", user_id: 33, start_date: "2021-10-25", duration_months: 3 },
            { subscription_id: 66, plan_name: "gold deluxe", user_id: 70, start_date: "2021-12-22", duration_months: 8 },
            { subscription_id: 67, plan_name: "premium legacy silver", user_id: 63, start_date: "2022-10-09", duration_months: 1 },
            { subscription_id: 68, plan_name: "standard annual", user_id: 141, start_date: "2021-09-06", duration_months: 4 },
            { subscription_id: 69, plan_name: "pro trial", user_id: 187, start_date: "2022-08-24", duration_months: 3 },
            { subscription_id: 70, plan_name: "exclusive standard", user_id: 48, start_date: "2023-03-11", duration_months: 11 },
            { subscription_id: 71, plan_name: "lite plus", user_id: 50, start_date: "2021-07-06", duration_months: 8 },
            { subscription_id: 72, plan_name: "premium pro plus", user_id: 49, start_date: "2023-12-13", duration_months: 11 },
            { subscription_id: 73, plan_name: "vip", user_id: 162, start_date: "2022-06-11", duration_months: 7 },
            { subscription_id: 74, plan_name: "plus annual premium", user_id: 82, start_date: "2023-11-07", duration_months: 3 },
            { subscription_id: 75, plan_name: "pro", user_id: 140, start_date: "2023-12-05", duration_months: 8 },
            { subscription_id: 76, plan_name: "plus", user_id: 85, start_date: "2022-12-11", duration_months: 1 },
            { subscription_id: 77, plan_name: "standard", user_id: 42, start_date: "2022-07-16", duration_months: 10 },
            { subscription_id: 78, plan_name: "legacy exclusive lite", user_id: 13, start_date: "2021-08-09", duration_months: 11 },
            { subscription_id: 79, plan_name: "ultimate", user_id: 156, start_date: "2023-12-26", duration_months: 1 },
            { subscription_id: 80, plan_name: "exclusive standard plus", user_id: 19, start_date: "2021-02-12", duration_months: 3 },
            { subscription_id: 81, plan_name: "annual deluxe", user_id: 53, start_date: "2022-01-29", duration_months: 5 },
            { subscription_id: 82, plan_name: "vip", user_id: 62, start_date: "2022-01-23", duration_months: 1 },
            { subscription_id: 83, plan_name: "founder student ultimate", user_id: 171, start_date: "2023-12-20", duration_months: 1 },
            { subscription_id: 84, plan_name: "ultimate", user_id: 87, start_date: "2022-12-26", duration_months: 2 },
            { subscription_id: 85, plan_name: "founder basic", user_id: 173, start_date: "2023-07-04", duration_months: 2 },
            { subscription_id: 86, plan_name: "lite", user_id: 174, start_date: "2023-02-16", duration_months: 8 },
            { subscription_id: 87, plan_name: "elite exclusive", user_id: 199, start_date: "2021-03-11", duration_months: 9 },
            { subscription_id: 88, plan_name: "basic", user_id: 45, start_date: "2022-06-10", duration_months: 5 },
            { subscription_id: 89, plan_name: "trial vip elite", user_id: 183, start_date: "2023-07-31", duration_months: 1 },
            { subscription_id: 90, plan_name: "bronze silver", user_id: 32, start_date: "2023-07-12", duration_months: 2 },
            { subscription_id: 91, plan_name: "silver", user_id: 110, start_date: "2022-07-18", duration_months: 3 },
            { subscription_id: 92, plan_name: "trial premium", user_id: 41, start_date: "2021-07-01", duration_months: 2 },
            { subscription_id: 93, plan_name: "family", user_id: 82, start_date: "2023-03-27", duration_months: 3 },
            { subscription_id: 94, plan_name: "deluxe", user_id: 173, start_date: "2023-04-03", duration_months: 6 },
            { subscription_id: 95, plan_name: "pro", user_id: 169, start_date: "2022-08-11", duration_months: 1 },
            { subscription_id: 96, plan_name: "exclusive gold founder", user_id: 6, start_date: "2023-03-01", duration_months: 8 },
            { subscription_id: 97, plan_name: "lite elite", user_id: 109, start_date: "2023-11-11", duration_months: 6 },
            { subscription_id: 98, plan_name: "bronze gold", user_id: 86, start_date: "2022-03-12", duration_months: 12 },
            { subscription_id: 99, plan_name: "founder", user_id: 134, start_date: "2023-03-22", duration_months: 3 },
            { subscription_id: 100, plan_name: "trial founder", user_id: 5, start_date: "2023-04-14", duration_months: 1 },
        ],
    });
}

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