From aeb1f007b5ac5a138dd8c00baf576aa96e585ce8 Mon Sep 17 00:00:00 2001 From: Yubi Mamiya Date: Fri, 24 Jul 2026 21:10:46 -0400 Subject: [PATCH 1/3] implement event extraction pipeline (remove secrets) --- .github/workflows/scrape_listserv.yml | 41 + .gitignore | 1 + apps/database/package.json | 4 +- apps/database/src/schema/index.ts | 56 +- apps/database/src/seed.ts | 195 +- .../src/seeddata/eventTags_embeddings.json | 8355 +++++++++++++++++ apps/web/.env.local.example | 12 +- backends/fastapi/.env.example | 2 +- backends/fastapi/app/pipeline/config.py | 37 +- backends/fastapi/app/pipeline/db.py | 18 + backends/fastapi/app/pipeline/extractor.py | 307 +- backends/fastapi/app/pipeline/orchestrator.py | 165 +- backends/fastapi/requirements.txt | 17 + bun.lock | 11 +- docker-compose.yml | 2 +- models/event_classifier_model.joblib | Bin 0 -> 13151 bytes package.json | 1 + tsconfig.json | 19 + 18 files changed, 9028 insertions(+), 215 deletions(-) create mode 100644 .github/workflows/scrape_listserv.yml create mode 100644 apps/database/src/seeddata/eventTags_embeddings.json create mode 100644 backends/fastapi/requirements.txt create mode 100644 models/event_classifier_model.joblib create mode 100644 tsconfig.json diff --git a/.github/workflows/scrape_listserv.yml b/.github/workflows/scrape_listserv.yml new file mode 100644 index 0000000..2452246 --- /dev/null +++ b/.github/workflows/scrape_listserv.yml @@ -0,0 +1,41 @@ +name: Scrape WhitmanWire + +on: + schedule: + # Runs at 8:00 AM UTC (4:00 AM Eastern Time) every day + - cron: '0 8 * * *' + workflow_dispatch: # Allows you to click a "Run workflow" button in GitHub's UI + +jobs: + scrape-and-commit: + runs-on: ubuntu-latest + # This permission is required so the bot can push the JSON file back to your repo + permissions: + contents: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' # The script uses standard libraries, so this is fine + + - name: Run Scraper + env: + # Pulls securely from GitHub Secrets + LISTSERV_EMAIL: ${{ secrets.LISTSERV_EMAIL }} + LISTSERV_PASSWORD: ${{ secrets.LISTSERV_PASSWORD }} + run: | + python3 apps/listserv-scraper/src/scrape_listserv.py --list WHITMANWIRE --limit 100 --fetch-bodies + + - name: Commit and push changes + run: | + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" + # Stage the specific data folder where the script saves its output + git add apps/listserv-scraper/data/ + # Commit the changes; if there are no new emails, it fails gracefully instead of crashing + git commit -m "chore: update WhitmanWire scraped data" || echo "No changes to commit" + git push \ No newline at end of file diff --git a/.gitignore b/.gitignore index 1133c67..26e060e 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ build/ !.env.example !**/.env.example !**/env.local.example +.forum_venv/ # ---- Database ---- drizzle/ diff --git a/apps/database/package.json b/apps/database/package.json index 01b9253..37b781f 100644 --- a/apps/database/package.json +++ b/apps/database/package.json @@ -8,9 +8,9 @@ "scripts": { "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", - "db:push": "drizzle-kit push", + "db:push": "drizzle-kit push --force", "db:studio": "drizzle-kit studio", - "db:seed": "tsx src/seed.ts", + "db:seed": "bun src/seed.ts", "lint": "biome check .", "check-types": "tsc --noEmit" }, diff --git a/apps/database/src/schema/index.ts b/apps/database/src/schema/index.ts index a52599a..a54c41b 100644 --- a/apps/database/src/schema/index.ts +++ b/apps/database/src/schema/index.ts @@ -10,29 +10,35 @@ import { timestamp, uuid, varchar, + vector, } from "drizzle-orm/pg-core"; // ── Enums ───────────────────────────────────────────────── +// YUBI has modified event tags export const eventTagEnum = pgEnum("event_tag", [ - "free-food", - "workshop", - "performance", - "speaker", - "social", + "free food", "career", - "sports", - "music", - "art", - "academic", - "cultural", - "community-service", - "religious", - "political", + "research", + "academics", "tech", + "entrepreneurship", + "politics", + "visual arts", + "performing arts", + "literature", + "culture", + "music", "gaming", - "outdoor", + "athletics", + "religion", + "sustainability", + "outdoors", "wellness", + "community service", + "speaker event", + "social event", + "stem", ]); export const campusRegionEnum = pgEnum("campus_region", [ @@ -59,14 +65,14 @@ export const notificationTypeEnum = pgEnum("notification_type", [ export const orgCategoryEnum = pgEnum("org_category", [ "career", "affinity", - "performance", - "academic", - "athletic", - "social", - "cultural", - "religious", - "political", - "service", + "performing arts", + "academics", + "athletics", + "social event", + "culture", + "religion", + "politics", + "community service", ]); export const orgRoleEnum = pgEnum("org_role", ["owner", "officer", "member"]); @@ -219,6 +225,11 @@ export const eventTags = pgTable( (t) => [primaryKey({ columns: [t.eventId, t.tag] })], ); +export const eventTagEmbeddings = pgTable("event_tag_embeddings", { + tagName: eventTagEnum("tag_name").primaryKey(), + embedding: vector("embedding", { dimensions: 1536 }).notNull(), +}); + export const rsvps = pgTable( "rsvps", { @@ -278,6 +289,7 @@ export const pipelineLogStatusEnum = pgEnum("pipeline_log_status", [ "skipped_not_event", "duplicate", "error", + "needs_review", ]); export const listservConfigs = pgTable("listserv_configs", { diff --git a/apps/database/src/seed.ts b/apps/database/src/seed.ts index b15cd16..b906635 100644 --- a/apps/database/src/seed.ts +++ b/apps/database/src/seed.ts @@ -4,6 +4,7 @@ * Run: bun run db:seed (from apps/database) */ +import { sql } from "drizzle-orm"; import { db } from "./db"; import { events, @@ -21,6 +22,14 @@ import { userRegions, users, } from "./schema"; +import { eventTagEmbeddings, type eventTagEnum } from "./schema/index"; + +// IMPORT JSON DATA TO SEED EVENT TAG EMBEDDINGS +type TagEmbeddingRecord = { + tag: (typeof eventTagEnum.enumValues)[number]; + description: string; + embedding: number[]; +}; /* ── helpers ── */ function days(n: number) { @@ -37,7 +46,38 @@ function pickN(arr: T[], n: number): T[] { const now = Date.now(); async function seed() { - console.log("Seeding database..."); + /* ═══ Event Tag Embeddings ═══ */ + + // 2. Only declare tagEmbeddingData once using Bun's runtime reader + // 2. Only declare tagEmbeddingData once using Bun's runtime reader + const tagEmbeddingData = (await Bun.file( + `${import.meta.dir}/seeddata/eventTags_embeddings.json`, + ).json()) as TagEmbeddingRecord[]; + + /* ═══ Event Tag Embeddings ═══ */ + + for (const row of tagEmbeddingData) { + if (row.embedding.length !== 1536) { + throw new Error(`Invalid embedding length for ${row.tag}`); + } + } + + // 3. Insert and handle conflicts + await db + .insert(eventTagEmbeddings) + .values( + tagEmbeddingData.map((row) => ({ + tagName: row.tag, + embedding: row.embedding, + })), + ) + .onConflictDoUpdate({ + target: eventTagEmbeddings.tagName, + set: { + // sql needs to be imported from 'drizzle-orm' + embedding: sql`excluded.embedding`, + }, + }); /* ═══ 1. Campus Locations ═══ */ const locationData = [ @@ -181,6 +221,13 @@ async function seed() { longitude: -74.6577, category: "dining" as const, }, + { + id: "other", + name: "Other / Off-Campus", + latitude: 0.0, + longitude: 0.0, + category: "social" as const, + }, ]; await db.insert(campusLocations).values(locationData).onConflictDoNothing(); @@ -316,38 +363,42 @@ async function seed() { const interestData: { userId: string; tags: ( - | "free-food" - | "workshop" - | "performance" - | "speaker" - | "social" + | "free food" | "career" - | "sports" - | "music" - | "art" - | "academic" - | "cultural" - | "community-service" - | "religious" - | "political" + | "research" + | "academics" | "tech" + | "entrepreneurship" + | "politics" + | "visual arts" + | "performing arts" + | "literature" + | "culture" + | "music" | "gaming" - | "outdoor" + | "athletics" + | "religion" + | "sustainability" + | "outdoors" | "wellness" + | "community service" + | "speaker event" + | "social event" + | "stem" )[]; }[] = [ - { userId: uid("iamin"), tags: ["tech", "career", "free-food", "social"] }, - { userId: uid("ajiang"), tags: ["art", "career", "social", "music"] }, - { userId: uid("arho"), tags: ["academic", "tech", "gaming", "free-food"] }, - { userId: uid("pkap"), tags: ["tech", "wellness", "social", "outdoor"] }, - { userId: uid("syou"), tags: ["tech", "art", "career", "free-food"] }, - { userId: uid("cwang"), tags: ["career", "social", "music", "cultural"] }, - { userId: uid("gkash"), tags: ["academic", "wellness", "community-service", "cultural"] }, - { userId: uid("jlee"), tags: ["performance", "social", "music", "art"] }, - { userId: uid("mkim"), tags: ["academic", "tech", "sports", "gaming"] }, - { userId: uid("rsingh"), tags: ["academic", "wellness", "career", "speaker"] }, - { userId: uid("tchen"), tags: ["art", "cultural", "social", "outdoor"] }, - { userId: uid("dpatel"), tags: ["tech", "career", "free-food", "gaming"] }, + { userId: uid("iamin"), tags: ["tech", "career", "free food", "social event"] }, + { userId: uid("ajiang"), tags: ["performing arts", "career", "music"] }, + { userId: uid("arho"), tags: ["academics", "tech", "gaming", "free food"] }, + { userId: uid("pkap"), tags: ["tech", "wellness", "community service", "outdoors"] }, + { userId: uid("syou"), tags: ["tech", "athletics", "career", "free food"] }, + { userId: uid("cwang"), tags: ["career", "sustainability", "music", "culture"] }, + { userId: uid("gkash"), tags: ["academics", "wellness", "community service", "culture"] }, + { userId: uid("jlee"), tags: ["gaming", "stem", "music"] }, + { userId: uid("mkim"), tags: ["academics", "tech", "athletics", "gaming"] }, + { userId: uid("rsingh"), tags: ["wellness", "career", "speaker event"] }, + { userId: uid("tchen"), tags: ["culture", "literature", "outdoors"] }, + { userId: uid("dpatel"), tags: ["tech", "career", "free food", "gaming"] }, ]; for (const { userId, tags } of interestData) { @@ -390,13 +441,13 @@ async function seed() { { name: "Princeton TigerApps", description: "Student-run apps for the Princeton community.", - category: "academic" as const, + category: "academics" as const, creatorId: uid("iamin"), }, { name: "Princeton ACM", description: "Talks, workshops, and socials for CS enthusiasts.", - category: "academic" as const, + category: "academics" as const, creatorId: uid("dpatel"), }, { @@ -408,31 +459,31 @@ async function seed() { { name: "Princeton Tigertones", description: "All-male a cappella group.", - category: "performance" as const, + category: "performing arts" as const, creatorId: uid("jlee"), }, { name: "Princeton BlockWarriors", description: "Web3 and blockchain education and hackathons.", - category: "academic" as const, + category: "academics" as const, creatorId: uid("iamin"), }, { name: "Princeton Bhangra", description: "Competitive South Asian dance team.", - category: "cultural" as const, + category: "culture" as const, creatorId: uid("rsingh"), }, { name: "Outdoor Action", description: "Princeton's premier outdoor adventure program.", - category: "athletic" as const, + category: "athletics" as const, creatorId: uid("pkap"), }, { name: "Princeton Women in CS", description: "Community and mentorship for women in computer science.", - category: "affinity" as const, + category: "academics" as const, creatorId: uid("ajiang"), }, { @@ -444,7 +495,7 @@ async function seed() { { name: "Princeton Art Museum Society", description: "Connecting students with the Princeton Art Museum.", - category: "cultural" as const, + category: "culture" as const, creatorId: uid("tchen"), }, ]; @@ -535,22 +586,28 @@ async function seed() { /* ═══ 8. Events — -1 week to +2 weeks ═══ */ type Tag = - | "free-food" - | "workshop" - | "performance" - | "speaker" - | "social" + | "free food" | "career" - | "sports" - | "music" - | "art" - | "academic" - | "cultural" - | "community-service" + | "research" + | "academics" | "tech" + | "entrepreneurship" + | "politics" + | "visual arts" + | "performing arts" + | "literature" + | "culture" + | "music" | "gaming" - | "outdoor" - | "wellness"; + | "athletics" + | "religion" + | "sustainability" + | "outdoors" + | "wellness" + | "community service" + | "speaker event" + | "social event" + | "stem"; const eventList: { title: string; @@ -570,7 +627,7 @@ async function seed() { locationId: "frist", orgId: oid("Princeton TigerApps"), creatorId: uid("iamin"), - tags: ["social", "free-food", "tech"], + tags: ["social event", "free food", "tech"], }, { title: "Intro to Rust Workshop", @@ -580,7 +637,7 @@ async function seed() { locationId: "cst", orgId: oid("Princeton ACM"), creatorId: uid("dpatel"), - tags: ["tech", "workshop"], + tags: ["tech", "stem"], }, { title: "Tigertones Fall Concert", @@ -589,7 +646,7 @@ async function seed() { locationId: "mccarter", orgId: oid("Princeton Tigertones"), creatorId: uid("jlee"), - tags: ["music", "performance"], + tags: ["music", "performing arts"], }, { title: "Resume Workshop", @@ -598,7 +655,7 @@ async function seed() { locationId: "robertson", orgId: oid("Princeton Entrepreneurship Club"), creatorId: uid("syou"), - tags: ["career", "workshop"], + tags: ["career", "entrepreneurship"], }, { title: "Blockchain 101: What is Web3?", @@ -608,7 +665,7 @@ async function seed() { locationId: "friend", orgId: oid("Princeton BlockWarriors"), creatorId: uid("iamin"), - tags: ["tech", "speaker", "academic"], + tags: ["tech", "speaker event", "academics"], }, { title: "Free Pizza & Study Break", @@ -617,7 +674,7 @@ async function seed() { endDatetime: new Date(now + hours(7)), locationId: "frist", creatorId: uid("arho"), - tags: ["free-food", "social"], + tags: ["free food", "social event"], }, { title: "Bhangra Practice (Open to All!)", @@ -627,7 +684,7 @@ async function seed() { locationId: "dillon", orgId: oid("Princeton Bhangra"), creatorId: uid("rsingh"), - tags: ["cultural", "sports", "social"], + tags: ["culture", "athletics", "social event"], }, { title: "Intro to Taiko Drumming", @@ -635,7 +692,7 @@ async function seed() { datetime: new Date(now + days(1) + hours(16)), locationId: "lewis", creatorId: uid("tchen"), - tags: ["cultural", "music", "workshop"], + tags: ["culture", "music"], }, { title: "Women in CS: Industry Panel", @@ -645,7 +702,7 @@ async function seed() { locationId: "cst", orgId: oid("Princeton Women in CS"), creatorId: uid("ajiang"), - tags: ["career", "tech", "speaker"], + tags: ["career", "tech", "speaker event"], }, { title: "Stock Pitch Night", @@ -654,7 +711,7 @@ async function seed() { locationId: "robertson", orgId: oid("Princeton Investment Club"), creatorId: uid("cwang"), - tags: ["career", "free-food"], + tags: ["career", "free food"], }, { title: "Sourlands Hike", @@ -664,7 +721,7 @@ async function seed() { locationId: "frist", orgId: oid("Outdoor Action"), creatorId: uid("pkap"), - tags: ["outdoor", "sports"], + tags: ["outdoors", "athletics"], }, { title: "Museum Late Night: Contemporary Art", @@ -673,7 +730,7 @@ async function seed() { locationId: "prospect", orgId: oid("Princeton Art Museum Society"), creatorId: uid("tchen"), - tags: ["art", "cultural", "social"], + tags: ["visual arts", "culture", "social event"], }, { title: "Competitive Programming Practice", @@ -682,7 +739,7 @@ async function seed() { locationId: "cst", orgId: oid("Princeton ACM"), creatorId: uid("dpatel"), - tags: ["tech", "academic"], + tags: ["tech", "academics"], }, { title: "TigerApps All Hands", @@ -691,7 +748,7 @@ async function seed() { locationId: "frist", orgId: oid("Princeton TigerApps"), creatorId: uid("iamin"), - tags: ["tech", "social"], + tags: ["tech", "social event"], }, { title: "Jane Street Info Session", @@ -699,7 +756,7 @@ async function seed() { datetime: new Date(now + days(8) + hours(18)), locationId: "friend", creatorId: uid("cwang"), - tags: ["career", "free-food", "tech"], + tags: ["career", "free food", "tech"], }, { title: "Princeton Poetry Slam", @@ -707,7 +764,7 @@ async function seed() { datetime: new Date(now + days(8) + hours(20)), locationId: "lewis", creatorId: uid("jlee"), - tags: ["art", "performance", "social"], + tags: ["performing arts", "literature", "social event"], }, { title: "Yoga on the Green", @@ -715,7 +772,7 @@ async function seed() { datetime: new Date(now + days(9) + hours(8)), locationId: "nassau", creatorId: uid("gkash"), - tags: ["wellness", "outdoor"], + tags: ["wellness", "outdoors"], }, { title: "E-Club Startup Showcase", @@ -724,7 +781,7 @@ async function seed() { locationId: "robertson", orgId: oid("Princeton Entrepreneurship Club"), creatorId: uid("syou"), - tags: ["career", "tech", "speaker"], + tags: ["career", "tech", "speaker event"], }, { title: "GameDev Jam: 48-Hour Challenge", @@ -734,7 +791,7 @@ async function seed() { locationId: "cst", orgId: oid("Princeton ACM"), creatorId: uid("dpatel"), - tags: ["tech", "gaming", "social"], + tags: ["tech", "gaming", "social event"], }, { title: "Spring Bhangra Watch Party", @@ -743,7 +800,7 @@ async function seed() { locationId: "frist", orgId: oid("Princeton Bhangra"), creatorId: uid("rsingh"), - tags: ["cultural", "social", "free-food"], + tags: ["culture", "social event", "free food"], }, { title: "Super Event", @@ -751,7 +808,7 @@ async function seed() { datetime: new Date(now + days(8) + hours(18)), locationId: "butler", creatorId: uid("arho"), - tags: ["social"], + tags: ["social event"], }, ]; diff --git a/apps/database/src/seeddata/eventTags_embeddings.json b/apps/database/src/seeddata/eventTags_embeddings.json new file mode 100644 index 0000000..10ae8a3 --- /dev/null +++ b/apps/database/src/seeddata/eventTags_embeddings.json @@ -0,0 +1,8355 @@ +[ + { + "tag": "free food", + "description": "an event where complimentary meals, snacks, catered food, or drinks are provided to attendees, including pizza, boba, bagels, study breaks, or catered dinners", + "embedding": [ + -0.03411865234375, -0.027801513671875, -0.01806640625, -0.0065155029296875, -0.04095458984375, + -0.0223236083984375, -0.00754547119140625, 0.033355712890625, 0.04241943359375, + -0.00249481201171875, 0.043792724609375, 0.019378662109375, 0.033050537109375, + -0.0287322998046875, -0.004352569580078125, 0.046905517578125, -0.0128631591796875, + 0.0271759033203125, -0.01514434814453125, 0.06488037109375, 0.050018310546875, + 0.052642822265625, -0.004337310791015625, 0.0189208984375, -0.01294708251953125, + 0.0430908203125, -0.02349853515625, 0.0174102783203125, 0.0653076171875, -0.01393890380859375, + 0.01311492919921875, -0.02154541015625, 0.035430908203125, -0.056549072265625, + 0.01319122314453125, 0.051483154296875, 0.001964569091796875, 0.0133819580078125, + -0.0017328262329101562, 0.0230560302734375, -0.05804443359375, -0.0166015625, + 0.02435302734375, 0.02947998046875, -0.0039215087890625, -0.001117706298828125, + -0.06768798828125, -0.0105438232421875, 0.03155517578125, 0.055450439453125, + -0.049652099609375, -0.035491943359375, 0.048431396484375, -0.044464111328125, + 0.041534423828125, -0.0124053955078125, -0.0001316070556640625, 0.015380859375, + 0.01763916015625, 0.004608154296875, 0.03839111328125, 0.01300048828125, 0.05010986328125, + 0.01123046875, -0.0352783203125, 0.00677490234375, -0.003917694091796875, 0.0174102783203125, + -0.0213623046875, 0.03802490234375, 0.028228759765625, 0.042388916015625, -0.043731689453125, + -0.0159454345703125, 0.050079345703125, -0.0086517333984375, 0.035247802734375, + 0.01214599609375, -0.0005831718444824219, 0.0206146240234375, 0.0577392578125, + -0.013763427734375, -0.01076507568359375, 0.01009368896484375, 0.017852783203125, + -0.06793212890625, -0.0848388671875, 0.00927734375, -0.043731689453125, 0.0478515625, + -0.004741668701171875, -0.02801513671875, -0.0232696533203125, 0.023406982421875, + 0.022705078125, -0.035888671875, 0.0030040740966796875, -0.06707763671875, 0.025177001953125, + 0.04345703125, 0.0169219970703125, -0.08209228515625, -0.056182861328125, -0.020538330078125, + 0.05389404296875, -0.0467529296875, 0.032440185546875, -0.0279541015625, 0.0278472900390625, + -0.03375244140625, -0.033721923828125, 0.00470733642578125, -0.01546478271484375, + 0.0013532638549804688, -0.020660400390625, -0.00879669189453125, 0.061370849609375, + -0.056549072265625, -0.0345458984375, -0.049407958984375, -0.025634765625, 0.06689453125, + -0.006191253662109375, -0.0307159423828125, -0.032867431640625, -0.0287322998046875, + -0.064208984375, 0.0020961761474609375, -0.007190704345703125, -0.01226806640625, + 0.024200439453125, -0.0214080810546875, 0.0302886962890625, -0.06298828125, -0.05023193359375, + 0.0011262893676757812, -0.04150390625, -0.01461029052734375, -0.057159423828125, + -0.0123443603515625, 0.03857421875, -0.01045989990234375, 0.034423828125, + -0.005214691162109375, -0.0013666152954101562, -0.041351318359375, -0.01039886474609375, + 0.0194244384765625, -0.038818359375, -0.004207611083984375, -0.033538818359375, + -0.019775390625, -0.03216552734375, 0.033111572265625, 0.0028858184814453125, + -0.0300750732421875, -0.01568603515625, -0.0078582763671875, 0.0173797607421875, + -0.0220794677734375, 0.0017938613891601562, -0.012969970703125, -0.054168701171875, + 0.04656982421875, 0.00665283203125, -0.052520751953125, -0.017852783203125, 0.050445556640625, + -0.045684814453125, -0.0115203857421875, -0.026336669921875, -0.007244110107421875, + -0.018096923828125, 0.062286376953125, 0.0262908935546875, -0.007198333740234375, + 0.02655029296875, -0.0174560546875, 0.022918701171875, 0.00992584228515625, 0.052886962890625, + 0.0355224609375, -0.0284423828125, -0.0267791748046875, -0.0030670166015625, + 0.004215240478515625, -0.00940704345703125, 0.01447296142578125, 0.0030155181884765625, + 0.0107269287109375, 0.023468017578125, 0.00742340087890625, 0.004131317138671875, + 0.01393890380859375, 0.00942230224609375, -0.01483917236328125, -0.02239990234375, + -0.006931304931640625, 0.024139404296875, 0.0228118896484375, -0.0009665489196777344, + -0.04901123046875, 0.03692626953125, -0.03497314453125, 0.033447265625, 0.0016880035400390625, + -0.0241546630859375, 0.055267333984375, 0.0545654296875, -0.023712158203125, 0.03460693359375, + -0.032440185546875, 0.013763427734375, 0.02752685546875, -0.017425537109375, + -0.0218048095703125, -0.01361846923828125, 0.055450439453125, 0.01776123046875, + 0.00676727294921875, 0.02490234375, 0.006011962890625, 0.08343505859375, 0.061431884765625, + 0.027740478515625, 0.0048065185546875, -0.042449951171875, -0.01287078857421875, + -0.007396697998046875, -0.04278564453125, 0.0008296966552734375, 0.00580596923828125, + -0.039520263671875, 0.00782012939453125, -0.01181793212890625, 0.041839599609375, + -0.032379150390625, -0.01751708984375, 0.019195556640625, -0.01557159423828125, + 0.03350830078125, 0.0052337646484375, -0.00720977783203125, 0.0233154296875, + 0.0294647216796875, 0.02978515625, -0.0229949951171875, -0.00264739990234375, + -0.0026187896728515625, 0.00025200843811035156, 0.00922393798828125, 0.01922607421875, + -0.010711669921875, -0.03289794921875, -0.0050048828125, -0.03582763671875, 0.018310546875, + -0.0101470947265625, 0.05816650390625, -0.01303863525390625, 0.00948333740234375, + 0.0246124267578125, -0.018280029296875, 0.074462890625, -0.02301025390625, + -0.00841522216796875, -0.017791748046875, -0.0022716522216796875, 0.01021575927734375, + 0.0228424072265625, -0.0162200927734375, -0.0146331787109375, 0.01434326171875, 0.04541015625, + 0.000705718994140625, -0.04022216796875, 0.0294647216796875, 0.033966064453125, + 0.01445770263671875, -0.053924560546875, -0.04345703125, -0.0582275390625, + 0.004985809326171875, -0.0435791015625, -0.002735137939453125, 0.039581298828125, + 0.01251983642578125, 0.002574920654296875, -0.00978851318359375, -0.0136871337890625, + -0.0235595703125, 0.0162506103515625, 0.03399658203125, 0.011627197265625, 0.01953125, + 0.0136871337890625, 0.0154876708984375, 0.016326904296875, 0.045684814453125, + -0.05096435546875, -0.01427459716796875, 0.040008544921875, -0.0174102783203125, + 0.0236663818359375, -0.0416259765625, 0.0253448486328125, -0.044677734375, 0.0196990966796875, + 0.01263427734375, 0.006824493408203125, -0.052825927734375, -0.036041259765625, + -0.0474853515625, 0.04638671875, 0.01904296875, 0.005084991455078125, 0.02276611328125, + 0.056884765625, 0.01103973388671875, -0.033111572265625, 0.0302886962890625, + 0.00461578369140625, 0.02923583984375, -5.9723854064941406e-5, 0.0192413330078125, + -0.00992584228515625, -0.00804901123046875, -0.01007080078125, -0.0224456787109375, + -0.03118896484375, -0.00716400146484375, -0.006763458251953125, -0.00363922119140625, + 0.06878662109375, 0.0065765380859375, -0.00856781005859375, 0.0635986328125, + 0.00949859619140625, -0.0201416015625, 0.020111083984375, -0.03997802734375, + -0.039093017578125, -0.032073974609375, -0.037078857421875, -0.021148681640625, + 0.0029773712158203125, 0.03448486328125, 0.060577392578125, -0.024688720703125, + 0.0335693359375, -0.017425537109375, -0.003467559814453125, 0.0198211669921875, + 0.01416778564453125, 0.01406097412109375, 0.0023479461669921875, 0.039825439453125, + -0.007366180419921875, 0.0018911361694335938, 0.0088958740234375, 0.0230560302734375, + 0.031829833984375, 0.037017822265625, 0.0110321044921875, 0.0169830322265625, + 0.038421630859375, -0.04046630859375, 0.0094146728515625, 0.032196044921875, + -0.00861358642578125, -0.0196990966796875, 0.077880859375, -0.00302886962890625, + -0.0235748291015625, -0.00946044921875, 0.04461669921875, 0.003711700439453125, + 0.0740966796875, 0.035919189453125, 0.01141357421875, -0.011505126953125, -0.053436279296875, + 0.0195465087890625, -0.01251983642578125, 0.0496826171875, 0.055908203125, + -0.0167694091796875, -0.0311737060546875, -0.0171051025390625, -0.040130615234375, + 0.0164031982421875, 0.0052947998046875, -0.0088348388671875, -0.001026153564453125, + 0.01348114013671875, 0.05023193359375, 0.00977325439453125, 0.049957275390625, + 0.01153564453125, -0.0227813720703125, -0.02825927734375, -0.0303192138671875, + -0.0179595947265625, -0.01302337646484375, -0.00502777099609375, -0.01087188720703125, + -0.027252197265625, -0.0049896240234375, -0.05133056640625, -0.004322052001953125, + 0.0236053466796875, -0.0222930908203125, 0.0190277099609375, -0.0170440673828125, + -0.0212860107421875, -0.0299072265625, -0.04034423828125, -0.0180206298828125, + -0.00754547119140625, 0.0307464599609375, 0.011260986328125, -0.044036865234375, + -0.00597381591796875, 0.0169677734375, -0.01036834716796875, 0.044464111328125, + 0.014434814453125, -0.015289306640625, -0.040435791015625, -0.0682373046875, + -0.02520751953125, -0.0197601318359375, 0.00804901123046875, -0.0089874267578125, + 0.0205535888671875, -0.017913818359375, 0.03265380859375, 0.005435943603515625, + -0.0163421630859375, -0.00843048095703125, -0.0287322998046875, 0.04412841796875, + -0.006534576416015625, -0.039337158203125, -0.042816162109375, -0.0148468017578125, + -0.0217437744140625, 0.00890350341796875, 0.006504058837890625, -0.0001417398452758789, + -0.00978851318359375, -0.0097503662109375, -0.00959014892578125, 0.03973388671875, + -0.0158843994140625, -0.0008869171142578125, 0.00827789306640625, -0.02362060546875, + 0.0338134765625, -0.0438232421875, 0.024017333984375, 0.00817108154296875, + -0.01294708251953125, -0.0193328857421875, 0.0172119140625, 0.0017805099487304688, + -0.0714111328125, 0.038543701171875, 0.039215087890625, 0.0009784698486328125, + -0.018646240234375, 0.0268707275390625, 0.0253753662109375, 0.025665283203125, + -0.0306854248046875, -0.0653076171875, 0.005584716796875, -0.0341796875, 0.0055999755859375, + 0.04296875, -0.0042266845703125, 0.0208587646484375, 0.026092529296875, 0.010101318359375, + 0.06927490234375, 0.04595947265625, -0.01287841796875, -0.0093231201171875, + 0.0150909423828125, -0.007659912109375, -0.03546142578125, 0.0037250518798828125, + -0.00986480712890625, -0.016021728515625, -0.0163116455078125, -0.019775390625, + 0.00765228271484375, 0.021209716796875, 0.0183868408203125, -0.0008440017700195312, + -0.0252685546875, -0.0213623046875, -0.058868408203125, 0.0015497207641601562, + 0.04388427734375, 0.043487548828125, -0.11395263671875, -0.021148681640625, 0.015167236328125, + 0.007343292236328125, -0.021820068359375, -0.01082611083984375, -0.005084991455078125, + 0.03277587890625, -0.0035991668701171875, 0.005413055419921875, -0.053802490234375, + -0.0112152099609375, -0.0238189697265625, 0.009979248046875, -0.02130126953125, + 0.006397247314453125, -0.01383209228515625, -0.029571533203125, 0.0215606689453125, + -0.02294921875, -0.01491546630859375, -0.10003662109375, -0.01445770263671875, + -0.04327392578125, 0.015289306640625, -0.022125244140625, -0.0066680908203125, + 0.0006651878356933594, 0.0322265625, -0.005229949951171875, -0.01001739501953125, + 0.019805908203125, 0.0355224609375, -0.027374267578125, -0.009521484375, 0.006313323974609375, + -0.0035152435302734375, -0.047607421875, 0.0061187744140625, -0.0300445556640625, + 0.0166168212890625, -0.05023193359375, -0.0219573974609375, -0.0016107559204101562, + -0.0198516845703125, -0.0299072265625, 0.025726318359375, 0.022857666015625, + 0.0173187255859375, -0.0088348388671875, 0.041412353515625, -0.03680419921875, + 0.0188446044921875, 0.028900146484375, -0.007350921630859375, -0.0299072265625, + -0.017333984375, -0.0133209228515625, -0.005985260009765625, 0.0304718017578125, + -0.0042266845703125, -0.00019550323486328125, -0.008087158203125, 0.00928497314453125, + -0.0301055908203125, 0.034820556640625, 0.0143280029296875, -0.0159149169921875, + -0.0235443115234375, -0.00693511962890625, 0.0450439453125, 0.00882720947265625, + -0.035186767578125, -0.003917694091796875, 0.002811431884765625, -0.00946807861328125, + -0.0193939208984375, -0.0135650634765625, 0.00243377685546875, 0.0302276611328125, + 0.046539306640625, 0.032501220703125, -0.019317626953125, -0.0038928985595703125, + 0.024810791015625, 0.0244903564453125, -0.008026123046875, 0.0026874542236328125, + 0.014678955078125, 0.01322174072265625, 0.00557708740234375, -0.0013914108276367188, + -0.043426513671875, 0.0004565715789794922, -0.002197265625, 0.01971435546875, + -0.039154052734375, -0.0010881423950195312, -0.024658203125, 0.00727081298828125, + -0.03460693359375, -0.01065826416015625, -0.0283660888671875, 0.01120758056640625, + 0.0170135498046875, 0.00655364990234375, 0.0241546630859375, -0.0269775390625, + -0.022735595703125, -0.008636474609375, 0.00785064697265625, -0.05462646484375, + 0.002353668212890625, 0.0017442703247070312, 0.0001080632209777832, 0.041229248046875, + 0.01531982421875, 0.00827789306640625, -0.0026073455810546875, 0.05645751953125, + -0.01468658447265625, 0.005718231201171875, -0.025421142578125, -0.00873565673828125, + 0.02142333984375, -0.000659942626953125, 0.013153076171875, -0.0069427490234375, + -0.01483917236328125, 0.004451751708984375, -0.004001617431640625, -0.0313720703125, + -0.0269622802734375, -0.041168212890625, 0.0169677734375, -0.01523590087890625, + 0.022857666015625, -0.047027587890625, 0.024017333984375, 0.0250396728515625, + 0.028167724609375, -0.00955963134765625, 0.007610321044921875, -0.005451202392578125, + 0.0094451904296875, -0.039794921875, -0.00013267993927001953, -0.024688720703125, + 0.00844573974609375, -0.0201263427734375, -0.00057220458984375, -0.023468017578125, + 0.01019287109375, -0.0085601806640625, 0.00742340087890625, 0.01155853271484375, + -0.01544952392578125, 0.003406524658203125, -0.01495361328125, 0.046783447265625, + 0.0035343170166015625, 0.0003540515899658203, 0.0030498504638671875, 0.001514434814453125, + 0.00649261474609375, 0.0159149169921875, 0.048492431640625, 0.0084991455078125, + -0.0138702392578125, -0.01617431640625, -0.00650787353515625, -0.00994110107421875, + 0.01221466064453125, 0.0052032470703125, -0.038604736328125, 0.0007491111755371094, + -0.0170135498046875, 0.025665283203125, 0.0127410888671875, -0.034393310546875, + 0.034912109375, -0.0058135986328125, 0.038421630859375, -0.00775146484375, 0.0105438232421875, + -0.0006318092346191406, 0.00815582275390625, -0.00989532470703125, 0.0136260986328125, + 0.00139617919921875, -0.00579833984375, 0.033355712890625, -0.024017333984375, + -0.027374267578125, -0.01641845703125, -0.005710601806640625, 0.01326751708984375, + -0.0115509033203125, 0.007343292236328125, -0.0123443603515625, 0.0270843505859375, + 0.007396697998046875, 0.0391845703125, -0.01537322998046875, 0.014434814453125, + 0.01248931884765625, -0.016998291015625, 0.045562744140625, 0.0236358642578125, + -0.02581787109375, -0.014190673828125, -0.033172607421875, -0.0006766319274902344, + 0.00826263427734375, 0.0016765594482421875, 0.0013580322265625, 0.005344390869140625, + 0.01085662841796875, 0.00926971435546875, 0.0128936767578125, 0.043304443359375, + -0.032867431640625, -0.0345458984375, 0.0025234222412109375, 0.01543426513671875, + 0.009002685546875, -0.003528594970703125, 0.002727508544921875, -0.002696990966796875, + 0.006061553955078125, -0.00653839111328125, -0.0209197998046875, -0.055755615234375, + -0.05322265625, 0.035919189453125, -0.03631591796875, 0.0220794677734375, 0.042449951171875, + 0.00862884521484375, 0.0118560791015625, -0.0020732879638671875, -0.005126953125, + -0.01328277587890625, -0.023345947265625, -0.041259765625, 0.01108551025390625, + -0.00409698486328125, 0.004428863525390625, -0.02362060546875, -0.00914764404296875, + 0.01354217529296875, 0.002246856689453125, -0.0003807544708251953, 0.00920867919921875, + 0.0282745361328125, 0.01654052734375, 0.00450897216796875, 0.0193939208984375, + -0.0106048583984375, 0.0025577545166015625, 0.00902557373046875, -0.066162109375, + -0.006710052490234375, -0.0162506103515625, 0.01535797119140625, -0.00951385498046875, + -7.796287536621094e-5, 0.0164337158203125, 0.023773193359375, 0.0210113525390625, + -0.0225067138671875, -0.007659912109375, 0.0012483596801757812, 0.03729248046875, + 0.003063201904296875, -0.01383209228515625, 0.02886962890625, -0.00933074951171875, + 0.003879547119140625, -0.013031005859375, 0.0258941650390625, -0.04522705078125, + -0.045135498046875, -0.02484130859375, -0.01374053955078125, -0.01531982421875, + 0.004917144775390625, -0.011322021484375, 0.017578125, -0.0145416259765625, + -0.01358795166015625, -0.039215087890625, 0.006740570068359375, 0.011138916015625, + 0.01505279541015625, 0.0124359130859375, 0.0105133056640625, 0.0170440673828125, + 0.04327392578125, 0.0361328125, -0.01200103759765625, 0.01406097412109375, + 0.003299713134765625, 0.007717132568359375, -0.00860595703125, 0.01058197021484375, + 0.0156097412109375, -0.0064849853515625, 0.00783538818359375, -0.047882080078125, + 2.664327621459961e-5, 0.005222320556640625, 0.0006461143493652344, -0.004436492919921875, + 0.00782012939453125, -0.026123046875, 0.02044677734375, 0.004230499267578125, + 0.02349853515625, 0.02386474609375, -0.001434326171875, 0.01480865478515625, + 0.005695343017578125, -0.01229095458984375, 0.0011587142944335938, 0.0250091552734375, + -0.0196075439453125, 0.00611114501953125, 0.048614501953125, 0.01348114013671875, + -0.0213165283203125, 0.019805908203125, -0.0343017578125, 0.007843017578125, + 0.002338409423828125, -0.006870269775390625, 0.0179901123046875, -0.003292083740234375, + -0.033966064453125, -0.0050201416015625, -0.001861572265625, -0.0167083740234375, + -0.0003635883331298828, 0.0194091796875, -0.0023746490478515625, -0.006366729736328125, + 0.040924072265625, 0.0102996826171875, -0.0211029052734375, 0.027069091796875, + -0.0108489990234375, -0.0019063949584960938, -0.0179595947265625, -0.04888916015625, + -0.045379638671875, 0.003635406494140625, 0.02667236328125, -0.0156402587890625, + 0.00714874267578125, 0.0035152435302734375, 0.022857666015625, -0.004131317138671875, + -0.002651214599609375, -0.03179931640625, 0.01502227783203125, -0.02557373046875, + -0.0091705322265625, -0.053955078125, 0.050018310546875, 0.0095672607421875, + -0.0150604248046875, 0.04144287109375, 0.0018262863159179688, -0.0232696533203125, + 0.0152130126953125, 0.01535797119140625, -0.0164337158203125, 0.005855560302734375, + 0.0017375946044921875, 0.01348114013671875, -0.01483917236328125, 0.055694580078125, + -0.01457977294921875, 0.0172576904296875, -0.00994110107421875, 0.0159759521484375, + 0.03619384765625, -0.05047607421875, 0.0157318115234375, -0.0175933837890625, + -0.0035247802734375, 0.01323699951171875, -0.0090789794921875, -0.0240325927734375, + -0.015716552734375, 0.021148681640625, -0.019744873046875, -0.04815673828125, + 0.008575439453125, 0.0229339599609375, -0.0231781005859375, 0.033050537109375, + -0.036834716796875, -0.03271484375, -0.042022705078125, -0.0216522216796875, + -0.01326751708984375, -0.01251220703125, 0.0283050537109375, 0.049560546875, + -0.047576904296875, -0.034332275390625, 0.0087127685546875, -0.01491546630859375, + 0.042510986328125, 0.035797119140625, -0.01194000244140625, -0.0185546875, + -0.007457733154296875, 0.005584716796875, 0.0382080078125, -0.009063720703125, + 0.0005035400390625, -0.00447845458984375, 0.0273895263671875, 0.00775146484375, + 0.0257720947265625, -0.0401611328125, 0.0302886962890625, 0.0166473388671875, 0.0450439453125, + 0.0093231201171875, -0.03985595703125, -0.006694793701171875, 0.01024627685546875, + 0.03460693359375, -0.034698486328125, -0.017913818359375, 0.033782958984375, + -0.01262664794921875, -0.0244598388671875, -0.0298004150390625, -0.0238189697265625, + 0.00626373291015625, -0.01445770263671875, -0.0217437744140625, 0.0287322998046875, + -0.01318359375, -0.0183258056640625, 0.0225067138671875, -0.0169219970703125, + 0.006500244140625, 0.031219482421875, -0.0020084381103515625, -0.0096282958984375, + 0.0008525848388671875, 0.025360107421875, -0.0266265869140625, 0.027008056640625, + 0.0010395050048828125, 0.0090789794921875, -0.0023403167724609375, -0.035858154296875, + 0.0307159423828125, 0.005771636962890625, 0.022186279296875, 0.01207733154296875, + 0.0301055908203125, 0.0211944580078125, 0.0166778564453125, 0.00711822509765625, + 0.0216827392578125, -0.0161590576171875, -0.017547607421875, -0.0016679763793945312, + 0.031005859375, 0.00806427001953125, 0.0260162353515625, -0.030181884765625, + 0.0193023681640625, 0.01548004150390625, 0.0091705322265625, 0.025299072265625, + 0.01435089111328125, 0.0123291015625, -0.0010738372802734375, 0.015289306640625, + -0.02099609375, 0.009063720703125, -0.00635528564453125, 0.0245208740234375, + -0.00470733642578125, 0.0027790069580078125, 0.0222320556640625, -9.59634780883789e-5, + 0.0281982421875, -0.0103759765625, 0.01328277587890625, -0.0008335113525390625, + -0.00835418701171875, 0.04833984375, 0.0198211669921875, -0.023040771484375, + -0.04229736328125, 0.03851318359375, 0.040740966796875, 0.004795074462890625, + -0.0217132568359375, -0.0138092041015625, -0.040435791015625, 0.03411865234375, + 0.020538330078125, -0.01091766357421875, -0.00388336181640625, 0.0129241943359375, + -0.0087127685546875, -0.0210723876953125, 0.021240234375, 0.01403045654296875, + -0.056243896484375, -0.005130767822265625, 0.0250091552734375, 0.026214599609375, + 0.00933837890625, -0.00844573974609375, 0.0053863525390625, -0.0196533203125, + 0.0249481201171875, 0.031829833984375, -0.00888824462890625, -0.0219879150390625, + -0.0264129638671875, -0.0220184326171875, 0.0162200927734375, -0.0126953125, + -0.00640106201171875, -0.042205810546875, -0.010284423828125, 0.01800537109375, + 0.00531005859375, 0.0265655517578125, 0.017730712890625, 0.0537109375, -0.001163482666015625, + 0.01049041748046875, -0.0621337890625, 0.0027523040771484375, -0.0030460357666015625, + -0.00807952880859375, 0.0191497802734375, -0.027191162109375, -0.040863037109375, + 0.01910400390625, -0.0010747909545898438, -0.012359619140625, -0.016204833984375, + 0.055328369140625, -0.02008056640625, 0.0136260986328125, -0.00823974609375, + -0.0027923583984375, -0.016693115234375, 0.00589752197265625, 0.0131683349609375, + -0.0127410888671875, 0.0301513671875, -0.005077362060546875, 0.031829833984375, + 0.0098876953125, -0.0176849365234375, 0.005588531494140625, -0.01503753662109375, + -0.004184722900390625, -0.0007181167602539062, 0.0340576171875, 0.01212310791015625, + 0.0147857666015625, -0.005535125732421875, -0.0098114013671875, 0.0141143798828125, + 0.00788116455078125, -0.004390716552734375, 0.0190582275390625, 0.022735595703125, + -0.00701141357421875, 0.0134735107421875, -0.009246826171875, 0.009033203125, + -0.04461669921875, -0.01526641845703125, 0.029998779296875, 0.01163482666015625, + -0.005382537841796875, 0.021820068359375, -0.0203704833984375, 0.0032100677490234375, + -0.00365447998046875, -0.0178680419921875, 0.0229339599609375, 0.0289459228515625, + -0.0247802734375, -0.0088958740234375, -0.024322509765625, 0.01824951171875, + -0.0037364959716796875, -0.01328277587890625, 0.009307861328125, 0.0186004638671875, + -0.00870513916015625, 0.014678955078125, 0.0298004150390625, 0.007617950439453125, + 0.01751708984375, 0.00574493408203125, -0.00026869773864746094, -0.008941650390625, + 0.00323486328125, 0.0186767578125, -0.00725555419921875, 0.0239715576171875, + -0.0259552001953125, 0.05853271484375, -0.01263427734375, -0.01526641845703125, + -0.009368896484375, -0.01352691650390625, 0.020599365234375, -0.032745361328125, + -0.016876220703125, 0.0089263916015625, -0.002605438232421875, 0.0121612548828125, + 0.0016155242919921875, -0.00013625621795654297, 0.0032100677490234375, -0.018157958984375, + -0.0254669189453125, 0.016082763671875, -0.0037097930908203125, -0.02130126953125, + -0.0120391845703125, 0.06854248046875, -0.0098876953125, -0.004108428955078125, 0.04248046875, + 0.0389404296875, 0.0186614990234375, -0.0190582275390625, -0.006008148193359375, + 0.020416259765625, -0.0013980865478515625, -0.0088348388671875, 0.01061248779296875, + 0.0201568603515625, -0.0200653076171875, 0.0091705322265625, 0.013519287109375, + -0.0169219970703125, -0.0160980224609375, 0.0184478759765625, -0.0191802978515625, + 0.0026645660400390625, 0.02239990234375, 0.04010009765625, -0.0035610198974609375, + 0.00994873046875, -0.05023193359375, 0.015594482421875, -0.002361297607421875, + -0.0142974853515625, 0.005367279052734375, 0.0276336669921875, 0.0075531005859375, + -0.035675048828125, 0.0369873046875, 0.015777587890625, -0.01153564453125, -0.042205810546875, + -0.03533935546875, 0.01611328125, -0.008026123046875, 0.01146697998046875, + -0.0194854736328125, 0.0036487579345703125, 0.0097503662109375, 0.01873779296875, + 0.0024433135986328125, 0.005756378173828125, -0.00031828880310058594, -0.014739990234375, + -0.0313720703125, 0.022308349609375, -0.0061187744140625, 0.018798828125, 0.020843505859375, + 0.00408172607421875, -0.0226287841796875, -0.005893707275390625, -0.02587890625, + 0.0162811279296875, -0.0116729736328125, 0.00821685791015625, -0.004840850830078125, + -0.03167724609375, -0.02630615234375, 0.01480865478515625, 0.022857666015625, + -0.030364990234375, -0.042022705078125, 0.0267333984375, 0.00437164306640625, + 0.007244110107421875, 0.02117919921875, -0.01035308837890625, 0.01739501953125, + -0.006877899169921875, 0.004245758056640625, 0.0035076141357421875, 0.015869140625, + 0.0126953125, -0.0205078125, 0.01297760009765625, 0.01250457763671875, 0.0005364418029785156, + 0.018798828125, -0.02032470703125, -0.0084381103515625, -0.049591064453125, + 0.00426483154296875, 0.0083465576171875, 0.0035190582275390625, 0.00286865234375, + -0.0258026123046875, -0.0008912086486816406, 0.0054931640625, 0.00434112548828125, + 0.0280609130859375, 0.0096588134765625, -0.01309967041015625, -0.007537841796875, + -0.01435089111328125, 0.0008106231689453125, -0.01259613037109375, -0.0011539459228515625, + 0.0108642578125, -0.037841796875, -0.0239105224609375, -0.060791015625, 0.035003662109375, + 0.005199432373046875, 0.01189422607421875, -0.0034275054931640625, -0.01424407958984375, + -6.0677528381347656e-5, -0.042938232421875, -0.0240020751953125, 0.0266876220703125, + 0.0063018798828125, -0.001529693603515625, -0.01180267333984375, -0.005451202392578125, + 0.0179901123046875, 0.041290283203125, 0.020782470703125, 0.031280517578125, 0.0198974609375, + -0.0035381317138671875, 0.00852203369140625, 0.00722503662109375, 0.012542724609375, + -0.0006113052368164062, -0.014862060546875, 0.0100250244140625, 0.0010356903076171875, + -0.04449462890625, 0.0208282470703125, 0.00467681884765625, 0.00536346435546875, + -0.006877899169921875, -0.004306793212890625, -0.0010690689086914062, -0.070556640625, + 0.043426513671875, -0.00494384765625, -0.020538330078125, 0.039093017578125, + 0.009613037109375, -0.038360595703125, -0.016693115234375, 0.021453857421875, + 0.0215606689453125, -0.002147674560546875, 0.0182342529296875, 0.01525115966796875, + 0.0259246826171875, 0.037139892578125, 0.0372314453125, 0.006542205810546875, + -0.0157928466796875, 0.01155853271484375, -0.0267791748046875, 0.018096923828125, + -0.00738525390625, 0.001323699951171875, 0.0010995864868164062, 0.0202484130859375, + 0.00690460205078125, 0.016387939453125, 0.006397247314453125, 0.001354217529296875, + 0.01491546630859375, -0.0217132568359375, -0.01763916015625, 0.00821685791015625, + -0.02154541015625, -0.0438232421875, -0.04046630859375, -0.026947021484375, 0.009979248046875, + 0.0265350341796875, -0.0051422119140625, -0.06793212890625, -0.0155181884765625, + -0.042633056640625, 0.0192718505859375, 0.038818359375, -0.03997802734375, + 0.0010471343994140625, -0.0235748291015625, 0.0038852691650390625, -0.0229339599609375, + 0.05694580078125, -0.009124755859375, 0.01287078857421875, 0.04266357421875, + 0.01316070556640625, 0.033111572265625, 0.0178985595703125, -0.004802703857421875, + 0.0296478271484375, -0.0267791748046875, -0.061920166015625, -0.01226806640625, + 0.01062774658203125, 0.0228271484375, 0.0024623870849609375, 0.01326751708984375, + 0.0150909423828125, -0.00518035888671875, -0.0123291015625, -0.00722503662109375, + 0.043853759765625, -0.01091766357421875, -0.00821685791015625, -0.0005269050598144531, + 0.014617919921875, 0.0384521484375, -0.0169525146484375, 0.0472412109375, + -0.002407073974609375, 0.0013256072998046875, 0.0185394287109375, -0.0198974609375, + 0.0096893310546875, -0.0299072265625, -0.01324462890625, -0.0089263916015625, + -0.0029754638671875, -0.038909912109375, 0.007732391357421875, -0.004741668701171875, + 0.03656005859375, 0.02215576171875, 0.004253387451171875, 0.03729248046875, + -0.01358795166015625, 0.004558563232421875, 0.00699615478515625, -0.0009489059448242188, + 0.00872039794921875, -0.005157470703125, -0.037567138671875, -0.01058197021484375, + 0.00749969482421875, -0.00775909423828125, -0.0389404296875, 0.0239410400390625, + -0.00323486328125, 0.0235443115234375, -0.0237579345703125, -0.0120697021484375, + -0.0068817138671875, 0.00292205810546875, -0.00830841064453125, -0.0074920654296875, + 0.019073486328125, -0.042083740234375, 0.012420654296875, -0.026947021484375, -0.013916015625, + -0.0230712890625, 0.010833740234375, 0.027740478515625, -0.03448486328125, 0.0257568359375, + -0.00861358642578125, 0.01450347900390625, -0.0184478759765625, 0.007171630859375, + -0.0011930465698242188, -0.0015344619750976562, -0.006267547607421875, 0.0635986328125, + -0.0030193328857421875, -0.050933837890625, -0.03155517578125, 0.00506591796875, + -0.0145416259765625, -0.01015472412109375, 0.032318115234375, 0.00959014892578125, + 0.018218994140625, -0.01435089111328125, -0.000461578369140625, 0.00806427001953125, + -0.004840850830078125, -0.0225067138671875, 0.0020294189453125, 0.0207977294921875, + -0.003765106201171875, -0.01251983642578125, -0.0234222412109375, 0.01288604736328125, + -0.0140228271484375, -0.04693603515625, -0.0151824951171875, 0.022491455078125, + -0.0082855224609375, 0.00623321533203125, 0.01277923583984375, -0.01239013671875, + 0.01287841796875, 0.0017032623291015625, 0.0328369140625, 0.00971221923828125, + 0.00980377197265625, 0.0207366943359375, 0.0165557861328125, 0.0045623779296875, + 0.0174407958984375, -0.01491546630859375, 0.0250091552734375, 0.01690673828125, + -0.0106658935546875, 0.00946807861328125, -0.016632080078125, -0.005535125732421875, + 0.044158935546875, 0.0145416259765625, -0.0011959075927734375, 0.027069091796875, + 0.00771331787109375, 0.012939453125, 0.00957489013671875, 0.0059814453125, + -0.01313018798828125, -0.004535675048828125, -0.00600433349609375, -0.02093505859375, + 0.00823974609375, -0.004154205322265625, -0.0269622802734375, -0.01403045654296875, + -0.0142364501953125, 0.0016574859619140625, -0.0081787109375, 0.040740966796875, + 0.0081024169921875, -0.016876220703125, 0.019439697265625, -0.03509521484375, + -0.039886474609375, 0.01239776611328125, -0.0113677978515625, 0.0200042724609375, + 0.005413055419921875, 0.04473876953125, -0.0103607177734375, 0.0279388427734375, + 0.01250457763671875, 0.0278472900390625, -0.0157928466796875, 0.00247955322265625, + 0.0062408447265625, -0.0006299018859863281, -0.049407958984375, -0.03521728515625, + 0.033233642578125, -0.0362548828125, 0.0197601318359375, 0.0105133056640625, + 0.0203399658203125, 0.0022716522216796875, -0.03106689453125, -0.00152587890625, + -0.0015316009521484375, 0.007785797119140625, -0.0027217864990234375, -0.0166473388671875, + 0.0211639404296875, 0.0087432861328125, -0.050872802734375, -0.032470703125, + 0.0198516845703125, -0.01438140869140625, 0.016876220703125, -0.04229736328125, + 0.00916290283203125, 0.038238525390625, -0.015533447265625, -0.045623779296875, + -0.0162200927734375, -0.0362548828125, 0.015716552734375, 0.005207061767578125, + 0.033782958984375, -0.01224517822265625, -0.01085662841796875, 0.00472259521484375, + -0.0024509429931640625 + ] + }, + { + "tag": "career", + "description": "an event focused on professional development, corporate recruiting, job or internship opportunities, networking with employers, resume reviews, information sessions, or alumni career panels", + "embedding": [ + -0.0231475830078125, 4.70280647277832e-5, 0.05926513671875, 0.027130126953125, + -0.00722503662109375, -0.0149688720703125, 0.005428314208984375, 0.04840087890625, + -0.003482818603515625, 0.038970947265625, 0.0261077880859375, -0.022918701171875, + 0.00164031982421875, 0.024444580078125, 0.00949859619140625, 0.038177490234375, + 0.0140533447265625, 0.037994384765625, 0.0005545616149902344, -0.006397247314453125, + 0.049591064453125, 0.009033203125, -0.00270843505859375, 0.031097412109375, + -0.0174102783203125, 0.0299530029296875, -0.038238525390625, 0.033905029296875, + 0.03802490234375, 0.004878997802734375, 0.048583984375, -0.040679931640625, + 6.377696990966797e-5, -0.01800537109375, 0.0018901824951171875, 0.0328369140625, + 0.02813720703125, 0.0311431884765625, -0.00510406494140625, 0.00995635986328125, + 0.005123138427734375, 0.01364898681640625, 0.0186920166015625, -0.0024585723876953125, + 0.01519775390625, -0.01116180419921875, -0.044525146484375, -0.006931304931640625, + 0.0560302734375, 0.04656982421875, -0.061737060546875, -0.034912109375, 0.0638427734375, + 0.01331329345703125, -0.058563232421875, -0.0106048583984375, 0.0330810546875, + -0.051177978515625, 0.03973388671875, 0.047637939453125, 0.071044921875, + -0.005825042724609375, 0.053955078125, 0.0159149169921875, -0.017333984375, + 0.0050811767578125, 0.0225372314453125, 0.0305938720703125, -0.040496826171875, + 0.0258636474609375, 0.04473876953125, 0.030548095703125, -0.01387786865234375, + -0.0082550048828125, 0.024627685546875, 0.022705078125, -0.008636474609375, 0.011932373046875, + -0.01898193359375, 0.0225982666015625, 0.05023193359375, 0.003940582275390625, + -0.01861572265625, -0.0265960693359375, -0.00608062744140625, -0.032470703125, -0.05859375, + -0.0224456787109375, -0.044342041015625, 0.051177978515625, -0.0231475830078125, + 0.002262115478515625, 0.005191802978515625, 0.0911865234375, 0.0677490234375, + 0.0130157470703125, 0.02471923828125, -0.044708251953125, 0.007198333740234375, + 0.070068359375, -0.022216796875, -0.059173583984375, -0.0254058837890625, + -0.0021305084228515625, 0.022369384765625, -0.02032470703125, -0.029754638671875, + -0.032440185546875, 0.03411865234375, -0.018310546875, -0.088134765625, 0.0006766319274902344, + -0.00791168212890625, 0.037689208984375, -0.024993896484375, -0.036956787109375, + 0.056182861328125, -0.10577392578125, -0.0233001708984375, -0.0039215087890625, + -0.045501708984375, 0.0179443359375, -0.050872802734375, 0.0097503662109375, + 0.002124786376953125, -0.0210723876953125, -0.00860595703125, 0.0017938613891601562, + -0.0394287109375, -0.024993896484375, -0.03173828125, 0.001354217529296875, + -0.002899169921875, -0.0736083984375, -0.07171630859375, -0.02813720703125, + -0.058502197265625, 0.0076904296875, -0.06292724609375, -0.049102783203125, + 0.0266265869140625, -0.0010213851928710938, -0.0171356201171875, 0.00013828277587890625, + -0.01229095458984375, -0.022247314453125, -0.0076904296875, 0.025054931640625, + 0.0040435791015625, 0.0264129638671875, -0.052215576171875, 0.0009794235229492188, + -0.055023193359375, 0.01396942138671875, 0.00107574462890625, 0.00846099853515625, + -0.018035888671875, -0.03021240234375, -0.005290985107421875, -0.0311431884765625, + -0.045196533203125, -0.004001617431640625, -0.0156097412109375, 0.0225067138671875, + 1.233816146850586e-5, -0.0253143310546875, -0.00856781005859375, -0.012939453125, + -0.059967041015625, -0.0295867919921875, 0.0058135986328125, -0.050506591796875, + -0.0024471282958984375, 0.07818603515625, 0.042816162109375, 0.0161895751953125, + -0.0011577606201171875, 0.00920867919921875, -0.02587890625, 0.0174407958984375, + 0.0142364501953125, -0.007061004638671875, -0.059417724609375, -0.019439697265625, + -0.027984619140625, 0.0042724609375, 0.054351806640625, -0.00333404541015625, + -0.007274627685546875, -0.0202178955078125, 0.035064697265625, 0.038299560546875, + 0.0243072509765625, 0.016815185546875, 0.02447509765625, -0.00759124755859375, + -0.028289794921875, 0.0021610260009765625, -0.07305908203125, -0.0189666748046875, + -0.0128326416015625, -0.06396484375, 0.0094757080078125, 0.0029392242431640625, + 0.0183563232421875, 0.01076507568359375, 0.03857421875, 0.054443359375, 0.037689208984375, + -0.033782958984375, 0.025146484375, -0.02081298828125, 0.01041412353515625, + 0.0280303955078125, -0.0034637451171875, -0.0235443115234375, -0.0098419189453125, + 0.0225830078125, 0.0166473388671875, -0.0245513916015625, -0.003753662109375, + -0.006374359130859375, 0.0205535888671875, 0.035430908203125, 0.03631591796875, + 0.0589599609375, -0.03411865234375, -0.0248260498046875, -0.001720428466796875, + -0.071533203125, -0.06134033203125, 0.003795623779296875, -0.026763916015625, + -0.002544403076171875, -0.017333984375, 0.0212554931640625, -0.0186767578125, + -0.0294036865234375, 0.02520751953125, 0.00948333740234375, 0.01514434814453125, + -0.01788330078125, 0.0013790130615234375, 0.002941131591796875, 0.042205810546875, + 0.0251617431640625, 0.01641845703125, 0.001377105712890625, 0.016693115234375, + 0.057342529296875, 0.046783447265625, -0.042205810546875, -0.005268096923828125, + -0.006298065185546875, 0.0276031494140625, -0.0279388427734375, 0.04095458984375, + -0.015167236328125, 0.01425933837890625, -0.01212310791015625, 0.055419921875, 0.00439453125, + 0.016021728515625, 0.01485443115234375, -0.05340576171875, 0.00228118896484375, + -0.0218658447265625, -0.03466796875, -0.031219482421875, -0.023529052734375, 0.02069091796875, + -0.0255889892578125, -0.0323486328125, 0.0162353515625, -0.0014581680297851562, + -0.008087158203125, 0.0012493133544921875, 0.0814208984375, 0.0306243896484375, + 0.01551055908203125, 0.00518798828125, -0.01079559326171875, 0.02587890625, -0.0615234375, + 0.03570556640625, 0.048492431640625, -0.0118408203125, 0.01470184326171875, -0.0333251953125, + 0.0222930908203125, -0.015655517578125, -0.041229248046875, 0.02178955078125, + 0.041656494140625, 0.0250244140625, -0.0227203369140625, 0.042572021484375, + 0.0092010498046875, 0.027801513671875, -0.0120086669921875, -0.01041412353515625, + -0.00586700439453125, -0.0276641845703125, -0.0216827392578125, -0.038970947265625, + 0.040435791015625, -0.0166168212890625, 0.020660400390625, 0.0256195068359375, + -0.0128936767578125, -0.03778076171875, 0.01727294921875, -0.03594970703125, + 0.0002770423889160156, 0.0109405517578125, -0.0277557373046875, 0.01078033447265625, + 0.045684814453125, 0.0258026123046875, -0.028472900390625, -0.0005960464477539062, + -0.0144195556640625, -0.00872039794921875, -0.026763916015625, 0.0270538330078125, + 0.0080718994140625, -0.0013628005981445312, 0.0087127685546875, -0.02618408203125, + -0.0268402099609375, -0.03265380859375, -0.004009246826171875, -0.04693603515625, + 0.0643310546875, 0.0269927978515625, 0.03314208984375, 0.0269927978515625, -0.005157470703125, + -0.0229949951171875, -0.013336181640625, -0.040130615234375, -0.0258026123046875, + -0.07574462890625, 0.0169219970703125, 0.01425933837890625, 0.0022258758544921875, + -0.012237548828125, 0.0269775390625, -0.019012451171875, 0.0240936279296875, + -0.005725860595703125, -0.005428314208984375, 0.0291748046875, 0.01219940185546875, + -0.007488250732421875, -0.0136260986328125, 0.0014743804931640625, 0.01090240478515625, + 0.025543212890625, 0.0172576904296875, 0.005786895751953125, 0.00983428955078125, + 0.058807373046875, -0.0604248046875, 0.024505615234375, 0.029449462890625, -0.05950927734375, + 0.0024852752685546875, 0.0516357421875, -0.04974365234375, 0.007602691650390625, + 0.02935791015625, 0.0289154052734375, 0.00615692138671875, -0.037994384765625, 0.059326171875, + 0.0007872581481933594, 0.03875732421875, 0.037841796875, 0.023193359375, 0.0202484130859375, + -0.024658203125, -0.032501220703125, -0.005855560302734375, -0.0243988037109375, + 0.051177978515625, -0.01751708984375, -0.0220947265625, -0.015716552734375, + -0.00931549072265625, 0.044769287109375, 0.001888275146484375, 0.00455474853515625, + -0.042999267578125, 0.036285400390625, 0.0174407958984375, -0.0245513916015625, 0.03369140625, + 0.033233642578125, -0.028411865234375, -0.028900146484375, -0.047821044921875, + 0.0203399658203125, -0.030792236328125, -0.0271759033203125, -0.031524658203125, -0.037109375, + -0.01438140869140625, -0.0027751922607421875, -0.045440673828125, 0.01514434814453125, + -0.0692138671875, 0.0469970703125, 0.045654296875, -0.0239410400390625, 0.012481689453125, + -0.047454833984375, -0.0030879974365234375, 0.01824951171875, 0.041961669921875, + 0.034149169921875, -0.0203094482421875, -0.0040740966796875, 0.01136016845703125, + 0.004787445068359375, 0.03173828125, -0.00643157958984375, -0.00597381591796875, + -0.044708251953125, -0.0079803466796875, -0.0139923095703125, -0.005672454833984375, + -0.002384185791015625, 0.0085296630859375, -0.036285400390625, -0.024322509765625, + 0.028839111328125, 0.0133514404296875, -0.0081787109375, 0.009063720703125, -0.01324462890625, + 0.03466796875, -0.032012939453125, -0.044891357421875, -0.061737060546875, + 0.00501251220703125, -0.0235137939453125, 0.006717681884765625, -0.0279388427734375, + -0.00640106201171875, -0.007678985595703125, -0.00726318359375, 0.01727294921875, + 0.00811767578125, 0.003498077392578125, -0.0304412841796875, 0.019317626953125, + 0.002048492431640625, 0.024658203125, -0.0202178955078125, 0.022064208984375, + 0.022735595703125, 0.003345489501953125, 0.032379150390625, 0.0211944580078125, + -0.0008997917175292969, -0.0161285400390625, 0.0193328857421875, 0.019683837890625, + 0.00634002685546875, 0.01995849609375, 0.01666259765625, 0.0177764892578125, 0.02032470703125, + -0.03668212890625, -0.0262603759765625, 0.0156097412109375, -0.0423583984375, + -0.00952911376953125, -0.046295166015625, -0.02337646484375, 0.006656646728515625, + -0.00962066650390625, 0.016845703125, 0.0394287109375, 0.017364501953125, + -0.00336456298828125, -7.593631744384766e-5, 0.00907135009765625, 0.0271453857421875, + 0.00923919677734375, 0.03143310546875, -0.0030078887939453125, -0.01329803466796875, + -0.020111083984375, -0.010498046875, -0.0157318115234375, 0.0020275115966796875, + -0.0302581787109375, -0.0115966796875, -0.00586700439453125, -0.0016317367553710938, + -0.04296875, -0.010345458984375, 0.054962158203125, 0.046966552734375, -0.07952880859375, + 0.0210723876953125, 0.01335906982421875, 0.047149658203125, -0.031768798828125, + -0.0232086181640625, 0.00550079345703125, 0.036224365234375, 0.0180206298828125, + -0.01418304443359375, -0.0184478759765625, -0.02667236328125, -0.0061492919921875, + 0.0081024169921875, -0.005889892578125, -0.01425933837890625, -0.02166748046875, + 0.01007843017578125, -0.0013399124145507812, -0.01476287841796875, -0.01220703125, + -0.043914794921875, -0.0005850791931152344, -0.04815673828125, -0.0294342041015625, + -0.00989532470703125, 0.004032135009765625, 0.01032257080078125, -0.0177154541015625, + 0.01490020751953125, -0.0178375244140625, 0.008636474609375, 0.029510498046875, + -0.01125335693359375, -0.0206451416015625, 0.01238250732421875, -0.0298309326171875, + 0.0033740997314453125, -0.026092529296875, 0.006134033203125, 0.0021572113037109375, + -0.01073455810546875, -0.0106048583984375, 0.0283203125, 0.0157318115234375, + -0.00772857666015625, -0.01107025146484375, -0.004669189453125, 0.01287078857421875, + 0.007617950439453125, -0.0010013580322265625, -0.0302581787109375, 0.008392333984375, + 0.0009908676147460938, 0.023834228515625, -0.021697998046875, 0.01364898681640625, + -0.030517578125, -0.01462554931640625, 0.032958984375, 0.0167236328125, -0.02655029296875, + -0.010162353515625, 0.04656982421875, -0.006610870361328125, 0.007312774658203125, + -0.027801513671875, -0.020843505859375, 0.01284027099609375, 0.0009703636169433594, + -0.04071044921875, -0.013458251953125, -0.007450103759765625, -0.01287841796875, + 0.0023555755615234375, -0.04278564453125, -0.03643798828125, -0.019012451171875, + -0.033843994140625, -0.030792236328125, 0.024688720703125, 0.0279083251953125, + 0.0124359130859375, -0.006099700927734375, 0.025665283203125, 0.00122833251953125, + 0.035369873046875, 0.00370025634765625, -0.0007615089416503906, 0.0106048583984375, + -0.02740478515625, 0.005115509033203125, -0.0268707275390625, -0.0020046234130859375, + 0.0116424560546875, -0.005870819091796875, -0.021240234375, 0.0038776397705078125, + -0.0032825469970703125, -0.01520538330078125, -0.02349853515625, -0.01052093505859375, + -0.0237884521484375, -0.0166168212890625, 0.0013818740844726562, 0.041015625, + -0.006572723388671875, -0.004039764404296875, 0.017486572265625, 0.006099700927734375, + 0.03179931640625, -0.015350341796875, 0.0066375732421875, 0.0226898193359375, + -0.0352783203125, -0.00406646728515625, -0.01251983642578125, 0.0460205078125, 0.0380859375, + 0.03778076171875, -0.0196685791015625, -0.03759765625, -0.018829345703125, + -0.001384735107421875, -0.0188446044921875, 0.03680419921875, 0.02978515625, + 0.0034351348876953125, 0.00951385498046875, -0.0184783935546875, -0.0203857421875, + -0.005619049072265625, 0.00801849365234375, -0.017242431640625, 0.0156707763671875, + -0.007389068603515625, -0.02496337890625, -0.021087646484375, 0.0099945068359375, + 0.0511474609375, 0.022491455078125, -0.01013946533203125, -0.01611328125, + 0.0006747245788574219, -0.0291748046875, -0.01335906982421875, 0.01654052734375, + 0.034210205078125, 0.0242919921875, -0.017486572265625, -0.0098114013671875, -0.0054931640625, + 0.038299560546875, 0.01788330078125, 0.001617431640625, 0.01181793212890625, + -0.0229949951171875, -0.0251312255859375, 0.006710052490234375, 0.05987548828125, + -0.009918212890625, -0.004909515380859375, -0.005859375, 0.0274505615234375, + -0.049835205078125, 0.06964111328125, 0.03594970703125, 0.00919342041015625, + 0.037933349609375, -0.0423583984375, -0.026397705078125, -0.037811279296875, + -0.003368377685546875, -0.02203369140625, -0.013275146484375, 0.0105133056640625, + -2.9981136322021484e-5, 0.01258087158203125, -0.0377197265625, 0.0242462158203125, + 0.046051025390625, -0.0208282470703125, 0.01934814453125, -0.0083160400390625, + 0.01277923583984375, 0.019287109375, 0.036041259765625, -0.004673004150390625, + -0.006755828857421875, -0.044952392578125, -0.037109375, 0.014739990234375, + -0.005298614501953125, -0.05633544921875, 0.015380859375, 0.0289154052734375, 0.0203857421875, + -0.01702880859375, -0.01885986328125, -0.0256805419921875, -0.020843505859375, + -0.00015735626220703125, 0.0188140869140625, 0.0009360313415527344, -0.01154327392578125, + -0.019195556640625, -0.013702392578125, 0.00441741943359375, 0.0023937225341796875, + 0.0095672607421875, 0.006046295166015625, -0.0175933837890625, 0.032958984375, + -0.0177764892578125, -0.004474639892578125, 0.0172882080078125, 0.0168304443359375, + -0.01366424560546875, -0.025543212890625, 0.0307159423828125, 0.0198974609375, + -0.025665283203125, -0.020904541015625, -0.00553131103515625, -0.01004791259765625, + 0.023284912109375, -0.036285400390625, -0.01082611083984375, -0.004608154296875, + 0.0020122528076171875, 0.010223388671875, 0.0229949951171875, -0.0379638671875, + -0.039703369140625, 0.070068359375, 0.00788116455078125, -0.0067291259765625, + 0.00015306472778320312, -0.029754638671875, 0.00852203369140625, -0.00496673583984375, + 0.026336669921875, -0.0223236083984375, -0.005359649658203125, -0.021514892578125, + 0.0095672607421875, -0.01068115234375, 0.0210723876953125, -0.0161285400390625, + -0.027130126953125, 0.00420379638671875, -0.0225372314453125, -0.00882720947265625, + 0.0041046142578125, 0.0239105224609375, 0.030487060546875, 0.0164947509765625, + -0.01279449462890625, -0.0028553009033203125, 0.0002446174621582031, 0.040496826171875, + -0.01247406005859375, 0.0234832763671875, -0.007488250732421875, 0.055816650390625, + -0.004970550537109375, -0.01727294921875, -0.023284912109375, 0.0005879402160644531, + 0.034912109375, -0.0205841064453125, -0.00975799560546875, 0.00644683837890625, + 0.01617431640625, 0.05419921875, -0.0208282470703125, 0.0350341796875, 0.0003509521484375, + -0.002086639404296875, -0.039459228515625, -0.002777099609375, 0.016937255859375, + -0.048828125, 0.005687713623046875, -0.0167236328125, 0.007965087890625, -0.00811004638671875, + -0.0162200927734375, 0.04833984375, -0.0226287841796875, 0.00789642333984375, + -0.0219268798828125, 0.0146484375, 0.00035452842712402344, 0.01288604736328125, + 0.014068603515625, -0.032379150390625, 0.052642822265625, 0.017974853515625, 0.01080322265625, + -0.021240234375, 0.0290679931640625, -0.00251007080078125, -0.042633056640625, + -0.014007568359375, 0.006870269775390625, -0.021087646484375, -0.002216339111328125, + 0.023895263671875, -0.01544952392578125, 0.049102783203125, 0.003910064697265625, + 0.006977081298828125, -0.0011568069458007812, 0.01404571533203125, -0.0233612060546875, + 0.012237548828125, 0.01020050048828125, 0.0202484130859375, 0.02227783203125, + 0.0308380126953125, 0.0038013458251953125, 0.0128936767578125, 0.0218048095703125, + 0.006572723388671875, 0.01238250732421875, 0.008209228515625, -0.01142120361328125, + 0.03570556640625, -0.0193023681640625, 0.0283203125, -0.02532958984375, -0.00904083251953125, + -0.007205963134765625, -0.0017652511596679688, 0.03497314453125, 0.0135498046875, + 0.00469207763671875, 0.01216888427734375, 0.0221710205078125, 0.0045318603515625, + -0.015533447265625, -0.0301361083984375, -0.01262664794921875, -0.020233154296875, + 0.00035452842712402344, 0.0172882080078125, -0.00618743896484375, -0.043853759765625, + 0.0167694091796875, -0.01314544677734375, -0.016326904296875, -0.045379638671875, + -0.01788330078125, 0.0032329559326171875, -0.0457763671875, 0.0287933349609375, + -0.028564453125, 0.0189361572265625, -0.053497314453125, 0.020965576171875, + 0.0067291259765625, -0.013336181640625, -0.0364990234375, -0.042694091796875, + 0.0256195068359375, 0.0195465087890625, -0.005481719970703125, 0.022247314453125, + 0.01380157470703125, -0.0090179443359375, 0.02593994140625, -0.0078887939453125, + -0.0257720947265625, 0.0285491943359375, 2.944469451904297e-5, -0.0263671875, + 0.029510498046875, 0.00508880615234375, 0.01433563232421875, -0.005092620849609375, + 0.013275146484375, -0.0125885009765625, 0.0234222412109375, -0.00931549072265625, + 0.0149688720703125, 0.0034637451171875, -0.0302886962890625, 0.020782470703125, + -0.01387786865234375, -0.009033203125, 0.007709503173828125, 0.002536773681640625, + -0.00258636474609375, 0.005153656005859375, -0.00916290283203125, 0.008209228515625, + -0.0310211181640625, -0.0207977294921875, 0.00046133995056152344, -0.0169219970703125, + 0.01038360595703125, 0.00756072998046875, -0.0181121826171875, -0.021148681640625, + 0.004215240478515625, -0.01297760009765625, -0.0027923583984375, 0.01763916015625, + 0.0003383159637451172, -0.051055908203125, 0.01401519775390625, 0.0194244384765625, + -0.05902099609375, 0.016448974609375, 0.033660888671875, 0.0182647705078125, + -0.009307861328125, 0.01422119140625, 0.02593994140625, 0.004703521728515625, + 0.0257415771484375, 0.01142120361328125, -0.00428009033203125, -0.0113525390625, + 0.0255584716796875, 0.0171051025390625, -0.0216217041015625, 0.029144287109375, + 0.0213623046875, 0.031646728515625, 0.0015211105346679688, -0.01190948486328125, + 0.0174407958984375, 0.01806640625, 0.04345703125, 0.0018444061279296875, -0.054107666015625, + 0.036956787109375, -0.0472412109375, 0.0013074874877929688, -0.0267181396484375, + -0.01018524169921875, -0.0478515625, -0.04901123046875, -0.031463623046875, + 0.0264129638671875, -0.0306243896484375, 0.01126861572265625, 0.0345458984375, + -0.015960693359375, -0.00391387939453125, 0.0518798828125, 0.0219573974609375, + 0.01079559326171875, -0.02667236328125, 0.001064300537109375, 0.01094818115234375, + 0.025146484375, 0.036651611328125, 0.025848388671875, 0.005859375, -0.030548095703125, + 0.0240020751953125, 0.004497528076171875, 0.035675048828125, 0.0035953521728515625, + -0.005878448486328125, 0.027679443359375, -0.0203399658203125, 0.030181884765625, + -0.0068817138671875, 0.0293731689453125, 0.018310546875, 0.020416259765625, + 0.0293731689453125, 0.0114593505859375, 0.01114654541015625, -0.034576416015625, + -0.00262451171875, -0.0145263671875, 0.04205322265625, 0.05743408203125, 0.039215087890625, + -0.0039005279541015625, -0.03338623046875, 0.0279541015625, -0.025909423828125, + -0.015777587890625, -0.01395416259765625, 0.0030612945556640625, -0.0364990234375, + -0.01486968994140625, 0.0218658447265625, 0.0191497802734375, 0.032806396484375, + -0.04791259765625, 0.03070068359375, -0.005462646484375, -0.0023899078369140625, + 0.035675048828125, 0.0041961669921875, 0.03900146484375, -0.01160430908203125, + 0.008026123046875, 0.04095458984375, -0.01580810546875, -0.0113067626953125, + 0.003681182861328125, -0.050079345703125, 0.0211639404296875, 0.03759765625, + -0.06072998046875, 0.0228729248046875, 0.0295257568359375, -0.0167236328125, + 0.00846099853515625, 0.0037097930908203125, -0.02191162109375, -0.0477294921875, + 0.0207672119140625, -0.006221771240234375, 0.064697265625, 0.00017321109771728516, + 0.002101898193359375, 0.0118560791015625, -0.03985595703125, 0.004901885986328125, + 0.0193634033203125, -0.0098876953125, -0.007965087890625, 0.005657196044921875, + 0.00946044921875, -0.01181793212890625, 0.0042572021484375, 0.03155517578125, + -0.037933349609375, -0.01454925537109375, -0.0261077880859375, -0.007293701171875, + 0.036712646484375, 0.0269775390625, 0.055908203125, 0.003475189208984375, 0.0186309814453125, + -0.0399169921875, 0.0265960693359375, 0.00809478759765625, 0.003208160400390625, + 0.0262908935546875, -0.0179290771484375, -0.0325927734375, 0.025054931640625, + 0.004734039306640625, -0.0201416015625, 0.03753662109375, 0.0224761962890625, + -0.01476287841796875, 0.0174560546875, 0.01078033447265625, 0.02178955078125, + -0.0025119781494140625, -0.018798828125, -0.0352783203125, -0.01131439208984375, + 0.029327392578125, -0.0308380126953125, 0.0092010498046875, -0.036956787109375, + 0.00494384765625, 0.0037899017333984375, -0.026641845703125, 0.0184478759765625, + -0.021331787109375, 0.019561767578125, -0.00655364990234375, 0.0249176025390625, + -0.0039825439453125, -0.00592803955078125, -0.0038814544677734375, -0.01265716552734375, + -0.034423828125, 0.032501220703125, -0.01102447509765625, -0.0249786376953125, + 0.0021495819091796875, 0.0058135986328125, -0.0171051025390625, -0.01032257080078125, + 0.0012836456298828125, 0.0275115966796875, 0.031646728515625, -0.03765869140625, + -0.017669677734375, -0.0006265640258789062, 0.00582122802734375, -0.0157318115234375, + -0.01212310791015625, -0.007045745849609375, -0.0232086181640625, -0.01342010498046875, + -0.023681640625, 0.035003662109375, 0.03094482421875, -0.0092620849609375, -0.01324462890625, + 0.0077056884765625, -0.00333404541015625, -0.0240631103515625, -0.0261383056640625, + 0.00814056396484375, 0.027099609375, 0.0310516357421875, -0.00933837890625, + -0.025848388671875, 0.015350341796875, 0.0038909912109375, 0.030914306640625, + 0.0038242340087890625, 0.0183563232421875, -0.02545166015625, 0.039825439453125, + 0.00556182861328125, -0.01335906982421875, 0.03436279296875, 0.02105712890625, + 0.0166168212890625, 0.0023021697998046875, -0.041778564453125, -0.0100555419921875, + 0.0150299072265625, -0.01412200927734375, -0.0014553070068359375, -0.00801849365234375, + -0.01396942138671875, 0.01543426513671875, -0.00489044189453125, 0.004730224609375, + -0.01556396484375, 0.003871917724609375, -0.00717926025390625, 0.0760498046875, + 0.006237030029296875, -0.003368377685546875, 0.01242828369140625, 0.006969451904296875, + 0.0194549560546875, -0.01358795166015625, 0.001277923583984375, 0.007747650146484375, + -0.0015687942504882812, -0.00931549072265625, 0.006313323974609375, -0.0200042724609375, + -0.005023956298828125, 0.004085540771484375, -0.0088653564453125, 0.0034847259521484375, + 0.0033245086669921875, 0.0205230712890625, -0.0024204254150390625, 0.0181427001953125, + 0.048583984375, 0.04266357421875, -0.033172607421875, 0.016204833984375, -0.031982421875, + 0.0222015380859375, -0.006000518798828125, -0.002765655517578125, 0.0017108917236328125, + 0.012786865234375, 0.01348876953125, -0.02337646484375, -0.0021228790283203125, + 0.00743865966796875, 0.0274505615234375, -0.01715087890625, -0.0103912353515625, + 0.04681396484375, -0.01343536376953125, -0.034088134765625, -0.0094451904296875, + 0.025177001953125, -0.0474853515625, 0.020660400390625, -0.016082763671875, 0.02978515625, + 0.00464630126953125, -0.007534027099609375, -0.0163726806640625, -0.0001882314682006836, + 0.00861358642578125, 0.0137939453125, 0.0011758804321289062, -0.041259765625, + -0.0472412109375, 0.0004343986511230469, 0.013397216796875, -0.00811004638671875, + -0.02044677734375, -0.0115509033203125, 0.00460052490234375, -0.0133514404296875, + 0.03924560546875, 0.007640838623046875, -0.0200958251953125, -0.020111083984375, + -0.0272216796875, 0.0198974609375, 0.0095672607421875, -0.00905609130859375, + 0.0035839080810546875, 0.0176544189453125, -0.033203125, 0.0017366409301757812, + 0.025360107421875, 0.0295562744140625, 0.01157379150390625, -0.0090789794921875, + -0.039947509765625, -0.0312042236328125, 0.026824951171875, -0.003833770751953125, + 0.0132598876953125, -0.0164794921875, 0.017669677734375, -0.0281829833984375, + 0.0104217529296875, -0.009124755859375, 0.00737762451171875, -0.03131103515625, + 0.0289764404296875, 0.05487060546875, 0.0247039794921875, -0.0105438232421875, + 0.00733184814453125, -0.01158905029296875, -0.035797119140625, -0.0284881591796875, + -0.01183319091796875, 0.00859832763671875, -0.02825927734375, -0.0043792724609375, + 0.032989501953125, -0.0313720703125, -0.0241851806640625, -0.006092071533203125, + -0.007045745849609375, 0.001995086669921875, -0.025146484375, 0.0037517547607421875, + 0.0228271484375, 0.01282501220703125, -0.044189453125, -0.03009033203125, -0.01641845703125, + -0.0160369873046875, -0.00830078125, -0.01123046875, -0.00278472900390625, + 0.01213836669921875, -0.0005488395690917969, 0.00383758544921875, -0.0269927978515625, + -0.01416778564453125, 0.020172119140625, -0.006534576416015625, -0.01279449462890625, + 0.00553131103515625, -0.00048279762268066406, 0.0085296630859375, 0.01187896728515625, + 0.02484130859375, -0.0164031982421875, -0.0265960693359375, 0.0045166015625, + 0.0104217529296875, 0.0311737060546875, 0.032806396484375, 0.016632080078125, + -0.054290771484375, 0.022979736328125, -0.016265869140625, 0.00848388671875, + -0.0024776458740234375, -0.0011501312255859375, -0.0076904296875, -0.00777435302734375, + 0.01012420654296875, 0.00214385986328125, -0.01186370849609375, 0.00147247314453125, + -0.0100860595703125, 0.02947998046875, 0.030242919921875, 0.0016765594482421875, + 0.0100555419921875, -0.0029125213623046875, -0.0135498046875, -0.0104827880859375, + -0.015777587890625, -0.013916015625, -0.0297088623046875, -0.0264892578125, + 0.01020050048828125, 0.01111602783203125, 0.02374267578125, 0.0006995201110839844, + 0.007198333740234375, 0.031707763671875, 0.004970550537109375, -0.0261077880859375, + 0.01358795166015625, -0.0272216796875, -0.00980377197265625, -0.021881103515625, + -0.006641387939453125, 0.00730133056640625, 0.020233154296875, -0.00066375732421875, + -0.035125732421875, -0.00833892822265625, -0.041717529296875, 0.01445770263671875, + 0.024139404296875, 0.0011272430419921875, 0.0180511474609375, -0.007598876953125, + 0.00995635986328125, -0.0133209228515625, 0.0191497802734375, -0.01462554931640625, + 0.021270751953125, 0.01412200927734375, -0.014373779296875, 0.0284881591796875, + -0.016448974609375, -0.016815185546875, 0.0117950439453125, 0.006969451904296875, + -0.011749267578125, -0.0270538330078125, 0.00916290283203125, 0.0230712890625, 0.01953125, + 0.0159912109375, -0.018402099609375, 0.0097198486328125, 0.004116058349609375, + 0.004871368408203125, 0.02081298828125, -0.0110321044921875, 0.0255126953125, + -0.004795074462890625, -0.0226898193359375, 0.01395416259765625, 0.004119873046875, + 0.0316162109375, -0.034393310546875, 0.0298614501953125, 0.0269012451171875, + -0.038665771484375, -0.01165008544921875, -0.04376220703125, 0.00963592529296875, + 0.04351806640625, 0.006572723388671875, -0.0230560302734375, -0.038116455078125, + -0.01776123046875, -0.001796722412109375, 0.0229644775390625, -0.0005831718444824219, + -0.0090484619140625, -0.0252838134765625, 0.0225677490234375, 0.00244140625, 0.05389404296875, + -0.014007568359375, 0.01038360595703125, -0.0036716461181640625, 0.0009222030639648438, + -0.006122589111328125, -0.0023670196533203125, 0.0212860107421875, 0.041015625, + 0.020965576171875, -0.00554656982421875, -0.031097412109375, 0.003032684326171875, + 0.01058197021484375, 0.0010557174682617188, -0.009857177734375, -0.00604248046875, + 0.0269927978515625, -0.029754638671875, 0.0233306884765625, -0.0191650390625, + -0.011688232421875, -0.00922393798828125, 0.0160369873046875, 0.00862884521484375, + -0.0189971923828125, 0.030364990234375, -0.0112152099609375, 0.015899658203125, + 0.00711822509765625, -0.0013303756713867188, 0.006870269775390625, -0.0250701904296875, + 0.0227203369140625, 0.0496826171875, -0.0214385986328125, -0.0205841064453125, + -0.0626220703125, 0.01166534423828125, 0.01125335693359375, 0.01000213623046875, + 0.05364990234375, 0.0047454833984375, -0.0285186767578125, 0.0175018310546875, + -0.0165557861328125, -0.0176849365234375, 0.00274658203125, -0.0245361328125, + 0.0225677490234375, -0.004314422607421875, 0.038848876953125, -0.016204833984375, + 0.017181396484375, 0.029022216796875, -0.00707244873046875, -0.0357666015625, + 0.0011453628540039062, 0.021484375, -0.0118408203125, -0.017578125, 0.007045745849609375, + -0.005786895751953125, -0.002864837646484375, -0.0189208984375, 0.016998291015625, + 0.0193328857421875, 0.0104217529296875, 0.033538818359375, 0.01177978515625, + -0.062347412109375, 0.02667236328125, -0.02978515625, -0.0020046234130859375, + 0.0245208740234375, -0.0144500732421875, -0.016693115234375, 0.0176239013671875, + 0.006542205810546875, 0.0394287109375, 0.00843048095703125, -0.0084075927734375, + 0.01181793212890625, 0.00324249267578125, 0.02264404296875, 0.00823974609375, + 0.022308349609375, 0.051971435546875, 0.01068115234375, 0.01380157470703125, + 0.024322509765625, 0.01221466064453125, -0.0145111083984375, 0.01953125, 0.00867462158203125, + -0.0015201568603515625, 0.0128326416015625, 0.0298309326171875, 0.0267486572265625, + -0.0193634033203125, 0.020751953125, -0.00737762451171875, -0.00397491455078125, + 0.006946563720703125, 0.025482177734375, -0.00732421875, 0.0408935546875, -0.0184783935546875, + -0.00853729248046875, -0.0079345703125, 0.0391845703125, 0.0145111083984375, + 0.048187255859375, -0.0369873046875, -0.01349639892578125, -0.0153961181640625, + 0.0352783203125, -0.0225677490234375, -0.0218505859375, 0.0174713134765625, + 0.0135345458984375, -0.0136260986328125, 0.0120697021484375, 0.0007729530334472656, + 0.01020050048828125, -0.02197265625, 0.0064544677734375, 0.0010051727294921875, 0.04345703125, + 0.00885009765625, 0.001529693603515625, 0.016326904296875, 0.0300140380859375, + -0.022674560546875, -0.0240631103515625, 0.0237274169921875, -0.01483154296875, + 0.0022945404052734375, -0.0374755859375, -0.0184173583984375, 0.02288818359375, + -0.019744873046875, -0.01934814453125, -0.0010433197021484375, -0.0111236572265625, + 0.037353515625, 0.00786590576171875, -0.01065826416015625, -0.023162841796875, -0.0166015625, + -0.0248870849609375, -0.007434844970703125 + ] + }, + { + "tag": "research", + "description": "an event featuring research talks and presentations, where academic researchers and scientists discuss their ongoing work, students present their own findings in symposiums or poster sessions, or attendees connect during dinners with research scientists", + "embedding": [ + -0.01056671142578125, -0.0202178955078125, 0.036468505859375, 0.007366180419921875, + -0.015167236328125, 0.019805908203125, 0.01093292236328125, 0.015777587890625, + 0.0242156982421875, 0.004230499267578125, 0.00881195068359375, -0.01214599609375, + -0.03045654296875, -0.0131072998046875, 0.0027675628662109375, 0.020660400390625, + -0.042816162109375, 0.0281982421875, 0.005886077880859375, 0.053314208984375, + 0.02642822265625, -0.00391387939453125, 0.0299530029296875, 0.039337158203125, + -0.003936767578125, -0.0133514404296875, -0.036712646484375, 0.02947998046875, + 0.058685302734375, 0.016387939453125, 0.0286407470703125, -0.02801513671875, + -0.00933837890625, 0.01145172119140625, -0.03424072265625, 0.050018310546875, + -0.021087646484375, -0.015472412109375, -0.0283203125, 0.0031795501708984375, + 0.003787994384765625, -0.0146942138671875, -0.01560211181640625, 0.0316162109375, + 0.0076141357421875, -0.0269012451171875, -0.0401611328125, -0.048675537109375, + 0.057525634765625, 0.0233306884765625, -0.0038280487060546875, -0.037200927734375, + 0.07000732421875, -0.04144287109375, 0.0210113525390625, -0.0276031494140625, + 0.035247802734375, 0.0007681846618652344, 0.005565643310546875, -0.019195556640625, + 0.0537109375, 0.042022705078125, 0.055755615234375, 0.0152130126953125, -0.039642333984375, + -0.011199951171875, 0.0106658935546875, 0.045074462890625, -0.01538848876953125, + 0.0273284912109375, 0.0697021484375, -0.0233306884765625, -0.04815673828125, 0.0120849609375, + 0.023193359375, 0.0016040802001953125, -0.041900634765625, 0.016143798828125, + -0.007289886474609375, 0.0299835205078125, 0.04681396484375, -0.0013446807861328125, + -0.01386260986328125, -0.008270263671875, -0.024139404296875, -0.043304443359375, + -0.02978515625, -0.005084991455078125, -0.0577392578125, 0.01264190673828125, + 0.0058441162109375, 0.0165557861328125, 0.0037517547607421875, 0.060150146484375, + 0.0728759765625, -0.01396942138671875, 0.0087127685546875, -0.014007568359375, + 0.019866943359375, 0.05340576171875, 0.0193328857421875, -0.0675048828125, -0.024566650390625, + -0.0186920166015625, 1.5497207641601562e-6, 0.006160736083984375, -0.01204681396484375, + -0.042938232421875, 0.00785064697265625, -0.007904052734375, -0.05670166015625, + -0.01861572265625, -0.003620147705078125, -0.0110015869140625, -0.035675048828125, + -0.06036376953125, 0.0253448486328125, -0.07562255859375, 0.0038166046142578125, + 0.0166473388671875, -0.041229248046875, 0.042388916015625, -0.00943756103515625, + 0.050323486328125, 0.036865234375, -0.01277923583984375, -0.02520751953125, + -0.00836944580078125, -0.00139617919921875, 0.0121307373046875, 0.014434814453125, -0.03125, + 0.003520965576171875, -0.055999755859375, -0.025604248046875, -0.00661468505859375, + -0.03131103515625, 0.0257110595703125, -0.059814453125, -0.02923583984375, 0.059722900390625, + 0.0343017578125, 0.00592041015625, 0.015625, 0.035400390625, -0.01175689697265625, + 0.0177154541015625, 0.03985595703125, -0.007843017578125, 0.004940032958984375, + 0.00989532470703125, -0.0185546875, -0.0156402587890625, 0.052154541015625, 0.033721923828125, + 0.004749298095703125, 0.007843017578125, -0.033172607421875, 0.018890380859375, + 0.0160675048828125, -0.024932861328125, -0.0090789794921875, -0.0609130859375, + -0.00139617919921875, -0.057373046875, 0.0178680419921875, -0.020660400390625, + 0.0010623931884765625, -0.06451416015625, -0.035430908203125, -0.055999755859375, + -0.049896240234375, 0.00518035888671875, 0.06317138671875, 0.006656646728515625, + -0.007457733154296875, 0.015350341796875, 0.0330810546875, -0.03961181640625, + 0.050567626953125, 0.03460693359375, 0.0084991455078125, -0.051025390625, -0.044097900390625, + 0.019927978515625, 0.0355224609375, 0.035552978515625, -0.0005626678466796875, + 0.0107879638671875, -0.0130767822265625, 0.0274810791015625, 0.058074951171875, + 0.0264739990234375, 0.03466796875, 0.037384033203125, -0.0266265869140625, -0.029541015625, + 0.033905029296875, 0.001827239990234375, -0.00420379638671875, -0.01953125, + 0.0007791519165039062, 0.00475311279296875, -0.00893402099609375, 0.02740478515625, + -0.0231170654296875, 0.018341064453125, 0.018402099609375, 0.027618408203125, + -0.010101318359375, 0.01438140869140625, 0.033172607421875, 0.020599365234375, + 0.0072174072265625, -0.0225982666015625, -0.0205078125, -0.0148773193359375, 0.06732177734375, + 0.01473236083984375, 0.0095977783203125, -0.02490234375, -0.03338623046875, 0.05029296875, + 0.0447998046875, 0.0548095703125, 0.035186767578125, -0.02301025390625, -0.01021575927734375, + -0.0038166046142578125, -0.0038852691650390625, 0.0137481689453125, -0.004482269287109375, + -0.0216827392578125, 0.003734588623046875, -0.03955078125, 0.01303863525390625, + -0.028717041015625, -0.03411865234375, 0.005733489990234375, -0.0246734619140625, + 0.046539306640625, -0.029541015625, 0.0228118896484375, 0.0302276611328125, + 0.0180206298828125, 0.0589599609375, 0.0161895751953125, -0.01081085205078125, + 0.00934600830078125, -0.007556915283203125, 0.02020263671875, 0.00015628337860107422, + -0.00925445556640625, -0.05389404296875, 0.004718780517578125, -0.05987548828125, + -0.00949859619140625, -0.034637451171875, -0.0019407272338867188, -0.0005664825439453125, + 0.004932403564453125, 0.0034427642822265625, -0.00913238525390625, 0.048736572265625, + -0.075439453125, -0.02105712890625, -0.041595458984375, 0.0089874267578125, + -0.00234222412109375, -0.066162109375, 0.01413726806640625, 0.0035858154296875, + -0.03265380859375, 0.01538848876953125, -0.03466796875, -0.00289154052734375, + 0.032684326171875, 0.09979248046875, 0.0204010009765625, 0.0178070068359375, + -0.003391265869140625, -0.0031833648681640625, 0.00818634033203125, -0.056396484375, + -0.007110595703125, 0.070556640625, -0.00476837158203125, 0.0013895034790039062, + -0.0103302001953125, 0.0173187255859375, 0.015869140625, -0.0257568359375, 0.023651123046875, + 0.046905517578125, -0.0205535888671875, -0.00684356689453125, 0.01068115234375, 0.04345703125, + 0.0255889892578125, -0.051727294921875, 0.0178680419921875, -0.047088623046875, + 0.027679443359375, -0.0225982666015625, -0.049041748046875, 0.0224761962890625, + -0.03826904296875, -0.0229339599609375, 0.0175933837890625, -0.007781982421875, + -0.06884765625, -0.01151275634765625, -0.0149383544921875, 0.022247314453125, 0.02001953125, + 0.007587432861328125, 0.040374755859375, 0.0809326171875, 0.037872314453125, + -0.030059814453125, 0.01153564453125, -0.0141754150390625, 0.058837890625, + -0.0029754638671875, 0.02777099609375, -0.0194244384765625, -0.01336669921875, + -0.0026683807373046875, -0.01275634765625, -0.020538330078125, -0.0098419189453125, + -0.023284912109375, -0.0212249755859375, 0.058319091796875, 0.041534423828125, + -0.00433349609375, 0.03228759765625, 0.0302581787109375, -0.01056671142578125, + -0.0125732421875, -0.04644775390625, -0.025177001953125, -0.0728759765625, + 0.0012187957763671875, 0.01056671142578125, 0.04443359375, -0.0135040283203125, + 0.0075531005859375, -0.0257110595703125, 0.0237579345703125, 0.027679443359375, + 0.003810882568359375, -0.01012420654296875, -0.0163116455078125, -0.009735107421875, + -0.0259552001953125, 0.037200927734375, -0.01271820068359375, 0.01263427734375, + -0.0163421630859375, -9.429454803466797e-5, 0.0257110595703125, 0.0537109375, + -0.0024700164794921875, 0.01132965087890625, 0.0318603515625, -0.043548583984375, + -0.005634307861328125, 0.0116424560546875, -0.08538818359375, -0.00936126708984375, + -0.00623321533203125, 0.0168609619140625, 0.013214111328125, -0.00815582275390625, + 0.056976318359375, 0.007595062255859375, 0.0134735107421875, -0.01123046875, 0.06036376953125, + -0.0163116455078125, -0.0181732177734375, -0.036285400390625, -0.039825439453125, + -0.00087738037109375, 0.044586181640625, -0.0192108154296875, -0.016326904296875, + -0.0343017578125, 0.00479888916015625, 0.03619384765625, 0.014373779296875, + 0.007221221923828125, 0.0033092498779296875, 0.032562255859375, 0.009368896484375, + -0.01552581787109375, 0.031707763671875, -0.0002911090850830078, -0.01177978515625, + -0.0276031494140625, -0.0164337158203125, -0.009429931640625, -0.0087890625, + 0.030975341796875, 0.036651611328125, 0.014434814453125, 0.0150146484375, + 0.0030193328857421875, -0.009002685546875, -0.02447509765625, -0.040924072265625, + 0.03411865234375, -0.00323486328125, -0.050933837890625, -0.007904052734375, + -0.035797119140625, -0.023406982421875, 0.00623321533203125, 0.035858154296875, + 0.06585693359375, -0.01091766357421875, -0.0173187255859375, 0.015228271484375, + 0.0142059326171875, 0.043487548828125, 0.007061004638671875, -0.03521728515625, + -0.0069122314453125, -0.035888671875, -0.030303955078125, 0.01393890380859375, 0.015625, + 0.02777099609375, 0.005889892578125, -0.00417327880859375, 0.02386474609375, + -0.006626129150390625, -0.0296173095703125, 0.01146697998046875, -0.035247802734375, + 0.043914794921875, -0.0254364013671875, -0.044219970703125, -0.032470703125, + -0.0031585693359375, -0.00603485107421875, 0.0271759033203125, 0.01593017578125, + -0.051666259765625, 0.036163330078125, -0.045867919921875, 0.0132904052734375, + 0.007434844970703125, -0.004283905029296875, -0.0361328125, 0.038177490234375, + 0.0292205810546875, 0.018585205078125, 0.006687164306640625, 0.03985595703125, + 0.0162353515625, -0.018951416015625, -0.0091400146484375, 0.01410675048828125, + 0.01552581787109375, -0.013885498046875, 0.04132080078125, 0.032745361328125, + -0.0007109642028808594, 0.0171661376953125, -0.044281005859375, 0.01544952392578125, + 0.0234375, -0.0433349609375, -0.0221099853515625, -0.0006341934204101562, -0.0095977783203125, + -0.021575927734375, 0.0298309326171875, -0.0013837814331054688, 0.027374267578125, + 0.052001953125, 0.0201568603515625, 0.056396484375, -0.018798828125, -0.01470947265625, + -0.03125, 0.015960693359375, 0.024688720703125, 0.004611968994140625, 0.010711669921875, + -0.0045166015625, -0.01239776611328125, 0.039886474609375, -0.03509521484375, + -0.052215576171875, 0.03277587890625, -0.004634857177734375, -0.00548553466796875, + 0.01556396484375, 0.00603485107421875, -0.03924560546875, 0.024200439453125, + 0.052520751953125, 0.043731689453125, -0.08416748046875, 0.0150146484375, 0.0179290771484375, + 0.02801513671875, -0.0148773193359375, -0.06378173828125, 0.042144775390625, + 0.00902557373046875, 0.0017156600952148438, 0.0020465850830078125, -0.021942138671875, + -0.0171051025390625, 0.0106964111328125, -0.004077911376953125, -0.0229644775390625, + -0.00983428955078125, -0.0272064208984375, -0.0009617805480957031, 0.005077362060546875, + -0.018524169921875, 0.0303802490234375, -0.0182037353515625, -0.040802001953125, + -0.03155517578125, 0.01093292236328125, -0.03826904296875, -0.005382537841796875, + -0.00991058349609375, 0.005779266357421875, -0.0142822265625, -0.038482666015625, + -0.0089263916015625, 0.0171966552734375, -0.00809478759765625, 0.00482177734375, + -0.0069122314453125, 0.001750946044921875, 0.0005402565002441406, -0.0088653564453125, + 0.0041656494140625, 0.0140838623046875, -0.01267242431640625, -0.045318603515625, + 0.00574493408203125, -0.003772735595703125, -0.04132080078125, 0.02166748046875, + -0.050933837890625, 0.01416015625, -0.001529693603515625, 0.0133514404296875, + -0.0377197265625, 0.019622802734375, 0.00159454345703125, 0.0187530517578125, + -0.0170745849609375, -0.043212890625, -0.05426025390625, 0.0005779266357421875, + 0.021148681640625, 0.0207672119140625, 0.005886077880859375, 0.0110321044921875, + 0.0411376953125, -0.0025577545166015625, -0.007266998291015625, -0.009918212890625, + -0.0321044921875, -0.026275634765625, -0.00798797607421875, 0.0099639892578125, + 0.0004115104675292969, 0.0005893707275390625, -0.036590576171875, -0.01080322265625, + -0.04052734375, -0.0200042724609375, 0.0017757415771484375, -0.05877685546875, + 0.024749755859375, 0.03070068359375, 0.0007543563842773438, -0.0311279296875, + -0.0165863037109375, -0.0177459716796875, 0.026702880859375, 0.036376953125, + -0.0005116462707519531, 0.0654296875, 0.004749298095703125, 0.03350830078125, + 0.00019681453704833984, -0.035736083984375, 0.0048828125, -0.0229034423828125, + 0.038665771484375, -0.039337158203125, -0.01180267333984375, -0.0045013427734375, + -0.001056671142578125, -0.0484619140625, -0.0167999267578125, -0.01319122314453125, + -0.016815185546875, 0.003170013427734375, 0.038238525390625, 0.0084991455078125, + 0.00270843505859375, -0.0233001708984375, -0.0034027099609375, 0.010406494140625, + -0.046905517578125, 0.0014276504516601562, 0.0160980224609375, -0.00905609130859375, + 0.02777099609375, -0.02130126953125, -5.698204040527344e-5, 0.05108642578125, + 0.02093505859375, -0.033447265625, 0.005001068115234375, -0.01666259765625, 0.017333984375, + 0.021026611328125, 0.0156097412109375, 0.018463134765625, -0.0072174072265625, + -0.00792694091796875, 0.03759765625, -0.0142822265625, -0.003391265869140625, + -0.004283905029296875, -0.0219268798828125, 0.03387451171875, -0.0164642333984375, + 0.006565093994140625, -0.0224151611328125, 0.04193115234375, 0.0235443115234375, + 0.0255584716796875, 0.0034160614013671875, -0.018310546875, -0.01450347900390625, + -0.0278778076171875, -0.0066070556640625, 0.0145416259765625, -0.03961181640625, + -0.00533294677734375, -0.004703521728515625, 0.00031828880310058594, -0.03289794921875, + 0.0081939697265625, -0.029815673828125, -6.949901580810547e-5, 0.0211181640625, + -0.003856658935546875, -0.032928466796875, -0.0216064453125, 0.05096435546875, + 0.010955810546875, 0.0125732421875, -0.006153106689453125, 0.039520263671875, + -0.01477813720703125, -0.01947021484375, 0.059326171875, 0.00806427001953125, + 0.034698486328125, -0.0050506591796875, -0.010101318359375, -0.0225067138671875, + 0.025482177734375, 0.040008544921875, 0.0215911865234375, -0.00836181640625, + -0.01157379150390625, 0.00835418701171875, -0.0233306884765625, 0.0215301513671875, + 0.01064300537109375, -0.023895263671875, 0.026824951171875, -0.025115966796875, + 0.01390838623046875, 0.0017824172973632812, -0.0034351348876953125, -0.004535675048828125, + 0.0091552734375, -0.036834716796875, 0.01050567626953125, -0.0237579345703125, + 0.0179443359375, -0.027099609375, -0.010894775390625, 0.00276947021484375, + -0.00264739990234375, -0.036651611328125, 0.01297760009765625, -0.0008082389831542969, + 0.033721923828125, -0.0108184814453125, -0.0160980224609375, -0.017303466796875, + -0.0298614501953125, 0.0082550048828125, -0.005645751953125, 0.039703369140625, + -0.0157928466796875, 0.0008058547973632812, 0.001285552978515625, 0.005565643310546875, + 0.01558685302734375, -0.0218658447265625, 0.00763702392578125, 0.02252197265625, + -0.0003173351287841797, 0.01006317138671875, 0.0076446533203125, 0.036590576171875, + 0.0274200439453125, 0.01332855224609375, -0.053619384765625, -0.0017976760864257812, + -0.0011816024780273438, -0.0014905929565429688, -0.00916290283203125, -0.01345062255859375, + 0.0259857177734375, 0.0161895751953125, 0.0276031494140625, 0.01168060302734375, + -0.0283203125, -0.0293426513671875, 0.02728271484375, 0.00039315223693847656, + -0.016876220703125, 0.03033447265625, 0.03985595703125, -0.003437042236328125, + 0.021759033203125, 0.022003173828125, -0.00328826904296875, 0.0008230209350585938, + -0.02752685546875, 0.0091400146484375, 0.00958251953125, 0.006683349609375, 0.045562744140625, + 0.0227508544921875, -0.004970550537109375, -0.013946533203125, -0.0023593902587890625, + 0.01959228515625, 0.0117950439453125, 0.0271453857421875, 0.029541015625, 0.0430908203125, + -0.001495361328125, 0.01432037353515625, 0.0192413330078125, -0.0230712890625, + -0.02532958984375, 0.002475738525390625, 0.040130615234375, -0.03375244140625, + 0.0037021636962890625, 0.0208587646484375, 0.016510009765625, 0.045623779296875, + -0.00015985965728759766, 0.0150909423828125, 0.01090240478515625, -0.007633209228515625, + 0.0268707275390625, -0.02947998046875, 0.005031585693359375, -0.0025615692138671875, + -0.00518035888671875, -0.010101318359375, -0.004871368408203125, -0.029144287109375, + -0.03619384765625, -0.03204345703125, -0.05548095703125, -0.0127716064453125, -0.028076171875, + -0.019378662109375, -0.01015472412109375, -0.0194549560546875, -0.00597381591796875, + -0.0241851806640625, 0.006175994873046875, -0.0169219970703125, 0.025360107421875, + 0.0275421142578125, 0.0007348060607910156, 0.04449462890625, 0.000774383544921875, + 0.01323699951171875, -0.029144287109375, 0.01934814453125, -0.01611328125, -0.022308349609375, + 0.01085662841796875, -0.011871337890625, -0.0191497802734375, -0.0005431175231933594, + -0.0096282958984375, -0.0443115234375, 0.00994873046875, -0.033935546875, 0.0188446044921875, + -0.0176239013671875, -0.010101318359375, -0.00640869140625, -0.0012378692626953125, + -0.01464080810546875, 0.026458740234375, 0.0222625732421875, 0.05419921875, 0.027740478515625, + -0.0208587646484375, -0.05389404296875, 0.034515380859375, 0.01406097412109375, + -0.0092010498046875, -0.0008730888366699219, 0.052154541015625, 0.004131317138671875, + 0.006420135498046875, 0.007152557373046875, -0.01534271240234375, 0.02655029296875, + 0.039703369140625, 0.053497314453125, -0.01291656494140625, 0.01055145263671875, + -0.00148773193359375, -0.007266998291015625, -0.0013017654418945312, -0.0126800537109375, + -0.0304107666015625, 0.020416259765625, 0.01739501953125, -0.009613037109375, + 0.028045654296875, 0.02606201171875, -0.050628662109375, -0.01297760009765625, + -0.028167724609375, -0.01181793212890625, -0.00826263427734375, -0.004573822021484375, + 0.0007853507995605469, -0.0211944580078125, 0.0023040771484375, -0.0286865234375, + 0.0218048095703125, -0.00039696693420410156, 0.0030612945556640625, 0.0232086181640625, + 0.01035308837890625, 0.0010547637939453125, 0.01172637939453125, 0.03302001953125, + -0.0022335052490234375, 0.0200653076171875, 0.027801513671875, 0.0214691162109375, + -0.022705078125, 0.0117340087890625, 0.01261138916015625, -0.038818359375, + 0.01392364501953125, -0.00047278404235839844, -0.0133056640625, 0.002841949462890625, + -0.00891876220703125, -0.01016998291015625, 0.004970550537109375, 0.0243377685546875, + -0.0007224082946777344, 0.024444580078125, -5.120038986206055e-5, -0.014739990234375, + 0.0291900634765625, -0.0171661376953125, 0.040618896484375, -0.0059051513671875, + -0.039947509765625, -0.0164337158203125, 0.031341552734375, -0.0219879150390625, + -0.04168701171875, 0.0307464599609375, 0.0011911392211914062, 0.0006508827209472656, + -0.01666259765625, 0.0151519775390625, -0.0030727386474609375, 0.0194854736328125, + -0.0008220672607421875, -0.03570556640625, -0.062042236328125, 0.021942138671875, + -0.0176849365234375, -0.010467529296875, 0.03448486328125, 0.0006136894226074219, + -0.01090240478515625, -0.004474639892578125, 0.01343536376953125, 0.001079559326171875, + 0.03826904296875, 0.041412353515625, 0.0242767333984375, -0.01160430908203125, + 0.005268096923828125, 0.033660888671875, 0.0289154052734375, -0.00814056396484375, + -0.01050567626953125, 0.01331329345703125, 0.0120697021484375, 0.035308837890625, + 0.00440216064453125, 0.01457977294921875, 0.0589599609375, 0.04296875, 0.0246429443359375, + -0.006500244140625, -0.0020923614501953125, -0.0066375732421875, 0.00687408447265625, + 0.0007724761962890625, -0.005786895751953125, -0.06976318359375, 0.0009665489196777344, + -0.00988006591796875, -0.0009503364562988281, -0.010833740234375, -0.028564453125, + 0.0016641616821289062, 0.007602691650390625, 0.0044097900390625, 0.03717041015625, + -0.0161285400390625, -0.00412750244140625, 0.036529541015625, -0.007694244384765625, + 0.0215606689453125, 0.0019989013671875, 0.04290771484375, -0.005199432373046875, + -0.035858154296875, 0.01507568359375, -0.037200927734375, -0.0012292861938476562, + 0.0167388916015625, 0.0029163360595703125, 0.0157012939453125, -0.01800537109375, + -0.0011730194091796875, 0.0024166107177734375, 0.020477294921875, 0.005218505859375, + 0.006992340087890625, 0.00548553466796875, -0.00830841064453125, 0.04693603515625, + -0.01221466064453125, 0.0187530517578125, -0.0225372314453125, 0.017333984375, + 0.0196685791015625, -0.0258636474609375, 0.006885528564453125, -0.0224609375, + 0.003238677978515625, -0.0001016855239868164, 0.008544921875, 0.040557861328125, + 0.011138916015625, 0.0272979736328125, -0.03411865234375, 0.00925445556640625, + -0.0211029052734375, 0.013641357421875, 3.927946090698242e-5, 0.0236053466796875, + -0.03936767578125, 0.0212249755859375, 0.007564544677734375, 0.0018758773803710938, + 0.01505279541015625, -0.0094451904296875, 0.02587890625, 0.0145721435546875, + -0.02081298828125, 0.0172271728515625, -0.01184844970703125, 0.01374053955078125, + 0.00780487060546875, 0.03753662109375, 0.0438232421875, -0.01107025146484375, + -0.01377105712890625, 0.0211944580078125, -0.02886962890625, 0.03753662109375, + 0.01169586181640625, -0.05877685546875, -0.01313018798828125, 0.03411865234375, + 0.005184173583984375, 0.028167724609375, -0.0220184326171875, -0.003803253173828125, + -0.06982421875, 0.0211334228515625, 0.0254058837890625, 0.015625, 0.0096435546875, + 0.0253753662109375, -0.0015106201171875, -0.004787445068359375, 0.013824462890625, + 0.0013208389282226562, -0.0142822265625, -0.0433349609375, 0.01983642578125, + 0.0240020751953125, -0.01229095458984375, -0.00493621826171875, -0.0235748291015625, + -0.026702880859375, 0.0120697021484375, -0.01068115234375, 0.0154876708984375, + 0.0224456787109375, 0.003170013427734375, 0.0279693603515625, 0.009552001953125, + 0.03729248046875, -0.0246124267578125, 0.01364898681640625, 0.0258636474609375, + -0.0009508132934570312, -0.0006895065307617188, -0.0129547119140625, -0.00952911376953125, + 0.01824951171875, -0.00743865966796875, -0.03485107421875, 0.0310821533203125, + 0.01427459716796875, -0.03594970703125, -0.01253509521484375, 0.0252838134765625, + -0.006053924560546875, -0.00690460205078125, 0.0170745849609375, -0.01690673828125, + -0.0119171142578125, 0.0166473388671875, -0.01214599609375, 0.02166748046875, + -0.01255035400390625, -0.02105712890625, 0.01384735107421875, -0.00806427001953125, + 0.0282135009765625, 0.004398345947265625, 0.010467529296875, 0.000263214111328125, + 0.020263671875, -0.04052734375, -0.0274810791015625, -0.023284912109375, + -0.004650115966796875, -0.04638671875, 0.01043701171875, -0.01366424560546875, + -0.01197052001953125, -0.0328369140625, -0.0191650390625, -0.0040283203125, + -0.0158538818359375, -0.005767822265625, 0.02978515625, 0.0222015380859375, -0.0179443359375, + 0.006633758544921875, 0.001220703125, -0.0034656524658203125, 0.01010894775390625, + 0.00695037841796875, -0.0078125, 0.0006937980651855469, -0.016326904296875, + -0.01534271240234375, 0.00920867919921875, 0.03350830078125, -0.002414703369140625, + -0.01399993896484375, 0.0229034423828125, -0.0159912109375, -0.0019989013671875, + -0.0037975311279296875, 0.0300750732421875, 0.0164642333984375, -0.0072174072265625, + 0.015167236328125, 0.006305694580078125, -0.0174713134765625, 0.0031604766845703125, + 0.04461669921875, -0.0122222900390625, -0.0211944580078125, -0.0080108642578125, + 0.00814056396484375, 0.00304412841796875, -0.036895751953125, 0.004398345947265625, + 0.006328582763671875, 0.03460693359375, -0.0045623779296875, -0.004024505615234375, 0.0234375, + 0.0299835205078125, -0.02288818359375, 0.0135650634765625, -0.004032135009765625, + -0.0225830078125, -0.00811004638671875, -0.0294342041015625, 0.015869140625, + -0.04620361328125, 0.0009121894836425781, 0.01236724853515625, 0.06951904296875, + 0.0162353515625, 0.01030731201171875, -0.002964019775390625, -0.010528564453125, + 0.0166778564453125, -0.02044677734375, 0.01413726806640625, 0.0007567405700683594, + -0.0123291015625, 0.0224456787109375, 0.0189971923828125, -0.02044677734375, + -0.00516510009765625, -0.0290679931640625, 0.03375244140625, 0.019134521484375, + -0.025482177734375, -0.01959228515625, -0.0269775390625, 0.0164947509765625, 0.0111083984375, + 0.021484375, -0.032623291015625, 0.0258026123046875, -0.035614013671875, 0.03863525390625, + 0.01287078857421875, -0.0158233642578125, 0.00885772705078125, 0.0099029541015625, + -0.00446319580078125, -0.034332275390625, 0.044525146484375, -0.0270233154296875, + -0.01378631591796875, 0.002819061279296875, -0.032745361328125, 0.007465362548828125, + -0.01181793212890625, -0.013092041015625, -0.01776123046875, 0.043670654296875, + -0.0083160400390625, 0.0196075439453125, -0.003520965576171875, 0.01215362548828125, + 0.0028591156005859375, -8.004903793334961e-5, -0.0015668869018554688, -0.0229949951171875, + -0.01270294189453125, 6.884336471557617e-5, 0.0093994140625, -0.005584716796875, + -0.027679443359375, -0.01471710205078125, -0.02374267578125, 0.02667236328125, + 0.0002815723419189453, -0.0206146240234375, 0.0057525634765625, -0.0032596588134765625, + 0.006195068359375, -0.005100250244140625, -0.002361297607421875, -0.03094482421875, + -0.041229248046875, 0.0161285400390625, -0.0163726806640625, -0.0036487579345703125, + -0.003063201904296875, 0.01885986328125, 0.0223846435546875, 0.0190582275390625, + 0.017730712890625, 0.02630615234375, 0.01544952392578125, 0.0025081634521484375, + -0.0005235671997070312, -0.00403594970703125, 0.03460693359375, -0.01380157470703125, + 0.01500701904296875, -0.041839599609375, -0.023162841796875, -0.0117034912109375, + -0.0085601806640625, -0.006458282470703125, 0.0022830963134765625, 0.01255035400390625, + 0.0250701904296875, 0.01708984375, 0.007221221923828125, 0.01153564453125, 0.0321044921875, + 0.00524139404296875, -0.0106201171875, -0.0150146484375, -0.0035305023193359375, + -0.007049560546875, 0.009765625, -0.0032482147216796875, 0.0017061233520507812, + -0.0081939697265625, -0.042938232421875, -0.0182037353515625, -0.031280517578125, + -0.0208740234375, -0.0086669921875, 0.022918701171875, 0.0127716064453125, -0.036895751953125, + -0.0213165283203125, -0.00855255126953125, 0.0047607421875, -0.0321044921875, + -0.036834716796875, -0.03668212890625, -0.0147705078125, 0.0282135009765625, + -0.007129669189453125, -0.0178680419921875, -0.01058197021484375, 0.034759521484375, + 0.0282440185546875, 0.0013790130615234375, -0.025482177734375, 0.0201873779296875, + 0.00972747802734375, 0.01198577880859375, 0.0172271728515625, 0.0048370361328125, + 0.004222869873046875, 0.0013208389282226562, 0.0036106109619140625, 0.0019741058349609375, + 0.0031452178955078125, 0.0221405029296875, 0.0457763671875, -0.06243896484375, + 0.01739501953125, -0.006435394287109375, -0.047515869140625, 0.031585693359375, + -0.007843017578125, -0.0022029876708984375, -0.00632476806640625, -0.01641845703125, + -0.0281219482421875, -0.02593994140625, 0.0328369140625, 0.01287841796875, 0.031219482421875, + 0.03863525390625, -0.01806640625, -0.016998291015625, -0.00298309326171875, + -0.0189971923828125, 0.0094757080078125, 0.0034618377685546875, -0.01290130615234375, + -0.07672119140625, 0.0053253173828125, 0.0277252197265625, -0.00954437255859375, + -0.013427734375, -0.003208160400390625, 0.01377105712890625, 0.028472900390625, + 0.02203369140625, -0.043670654296875, 0.0190582275390625, -0.038909912109375, + 0.0231781005859375, -0.02728271484375, -0.00531005859375, 0.0034770965576171875, + 0.00104522705078125, 0.0078887939453125, -0.006153106689453125, -0.01128387451171875, + 0.0141754150390625, -0.013641357421875, 0.04608154296875, -0.0019931793212890625, + -0.045440673828125, -0.006046295166015625, 0.0233917236328125, -0.04425048828125, + 0.00823974609375, 0.01287841796875, 0.035003662109375, 0.036102294921875, -0.0131683349609375, + 0.036529541015625, 0.006378173828125, -0.02264404296875, -0.0017452239990234375, + -0.01519012451171875, -0.01059722900390625, -0.041259765625, 0.01386260986328125, + 0.014404296875, -0.0032444000244140625, 0.0264129638671875, -0.0099334716796875, + 0.0155487060546875, -0.00647735595703125, 0.00653839111328125, 0.0170135498046875, + -0.029541015625, 0.02471923828125, -0.034149169921875, -0.0023174285888671875, + 0.06463623046875, -0.020904541015625, 0.0309295654296875, 0.01500701904296875, + 0.0197296142578125, 0.04791259765625, -0.0306243896484375, 0.0033416748046875, + -0.037689208984375, -0.0059661865234375, 0.0016908645629882812, 0.020843505859375, + -0.007965087890625, -0.02655029296875, -0.031707763671875, 0.01861572265625, + 0.0185699462890625, 0.02276611328125, 0.022796630859375, -0.033477783203125, + 0.0033283233642578125, 0.01253509521484375, 0.05426025390625, -0.0174713134765625, + 0.009063720703125, -0.03192138671875, -0.0184783935546875, 0.0279388427734375, + -0.01873779296875, 0.0012903213500976562, 0.01311492919921875, 0.0095062255859375, + 0.0333251953125, -0.013275146484375, -0.0225982666015625, -0.01605224609375, 0.03509521484375, + -0.0200958251953125, -0.0202789306640625, 0.01464080810546875, 0.007335662841796875, + 0.040802001953125, 0.004608154296875, -0.00836944580078125, 0.0121002197265625, + 0.004093170166015625, 0.01544189453125, -0.03497314453125, 0.0183868408203125, + 0.01479339599609375, 0.00479888916015625, 0.00820159912109375, 0.00814056396484375, + -0.0010328292846679688, 0.00433349609375, 0.0188140869140625, 0.041534423828125, + -0.031585693359375, 0.002346038818359375, -0.03961181640625, 0.00315093994140625, + 0.037689208984375, 0.00704193115234375, 0.051727294921875, -0.03179931640625, + -0.00875091552734375, -0.015716552734375, -0.005035400390625, 0.03607177734375, + 0.001224517822265625, -0.0171966552734375, -0.004886627197265625, 0.0289154052734375, + 0.03253173828125, 0.006900787353515625, -0.01139068603515625, 0.047637939453125, + 0.011138916015625, -0.031768798828125, 0.00047850608825683594, 0.034759521484375, + 0.0208740234375, -0.046966552734375, 0.01290130615234375, 0.00830841064453125, + 0.005279541015625, 0.01262664794921875, 0.0213623046875, 0.0130767822265625, + 0.0033416748046875, 0.032073974609375, -0.006298065185546875, -0.0238800048828125, + 0.027008056640625, -0.0111846923828125, 0.01068878173828125, 0.001720428466796875, + -0.044189453125, 0.0062408447265625, 0.01812744140625, 0.006870269775390625, 0.047607421875, + 0.030487060546875, -0.00980377197265625, 0.0227508544921875, 0.003993988037109375, + 0.0214080810546875, 0.017333984375, 0.00188446044921875, 0.0285491943359375, + 0.0171051025390625, -0.00585174560546875, -0.028961181640625, -0.0036487579345703125, + -0.036102294921875, 0.00969696044921875, 0.0206756591796875, -0.022430419921875, + 0.002521514892578125, -0.0006952285766601562, -0.0029239654541015625, 0.0021381378173828125, + -0.0001552104949951172, 0.001499176025390625, -0.0225372314453125, -0.022552490234375, + -0.0009593963623046875, 0.02752685546875, 0.0292816162109375, -0.041656494140625, + 0.0262298583984375, 0.0016918182373046875, -0.01153564453125, -0.0180511474609375, + 0.0018262863159179688, -0.0302581787109375, 0.00035190582275390625, -0.0037326812744140625, + 0.0241546630859375, -0.0275421142578125, -0.002185821533203125, 0.0214385986328125, + -0.0233306884765625, -0.027923583984375, 0.031097412109375, -0.005558013916015625, + 0.0166015625, 0.01398468017578125, -0.0029544830322265625, 0.002567291259765625, + 0.007328033447265625, 0.035186767578125, -0.009765625, 0.0394287109375, 0.041748046875, + -0.0164031982421875, -0.044342041015625, -0.01534271240234375, -0.04193115234375, + -0.0262298583984375, -0.036041259765625, 0.00868988037109375, 0.032867431640625, + -0.019866943359375, -0.03759765625, 0.001667022705078125, -0.03839111328125, 0.03204345703125, + 0.01031494140625, 0.01371002197265625, -0.03466796875, 0.004734039306640625, + -0.00421142578125, -0.021026611328125 + ] + }, + { + "tag": "academics", + "description": "a scholarly event closely related to university coursework, study groups, academic department open houses, thesis presentations, tutoring, or academic advising", + "embedding": [ + -0.0190277099609375, 0.0004925727844238281, 0.0445556640625, 0.01021575927734375, + -0.0111541748046875, -0.00553131103515625, 0.00974273681640625, -0.0207366943359375, + -0.006038665771484375, 0.01018524169921875, 0.0253448486328125, 0.01031494140625, + -0.025299072265625, 0.00909423828125, 0.004657745361328125, 0.055511474609375, + -0.00921630859375, 0.0304412841796875, 0.00879669189453125, 0.04052734375, 0.07769775390625, + -0.00022912025451660156, 0.02154541015625, 0.0180206298828125, 0.00730133056640625, + -0.0177459716796875, -0.0088348388671875, -0.00125885009765625, 0.0672607421875, + 0.0279388427734375, 0.0263519287109375, -0.024383544921875, -0.0091705322265625, + -0.004863739013671875, -0.0141754150390625, 0.0921630859375, -0.034454345703125, + 0.02471923828125, 0.00865936279296875, -0.0246429443359375, 0.030120849609375, + -0.01149749755859375, -0.01424407958984375, -0.0013246536254882812, 0.0011463165283203125, + -0.0374755859375, -0.0183258056640625, -0.04296875, 0.034210205078125, 0.0322265625, + -0.03466796875, -0.02178955078125, 0.06329345703125, 0.035125732421875, -0.0257720947265625, + -0.01224517822265625, 0.014373779296875, 0.0022754669189453125, -0.0141754150390625, + -0.021942138671875, 0.0223388671875, 0.033233642578125, 0.01143646240234375, + -0.01522064208984375, -0.0102691650390625, -0.020050048828125, -0.0005970001220703125, + 0.046966552734375, -0.049407958984375, 0.0217742919921875, 0.06787109375, 0.01174163818359375, + -0.01444244384765625, -0.0175018310546875, 0.02301025390625, 0.06500244140625, + -0.022430419921875, 0.041595458984375, -0.006786346435546875, 0.03155517578125, + 0.06536865234375, -0.01450347900390625, -0.0200653076171875, 0.00966644287109375, + -0.042205810546875, -0.0274658203125, -0.0276947021484375, 0.040496826171875, + -0.03131103515625, -0.0007162094116210938, -0.004680633544921875, -0.003719329833984375, + -0.004711151123046875, 0.032989501953125, 0.033050537109375, -0.0140838623046875, + -0.022735595703125, -0.038970947265625, 0.03790283203125, 0.06402587890625, + 0.0170440673828125, -0.03790283203125, -0.0255126953125, -0.030120849609375, + 0.0082550048828125, 0.01123809814453125, -0.04144287109375, -0.037567138671875, + 0.0247955322265625, -0.00475311279296875, -0.10272216796875, 0.007610321044921875, + -0.01256561279296875, -0.01125335693359375, -0.0011262893676757812, -0.0513916015625, + 0.0614013671875, -0.09881591796875, -0.0306243896484375, 0.00858306884765625, + -0.0009388923645019531, 0.056182861328125, 0.0197296142578125, 0.0073699951171875, + 0.03857421875, -0.0258026123046875, 0.0283050537109375, 0.0031223297119140625, + 0.006595611572265625, -0.0309600830078125, 0.0188751220703125, -0.0302734375, + 0.0143890380859375, -0.0780029296875, -0.0189056396484375, -0.006778717041015625, + -0.046844482421875, 0.01131439208984375, -0.03271484375, -0.0335693359375, 0.053985595703125, + 0.0200042724609375, 0.028564453125, 0.056304931640625, -0.007068634033203125, + 0.005584716796875, 0.0160369873046875, 0.042327880859375, 0.0110931396484375, + 0.0013713836669921875, -0.01322174072265625, 0.02313232421875, -0.016998291015625, + 0.0208740234375, -0.004222869873046875, 0.0182952880859375, -0.024505615234375, + 0.0258941650390625, 0.01067352294921875, -0.0286712646484375, 0.0228271484375, + -0.0018129348754882812, -0.029693603515625, 0.0288848876953125, -0.042205810546875, + -0.00913238525390625, -0.0004825592041015625, 0.0023040771484375, -0.043792724609375, + 0.024139404296875, -0.0312042236328125, -0.0190582275390625, -0.0267181396484375, + 0.0882568359375, 0.059814453125, -0.0129852294921875, 0.018524169921875, 0.01995849609375, + -0.042022705078125, 0.0140838623046875, 0.00603485107421875, 0.00423431396484375, + -0.05419921875, -0.039337158203125, 0.0023784637451171875, 0.0035381317138671875, + 0.0281219482421875, 0.003570556640625, -0.0174560546875, -0.0031147003173828125, + 0.006561279296875, 0.04229736328125, 0.0216217041015625, 0.033294677734375, 0.059295654296875, + 0.021881103515625, -0.0247344970703125, 0.00847625732421875, -0.036773681640625, + -0.00275421142578125, -0.020294189453125, -0.05230712890625, 0.00775909423828125, + -0.008392333984375, 0.0462646484375, -0.0401611328125, -0.0012979507446289062, + 0.025970458984375, 0.01041412353515625, -0.0226898193359375, 0.00518798828125, + -0.0290374755859375, 0.03143310546875, 0.006206512451171875, -0.005466461181640625, + -0.0196380615234375, 0.00391387939453125, 0.01593017578125, 0.007587432861328125, + 0.026519775390625, -0.04754638671875, -0.0184326171875, 0.045166015625, 0.060089111328125, + 0.0165863037109375, 0.0279388427734375, -0.01256561279296875, -0.040130615234375, + 0.02996826171875, -0.059234619140625, -0.0205535888671875, 0.002483367919921875, + -0.0357666015625, 0.014862060546875, -0.0306396484375, 0.004909515380859375, + -0.04766845703125, 0.00850677490234375, 0.005878448486328125, -0.0498046875, 0.0421142578125, + -0.0227203369140625, 0.0036106109619140625, 0.003997802734375, -0.0141754150390625, + 0.03192138671875, -0.00494384765625, -0.025299072265625, 0.00914764404296875, + 0.042633056640625, -0.01395416259765625, -0.013641357421875, -0.00994110107421875, + -0.00940704345703125, -0.0203857421875, -0.06536865234375, 0.0212860107421875, + -0.012603759765625, 0.0030918121337890625, -0.0248260498046875, 0.016693115234375, + -0.022003173828125, 0.004726409912109375, 0.03497314453125, -0.01473236083984375, + 0.005634307861328125, -0.0280914306640625, -0.0181121826171875, -0.00830841064453125, + -0.030242919921875, 0.019866943359375, 0.0073394775390625, -0.037261962890625, + -0.012664794921875, -0.0151519775390625, -0.053985595703125, 0.01093292236328125, + 0.0831298828125, 0.0218353271484375, 0.0113067626953125, -0.0029659271240234375, + -0.00940704345703125, 0.05413818359375, -0.01206207275390625, 0.01216888427734375, + 0.07525634765625, 0.0059356689453125, 0.00922393798828125, -0.03350830078125, + 0.01415252685546875, -0.0159149169921875, -0.031585693359375, 0.02166748046875, + 0.0156707763671875, 0.015899658203125, -0.00566864013671875, -0.0031337738037109375, + 0.0152435302734375, 0.027069091796875, -0.0229644775390625, -0.01126861572265625, + -0.0228118896484375, -0.011260986328125, 0.020355224609375, -0.006465911865234375, + 0.0173797607421875, -0.0110626220703125, -0.0208282470703125, 0.013824462890625, + -0.01020050048828125, -0.00661468505859375, 0.0173797607421875, -0.051025390625, 0.04296875, + 0.003139495849609375, -0.04248046875, -0.0150299072265625, 0.08416748046875, 0.06573486328125, + 0.0188751220703125, -0.005535125732421875, -0.01019287109375, 0.03509521484375, + -0.0007162094116210938, 0.04205322265625, -0.010284423828125, 0.004131317138671875, + 0.03533935546875, -0.01189422607421875, 0.005748748779296875, -0.01433563232421875, + -0.028594970703125, -0.002567291259765625, 0.07305908203125, 0.032135009765625, + -0.0076751708984375, 0.1029052734375, 0.033050537109375, 0.0282745361328125, + -0.041839599609375, -0.0809326171875, -0.01053619384765625, -0.0845947265625, 0.047119140625, + -0.00925445556640625, 0.048187255859375, 0.0030422210693359375, 0.01120758056640625, + 0.0273284912109375, 0.02606201171875, 0.0085906982421875, -0.0260009765625, + -0.0234832763671875, -0.0116729736328125, -0.01087188720703125, -0.00974273681640625, + -0.00852203369140625, -0.0277252197265625, 0.01123046875, 0.032379150390625, 0.0355224609375, + -0.008941650390625, 0.05322265625, 0.00800323486328125, -0.008697509765625, 0.063232421875, + -0.00412750244140625, -0.0198974609375, 0.037384033203125, -0.06512451171875, + -0.01155853271484375, 0.0156097412109375, -0.0027599334716796875, -0.017181396484375, + -0.040283203125, 0.07342529296875, -0.011688232421875, 0.021575927734375, + -0.0014257431030273438, 0.0299835205078125, -0.0238189697265625, -0.01546478271484375, + -0.0438232421875, -0.0408935546875, 0.0188446044921875, 0.016693115234375, + -0.0249786376953125, 0.0088348388671875, -0.021820068359375, 0.01251220703125, + 0.019378662109375, 0.0142974853515625, -0.0153350830078125, -0.002590179443359375, + 0.0225830078125, 0.04229736328125, -0.0211944580078125, 0.039459228515625, 0.03717041015625, + -0.0218353271484375, -0.024627685546875, -0.02972412109375, -0.016815185546875, + 0.004512786865234375, 0.03387451171875, 0.0178680419921875, 0.0029392242431640625, + -0.025909423828125, -0.03973388671875, -0.0241546630859375, -0.01528167724609375, + -0.03662109375, 0.034210205078125, 0.017669677734375, -0.0284881591796875, + -0.0193328857421875, -0.03668212890625, -0.033203125, 0.0032215118408203125, + -0.004177093505859375, -0.00556182861328125, -0.026458740234375, 0.004581451416015625, + -0.009124755859375, 0.0157623291015625, 0.03326416015625, 0.00800323486328125, + -0.0274810791015625, -0.039337158203125, -0.042022705078125, -0.00446319580078125, + 0.02471923828125, 0.00806427001953125, 0.007503509521484375, -0.020172119140625, + -0.0297698974609375, 0.014190673828125, 0.005046844482421875, -0.00545501708984375, + -0.0206146240234375, -0.0382080078125, 0.03192138671875, -0.03826904296875, + -0.01250457763671875, -0.020111083984375, 0.0247344970703125, -0.018707275390625, + -0.0242919921875, -0.0098876953125, -0.022857666015625, -0.01537322998046875, + -0.0008912086486816406, 0.007110595703125, -0.000698089599609375, 0.0211029052734375, + -0.060821533203125, 0.0109405517578125, 0.0184173583984375, 0.01245880126953125, + -0.0157623291015625, 0.0286407470703125, 0.0443115234375, -0.00925445556640625, + 0.02191162109375, 0.0297698974609375, 0.005084991455078125, -0.01299285888671875, + 0.03582763671875, -0.0036792755126953125, 0.005970001220703125, 0.037750244140625, + 0.0226287841796875, 0.040496826171875, 0.00995635986328125, -0.07232666015625, + -0.00867462158203125, 0.01605224609375, -0.037628173828125, 0.006237030029296875, + -0.0087432861328125, -0.0255126953125, 0.01415252685546875, 0.0213470458984375, + 0.04742431640625, 0.017852783203125, 0.029296875, 0.0034923553466796875, -0.0322265625, + 0.037567138671875, 0.01488494873046875, 0.0003352165222167969, 0.0218658447265625, + 0.00070953369140625, -0.015167236328125, 0.0224609375, 0.024627685546875, -0.0093994140625, + 0.02166748046875, 0.002780914306640625, -0.0279693603515625, -0.005947113037109375, + 0.020050048828125, -0.05975341796875, -0.0088653564453125, 0.0361328125, 0.058563232421875, + -0.069580078125, -0.0230560302734375, 0.033843994140625, 0.023712158203125, -0.082275390625, + -0.0472412109375, 0.0241851806640625, 0.0158233642578125, 0.017486572265625, + -0.0167999267578125, -0.024078369140625, 0.033935546875, 0.0088043212890625, 0.0029296875, + -0.050872802734375, 0.00986480712890625, -0.03857421875, -0.00780487060546875, + 0.00902557373046875, -0.032440185546875, -0.0021953582763671875, -0.0416259765625, + -0.0161285400390625, -0.0250091552734375, -0.0302734375, -0.0118408203125, + 0.0038204193115234375, 0.009124755859375, 0.005893707275390625, -0.0123443603515625, + -0.01030731201171875, -0.01520538330078125, 0.0220489501953125, -0.006885528564453125, + -0.05145263671875, 0.02947998046875, 0.0192718505859375, 0.01520538330078125, + -0.0130615234375, 0.0235748291015625, 0.003864288330078125, -0.0042724609375, + -0.00901031494140625, 0.01287078857421875, 0.0014219284057617188, -0.03173828125, + 0.0389404296875, -0.004581451416015625, 0.01031494140625, 0.00038886070251464844, + 0.01064300537109375, -0.009674072265625, -0.02838134765625, 0.00817108154296875, + 0.0006585121154785156, -0.0261077880859375, -0.0007815361022949219, -0.047821044921875, + -0.0036144256591796875, 0.0079803466796875, 0.024169921875, 0.0009274482727050781, + -0.005252838134765625, 0.0288238525390625, -0.00047707557678222656, 0.0308837890625, + -0.0207366943359375, 0.006786346435546875, -0.00235748291015625, -0.0205535888671875, + 0.007686614990234375, 0.00942230224609375, 0.0265960693359375, -0.018463134765625, + 0.01025390625, -0.0124969482421875, -0.02606201171875, -0.0333251953125, -0.059356689453125, + 0.0008411407470703125, 0.042022705078125, 0.0251922607421875, -0.007785797119140625, + 0.01934814453125, -0.0135345458984375, 0.03082275390625, 0.0173187255859375, + 0.01413726806640625, 0.0416259765625, -0.007633209228515625, 0.036224365234375, + -0.006893157958984375, -0.01690673828125, -0.0195770263671875, -0.027862548828125, + 0.033660888671875, -0.0093536376953125, 0.00562286376953125, 0.01090240478515625, + 0.0134124755859375, -0.0287017822265625, -0.027252197265625, -0.01435089111328125, + 0.0035343170166015625, 0.04425048828125, 0.010650634765625, 0.00719451904296875, + 0.0001569986343383789, -0.005985260009765625, 0.0037517547607421875, 0.0243377685546875, + 0.0135040283203125, 0.0079803466796875, 0.0142822265625, -0.016815185546875, + 0.00983428955078125, 0.0233917236328125, 0.0292816162109375, 0.051849365234375, + 0.00811767578125, -0.068115234375, 0.0032482147216796875, -0.016021728515625, + 0.01116180419921875, -0.00029850006103515625, 0.0316162109375, 0.04742431640625, + -0.0187225341796875, -0.008544921875, 0.00704193115234375, -0.019134521484375, + -0.035400390625, -0.014984130859375, -0.0169677734375, 0.036407470703125, + -0.00925445556640625, -0.0033626556396484375, 0.0097198486328125, 0.015045166015625, + 0.01148223876953125, 0.021820068359375, -0.00980377197265625, -0.0014562606811523438, + 0.00696563720703125, -0.0251312255859375, 0.0023193359375, 0.0111236572265625, + 0.0012197494506835938, 0.03948974609375, -0.02728271484375, -0.023162841796875, + -0.0178680419921875, 0.013397216796875, 0.004337310791015625, 0.012237548828125, + -0.023345947265625, -0.0013561248779296875, -0.042022705078125, -0.0254669189453125, + 0.030731201171875, -0.01546478271484375, 0.017822265625, 0.0015010833740234375, + 0.01464080810546875, -0.032379150390625, -0.004302978515625, 0.057861328125, + 0.0117034912109375, 0.036865234375, -0.0188140869140625, 0.00464630126953125, + 0.00579833984375, -0.0148773193359375, 0.030242919921875, -0.01934814453125, + -0.00734710693359375, -0.01424407958984375, 0.031463623046875, -0.0165252685546875, + 0.007122039794921875, 0.0272979736328125, 0.0099029541015625, 0.0232696533203125, + 0.013824462890625, 0.0181884765625, 0.0028781890869140625, 0.019866943359375, + -0.0025997161865234375, -0.0208740234375, -0.032470703125, -0.0034008026123046875, + -0.0179595947265625, 0.00598907470703125, -0.027435302734375, 0.0161590576171875, + 0.02972412109375, 0.01424407958984375, -0.0294647216796875, 0.0130157470703125, + -0.040008544921875, 0.01184844970703125, -0.00748443603515625, 0.0241546630859375, + 0.00287628173828125, 0.00847625732421875, 0.0175018310546875, 0.00974273681640625, + 0.0369873046875, -0.0360107421875, -0.01212310791015625, 0.0015859603881835938, + 0.0018663406372070312, 0.0031223297119140625, -0.0002510547637939453, 0.00661468505859375, + 0.0171051025390625, -0.009613037109375, 0.005374908447265625, -0.04632568359375, + 0.028533935546875, 0.0256195068359375, 0.0041351318359375, -0.049835205078125, + 0.0047454833984375, 0.006542205810546875, 0.0361328125, 0.01329803466796875, + -0.0308074951171875, 0.0164642333984375, -0.003387451171875, 0.01320648193359375, + 0.0104217529296875, -0.0282745361328125, -0.008880615234375, 0.027252197265625, + 0.0190887451171875, -0.0145721435546875, 0.049102783203125, 0.021881103515625, + -0.033721923828125, 0.022247314453125, 0.0185394287109375, -0.01375579833984375, + -0.00739288330078125, -0.0009365081787109375, 0.01042938232421875, -0.007568359375, + 0.0038013458251953125, -0.004543304443359375, -0.034210205078125, -0.024566650390625, + 0.0017328262329101562, -0.0054473876953125, 0.012298583984375, 0.003269195556640625, + 0.005634307861328125, -0.0032749176025390625, 0.0265350341796875, -0.0017309188842773438, + 0.018035888671875, 0.0148468017578125, -0.06103515625, 3.403425216674805e-5, + 0.007537841796875, 0.048126220703125, -0.00959014892578125, -0.0237884521484375, + 0.027008056640625, -0.0193328857421875, 0.01444244384765625, -0.01265716552734375, + -0.022247314453125, 0.033355712890625, 0.001438140869140625, 0.004802703857421875, + -0.044219970703125, 0.0235443115234375, 0.0174102783203125, -0.010101318359375, + -0.042022705078125, 0.0228424072265625, -0.00868988037109375, -0.007312774658203125, + -0.0261383056640625, 0.0016584396362304688, -0.0005106925964355469, -0.039215087890625, + -0.0328369140625, 0.005916595458984375, -0.020355224609375, 0.0019006729125976562, + -0.052734375, 0.0181884765625, 0.0243988037109375, 0.0258941650390625, 0.0286712646484375, + -0.0167388916015625, -0.0021762847900390625, 0.004947662353515625, 0.028228759765625, + -0.03802490234375, -0.01198577880859375, 0.0235595703125, -0.020233154296875, + 0.0224456787109375, -0.022918701171875, -0.0194091796875, -0.01611328125, + -0.01284027099609375, -0.035186767578125, 0.007266998291015625, 0.0271759033203125, + 0.00574493408203125, -0.036041259765625, 0.01406097412109375, -0.030303955078125, + -0.0015859603881835938, 0.016357421875, 0.0225372314453125, 0.02435302734375, + 0.0044097900390625, 0.01105499267578125, 0.0226287841796875, 0.0019683837890625, + 0.01202392578125, 0.00907135009765625, -0.01024627685546875, 0.002964019775390625, + 0.053070068359375, 0.00475311279296875, -0.011138916015625, 0.004810333251953125, + -0.0246124267578125, 0.01837158203125, 0.0302734375, 0.03875732421875, 0.0262451171875, + -0.01384735107421875, -0.006984710693359375, 0.004413604736328125, -0.014373779296875, + -0.01517486572265625, -0.019317626953125, 0.04156494140625, 0.00940704345703125, + 0.0298309326171875, 0.03961181640625, -0.0037555694580078125, -0.0738525390625, + 0.012603759765625, -0.0357666015625, -0.0170135498046875, -0.015625, 0.005847930908203125, + 0.0013265609741210938, -0.065673828125, 0.0196075439453125, -0.031494140625, 0.0191650390625, + 0.007232666015625, 0.0230255126953125, 0.0298614501953125, 0.003719329833984375, + -0.0241546630859375, -0.0110321044921875, 0.0301971435546875, 0.00276947021484375, + -0.0190277099609375, 0.0098724365234375, -0.003383636474609375, 0.0036525726318359375, + 0.03424072265625, 0.0179901123046875, -0.0216064453125, 0.0560302734375, 0.01451873779296875, + -0.007537841796875, 0.006618499755859375, -0.009552001953125, -0.0290374755859375, + 0.00420379638671875, -0.01690673828125, -0.03070068359375, 0.038360595703125, + -0.006458282470703125, 0.0018310546875, 0.0290374755859375, -0.0533447265625, + -0.004512786865234375, -0.01404571533203125, -0.0038299560546875, -0.03790283203125, + 0.00927734375, -0.00213623046875, -0.0179443359375, 0.00907135009765625, 0.01262664794921875, + -0.032989501953125, -0.00685882568359375, 0.018310546875, -0.0102691650390625, + 0.0343017578125, -0.01824951171875, -0.027008056640625, -0.07183837890625, 0.030517578125, + -0.043304443359375, 0.0260772705078125, 0.036865234375, 0.0305633544921875, -0.03948974609375, + -0.0211944580078125, 0.0199737548828125, -0.0306243896484375, -0.023956298828125, + 0.053070068359375, 0.0022907257080078125, -0.0181427001953125, -0.00371551513671875, + 0.033660888671875, 0.040008544921875, 0.0110626220703125, 0.020721435546875, + -0.0164337158203125, -0.020538330078125, 0.002124786376953125, 0.006626129150390625, + -0.0233612060546875, 0.056915283203125, 0.0178985595703125, 0.00897216796875, 0.017578125, + -0.00266265869140625, 0.017791748046875, -0.01171875, 0.0160980224609375, -0.0218963623046875, + -0.029144287109375, -0.01174163818359375, -0.037261962890625, 0.010650634765625, + -0.0123748779296875, -0.00374603271484375, -0.0171966552734375, -0.020477294921875, + -0.0117034912109375, 0.038818359375, -0.0001061558723449707, 0.03509521484375, + 0.0202789306640625, 0.00067901611328125, -0.00850677490234375, 0.02105712890625, + 0.002349853515625, 0.001544952392578125, -0.034576416015625, 0.00347137451171875, + -0.01049041748046875, 0.009765625, 0.033935546875, -0.018341064453125, -0.0014677047729492188, + -0.0228118896484375, 0.031951904296875, 0.0115509033203125, 0.0268707275390625, + 0.019775390625, -0.006298065185546875, 0.01849365234375, -0.018157958984375, + 0.031890869140625, -0.00734710693359375, -0.0060882568359375, -0.0195770263671875, + -0.026153564453125, 0.057037353515625, 0.004894256591796875, 0.004634857177734375, + -0.047149658203125, -0.007266998291015625, -0.0199432373046875, -0.0209197998046875, + 0.06024169921875, 0.0028057098388671875, -0.0188140869140625, -0.041168212890625, + 0.0199432373046875, -0.0051422119140625, 0.014862060546875, -0.0168609619140625, + 0.022552490234375, -0.060333251953125, -0.01203155517578125, 0.00788116455078125, + -0.01776123046875, 0.012298583984375, -0.02972412109375, 0.03741455078125, 0.0170440673828125, + 0.01007080078125, 0.0208892822265625, -0.0222320556640625, 0.0265655517578125, + 0.005889892578125, 0.046630859375, 0.0003867149353027344, -0.026611328125, + -0.0149688720703125, -0.024444580078125, -0.0269317626953125, 0.019256591796875, + 0.0157928466796875, -0.0162506103515625, 0.0037097930908203125, 0.0134124755859375, + -0.0178375244140625, -0.0005588531494140625, -0.00921630859375, -0.01003265380859375, + -0.0283050537109375, 0.00954437255859375, 0.0199127197265625, 0.02105712890625, + 0.0156402587890625, 0.0128173828125, -0.00380706787109375, -0.0282745361328125, + 0.02679443359375, -0.0037097930908203125, -0.0313720703125, -0.01120758056640625, + 0.01508331298828125, 0.029205322265625, 0.0053253173828125, -0.0118560791015625, + 0.003326416015625, -0.003093719482421875, 0.0093231201171875, 0.0027790069580078125, + 0.016387939453125, 0.020904541015625, 0.0306396484375, 0.036865234375, + -0.00016415119171142578, -0.0023517608642578125, -0.0148468017578125, 0.0007886886596679688, + 0.0220184326171875, 0.0182952880859375, -0.022430419921875, -0.0057525634765625, + 0.0057373046875, -0.0016431808471679688, -0.017791748046875, 0.01425933837890625, + 0.0278778076171875, 0.034759521484375, -0.040771484375, 0.0340576171875, -0.0181427001953125, + -0.0024242401123046875, -0.01528167724609375, 0.0164337158203125, -0.02667236328125, + 0.016143798828125, -0.0038604736328125, 0.001003265380859375, 0.00910186767578125, + -0.01126861572265625, -0.00653076171875, 0.0330810546875, -0.0142059326171875, + 0.03265380859375, -0.015411376953125, 0.0163726806640625, 0.037994384765625, + 0.0203704833984375, -0.0037746429443359375, 0.0020008087158203125, -0.01690673828125, + 0.007465362548828125, -0.01222991943359375, 0.026031494140625, -0.0282440185546875, + -0.01396942138671875, -0.0015954971313476562, 0.0005474090576171875, -0.006565093994140625, + -0.0037288665771484375, -0.0112152099609375, 0.029693603515625, 0.0217132568359375, + -0.01995849609375, -0.001617431640625, -0.0014848709106445312, 0.02490234375, -0.018310546875, + 0.010345458984375, -0.027008056640625, -0.004608154296875, 0.002361297607421875, + -0.004608154296875, 0.0216217041015625, 0.049072265625, -0.007419586181640625, + -0.00873565673828125, 0.0216522216796875, -0.0232391357421875, -0.0111236572265625, + -0.007602691650390625, 0.0103302001953125, -0.00458526611328125, 0.00646209716796875, + 0.000965118408203125, 0.006351470947265625, -0.018157958984375, -0.01091766357421875, + 0.0233001708984375, -0.02276611328125, 0.00719451904296875, -0.0211029052734375, + 0.01277923583984375, 0.01739501953125, 0.004673004150390625, 0.04888916015625, + 0.022918701171875, 0.01140594482421875, -0.032012939453125, -0.00818634033203125, + 0.013519287109375, 0.0011510848999023438, 0.01184844970703125, 0.0254669189453125, + 0.02239990234375, -0.020843505859375, -0.0255889892578125, -0.0284881591796875, + 0.01137542724609375, -0.043060302734375, 0.0012598037719726562, 0.012298583984375, + 0.07275390625, 0.0102386474609375, -0.005901336669921875, -0.0127410888671875, + 0.00928497314453125, -0.00262451171875, -0.01788330078125, 0.0188446044921875, + -0.001537322998046875, -0.01432037353515625, 0.01509857177734375, 0.037109375, + 0.005420684814453125, 0.0171051025390625, -0.02325439453125, 0.019073486328125, + -0.0092315673828125, -0.0181732177734375, 0.0017690658569335938, -0.0299072265625, + -0.00826263427734375, 0.006679534912109375, -0.0147857666015625, -0.043243408203125, + 0.001678466796875, -0.0382080078125, 0.0250091552734375, 0.01085662841796875, + 0.053009033203125, -0.003383636474609375, 0.0540771484375, 0.00937652587890625, + -0.0261383056640625, 0.0189056396484375, -0.027252197265625, -0.007476806640625, + 0.01155853271484375, -0.0211944580078125, 0.00510406494140625, -0.02105712890625, + -0.0068206787109375, -0.0015268325805664062, 0.04144287109375, -0.0236053466796875, + 0.033721923828125, 0.007541656494140625, 0.032318115234375, 0.00452423095703125, + -0.017333984375, 0.017852783203125, -0.01180267333984375, 0.03460693359375, + 0.00962066650390625, 0.00489044189453125, -0.023345947265625, -0.00476837158203125, + 0.004695892333984375, 0.017547607421875, 0.0032863616943359375, -0.0102386474609375, + 3.88026237487793e-5, -0.0191192626953125, -0.0083770751953125, 0.0258636474609375, + 0.003200531005859375, -0.004302978515625, -0.0341796875, -0.0212249755859375, + -0.0308074951171875, -0.0011310577392578125, 0.01280975341796875, -0.0015087127685546875, + -0.00890350341796875, -0.00439453125, -0.02471923828125, -0.0116119384765625, + 0.055877685546875, 0.01526641845703125, -0.01111602783203125, -0.0307769775390625, + 0.01537322998046875, 0.021453857421875, -0.0054168701171875, -0.022308349609375, + -0.047882080078125, -0.0022411346435546875, 0.0227203369140625, -0.0020465850830078125, + 0.0007171630859375, 0.013916015625, -0.024871826171875, 0.005306243896484375, + 0.0305328369140625, 0.029693603515625, 0.00954437255859375, 0.0112762451171875, + -0.0018053054809570312, -0.0286712646484375, -0.001544952392578125, -0.0271148681640625, + 0.00020313262939453125, -0.0235443115234375, -0.0305938720703125, -0.00420379638671875, + 0.00939178466796875, -0.0501708984375, -0.007904052734375, -0.0029430389404296875, + 0.006984710693359375, -0.01444244384765625, 0.0203399658203125, 0.018524169921875, + -0.002696990966796875, -0.048980712890625, 0.015228271484375, 0.016632080078125, + -0.02337646484375, -0.029388427734375, -0.04949951171875, 0.01788330078125, + -0.0020599365234375, 0.008453369140625, -0.00978851318359375, 0.026824951171875, + 0.004558563232421875, 0.0297698974609375, 0.01366424560546875, -0.01360321044921875, + -0.0012569427490234375, 0.024505615234375, 0.000789642333984375, 0.0238494873046875, + 0.0098419189453125, 0.000690460205078125, 0.015625, 0.0201263427734375, -0.002040863037109375, + 0.033905029296875, 0.034576416015625, 0.0101776123046875, -0.042083740234375, + 0.038360595703125, 0.0196380615234375, -0.0204010009765625, -0.0234832763671875, + -0.007640838623046875, -0.0075836181640625, -0.0196685791015625, -0.01181793212890625, + -0.005001068115234375, -0.0232391357421875, 0.0210418701171875, -0.029876708984375, + 0.029510498046875, 0.020263671875, 0.0008745193481445312, 0.0013866424560546875, + 0.035369873046875, -0.030670166015625, 0.005176544189453125, -0.005962371826171875, + -0.0008039474487304688, -0.0256500244140625, 0.017608642578125, 0.023193359375, + -0.019775390625, -0.0008764266967773438, -0.00513458251953125, 0.022705078125, + 0.01053619384765625, 0.03106689453125, -0.001873016357421875, 0.0413818359375, + -0.04364013671875, -0.029296875, -0.040008544921875, 0.014678955078125, -0.005401611328125, + 0.0477294921875, 0.003810882568359375, -0.040679931640625, -0.0267181396484375, + -0.0005488395690917969, 0.0278778076171875, 0.00335693359375, -0.0125885009765625, + -0.006679534912109375, -0.024688720703125, 0.01617431640625, -0.019287109375, + 0.0110321044921875, -0.0139923095703125, -0.0032711029052734375, 0.01284027099609375, + -0.0246124267578125, 0.031280517578125, -0.00527191162109375, -0.041412353515625, + 0.02947998046875, -0.0257720947265625, -0.005218505859375, -0.031707763671875, + 0.0035877227783203125, 0.0110015869140625, 0.007801055908203125, -0.0112762451171875, + -0.0408935546875, 0.02362060546875, -0.02874755859375, 0.0147552490234375, 0.01739501953125, + -0.0231475830078125, 0.01068878173828125, -0.0166778564453125, -0.016357421875, + 0.0443115234375, -0.01174163818359375, 0.00930023193359375, -0.00911712646484375, + 0.0338134765625, 0.0111236572265625, -0.02728271484375, 0.0030384063720703125, + -0.0188140869140625, 0.00247955322265625, 0.0175323486328125, 0.0305633544921875, + -0.022735595703125, -0.039703369140625, 0.006561279296875, -0.032684326171875, + 0.0207977294921875, 0.0002219676971435547, -0.035308837890625, -0.022308349609375, + 0.01800537109375, -0.046417236328125, 0.006084442138671875, 0.0211944580078125, + 0.0236663818359375, -0.0222320556640625, -0.0033931732177734375, -0.01424407958984375, + 0.0017595291137695312, -0.01384735107421875, 0.006072998046875, 0.01560211181640625, + 0.0184173583984375, -0.02679443359375, -0.0199432373046875, 0.0305938720703125, + 0.02874755859375, -0.020263671875, -0.0379638671875, 0.01131439208984375, 0.0298004150390625, + -0.006938934326171875, -0.0178375244140625, 0.01776123046875, 0.003505706787109375, + 0.043487548828125, 0.0164337158203125, -0.06640625, 0.00292205810546875, -0.01189422607421875, + 0.025543212890625, -0.024322509765625, 0.0064697265625, -0.0108642578125, + -0.01377105712890625, -0.0037689208984375, 0.047210693359375, -0.006847381591796875, + -0.005764007568359375, -0.06317138671875, -0.0092010498046875, 0.021392822265625, + 0.0307464599609375, 0.07879638671875, -0.005626678466796875, -0.01340484619140625, + 0.01227569580078125, -0.01197052001953125, -0.002727508544921875, 0.00861358642578125, + 0.0026264190673828125, 0.0154266357421875, 0.0184478759765625, 0.022796630859375, + 0.0173797607421875, -0.01183319091796875, 0.06915283203125, 0.002368927001953125, + -0.0008916854858398438, -0.013519287109375, 0.0279083251953125, -0.008514404296875, + -0.038543701171875, 0.01531982421875, 0.02239990234375, 0.0099639892578125, + -0.0131378173828125, 0.01433563232421875, 0.016815185546875, 0.0201873779296875, + 0.0205841064453125, 0.013275146484375, 0.00019538402557373047, 0.0018663406372070312, + -0.0244903564453125, 0.0142822265625, 0.01110076904296875, -0.01068878173828125, + -0.0223388671875, 0.005290985107421875, -0.0003001689910888672, 0.0239105224609375, + 0.0277557373046875, -0.01529693603515625, 0.040069580078125, -0.014312744140625, + 0.016326904296875, 0.00399017333984375, -0.0124053955078125, 0.016265869140625, + 0.019805908203125, -0.0111846923828125, 0.0065155029296875, 0.023284912109375, + -0.014984130859375, 0.01222991943359375, 0.0187225341796875, -0.041595458984375, + 0.0109100341796875, 0.0238189697265625, 0.0233917236328125, 0.0009617805480957031, + 0.01230621337890625, -0.036895751953125, -0.011932373046875, -0.0312042236328125, + 0.0269927978515625, 0.001983642578125, 0.0201263427734375, -0.0177764892578125, + 0.040771484375, 0.0230712890625, 0.0016880035400390625, 0.00888824462890625, + 0.0135040283203125, -0.033111572265625, 0.0155029296875, 0.00153350830078125, + 0.0218658447265625, -0.037445068359375, 0.01255035400390625, 0.04266357421875, + -0.00846099853515625, -0.0253448486328125, 0.00572967529296875, 0.003993988037109375, + 0.033416748046875, -0.02410888671875, -0.003787994384765625, -0.0088348388671875, + 0.0163421630859375, 0.007793426513671875, -0.03729248046875, 0.02093505859375, + 0.033905029296875, -0.0237274169921875, -0.025543212890625, -0.0036792755126953125, + -0.0369873046875, -0.0176239013671875, -0.04193115234375, 0.0082244873046875, 0.054443359375, + -0.023681640625, -0.01184844970703125, -0.0027923583984375, -0.046539306640625, + 0.0305328369140625, 0.01557159423828125, 0.00502777099609375, -0.01264190673828125, + -0.00153350830078125, -0.0302276611328125, -0.011322021484375 + ] + }, + { + "tag": "tech", + "description": "a technology-focused event such as a hackathon, coding workshop, software demonstration, tech startup pitch, or discussions on artificial intelligence, computer science, and engineering.", + "embedding": [ + -0.011077880859375, -0.0048370361328125, -0.006137847900390625, -0.0054931640625, + 0.018035888671875, -0.06256103515625, 0.00023448467254638672, 0.01177978515625, + 0.0309295654296875, 0.025909423828125, 0.0307159423828125, 0.0235748291015625, + -0.05889892578125, -0.026580810546875, -0.0086822509765625, 0.04376220703125, + -0.040924072265625, -0.0246734619140625, 0.0269927978515625, -0.007171630859375, + -0.010162353515625, 0.0199432373046875, 0.0186920166015625, 0.02691650390625, + -0.01195526123046875, 0.0080718994140625, -0.0301361083984375, 0.049896240234375, + 0.0157928466796875, 0.038055419921875, 0.0158538818359375, -0.0194244384765625, + -0.0006718635559082031, -0.0350341796875, 0.06463623046875, 0.0537109375, -0.0079803466796875, + -0.0021877288818359375, 0.004024505615234375, 0.01556396484375, 0.0033626556396484375, + -0.0465087890625, -0.0214691162109375, 0.027069091796875, 0.006565093994140625, + -0.02655029296875, -0.005313873291015625, -0.03436279296875, 0.0081787109375, + 0.06671142578125, -0.04412841796875, -0.0577392578125, 0.035797119140625, 0.0182952880859375, + -0.01068115234375, -0.0003266334533691406, -0.0004706382751464844, 0.0014095306396484375, + -0.01102447509765625, 0.0163421630859375, 0.061553955078125, 0.0195159912109375, + 0.07196044921875, 0.0090484619140625, -0.0165252685546875, 0.02325439453125, 0.0302734375, + 0.0207061767578125, -0.0226593017578125, 0.0285491943359375, 0.046173095703125, + 0.0679931640625, -0.03826904296875, 0.022857666015625, 0.05023193359375, + -0.0010690689086914062, -0.0679931640625, 0.0216827392578125, 0.007137298583984375, + 0.0204010009765625, 0.0240020751953125, -0.047760009765625, -0.005023956298828125, + -0.0245208740234375, 0.00975799560546875, -0.0379638671875, -0.08087158203125, + -0.0234222412109375, -0.0699462890625, 0.0041351318359375, 0.0076141357421875, + 0.036956787109375, 0.04571533203125, 0.049285888671875, 0.033660888671875, + -0.0107269287109375, 0.0124664306640625, -0.02630615234375, 0.0274810791015625, + 0.08135986328125, 0.0109710693359375, -0.06121826171875, -0.0011959075927734375, 0.0107421875, + 0.01012420654296875, -0.00740814208984375, -0.017578125, 0.00024378299713134766, + 0.0204315185546875, -0.0031337738037109375, -0.084716796875, -0.0328369140625, + -0.060028076171875, 0.0133514404296875, -0.036956787109375, -0.04901123046875, + 0.058013916015625, -0.07696533203125, 0.0205230712890625, -0.0136566162109375, + -0.0369873046875, 0.040802001953125, -0.0029296875, 0.0167999267578125, 0.0086822509765625, + -0.00774383544921875, 0.000888824462890625, -1.7404556274414062e-5, 0.008056640625, + -0.0179290771484375, 0.005390167236328125, 0.0401611328125, 0.0216064453125, -0.0584716796875, + 0.01215362548828125, -0.0309295654296875, -0.06744384765625, 0.0283660888671875, + -0.054229736328125, -0.0164337158203125, 0.00775146484375, 0.00785064697265625, + 0.017333984375, 0.034515380859375, 0.02294921875, -0.03314208984375, -0.006145477294921875, + 0.0338134765625, -0.01305389404296875, 0.01947021484375, -0.0180206298828125, + 0.00836181640625, -0.0247650146484375, 0.033782958984375, 0.01032257080078125, + -0.013275146484375, -0.01438140869140625, 0.0164031982421875, -0.0195159912109375, + -0.05535888671875, -0.0447998046875, -0.003276824951171875, -0.01331329345703125, + 0.03387451171875, -0.0272369384765625, -0.0157012939453125, 0.0238800048828125, + -0.02294921875, -0.04254150390625, -0.034088134765625, -0.039215087890625, + -0.0292816162109375, -0.0311737060546875, 0.0828857421875, 0.0280303955078125, + 0.01253509521484375, 0.0205841064453125, 0.0284423828125, -0.00836944580078125, + -0.01666259765625, -0.0237579345703125, 0.01337432861328125, -0.059783935546875, + 0.01273345947265625, -0.04119873046875, -0.0157318115234375, 0.052581787109375, + 0.01184844970703125, 0.0220184326171875, -0.029693603515625, 0.01361083984375, + 0.035980224609375, 0.03363037109375, 0.031402587890625, 0.0184326171875, -0.035797119140625, + 0.008056640625, -0.00485992431640625, 0.05169677734375, -0.006008148193359375, + 0.012420654296875, -0.0330810546875, 0.00664520263671875, 0.00333404541015625, + 0.02850341796875, 0.0120697021484375, -0.004276275634765625, 0.0171661376953125, + 0.004352569580078125, -0.035736083984375, 0.0008845329284667969, 0.0399169921875, + 0.040924072265625, 0.0242462158203125, -0.0023860931396484375, -0.0191650390625, + 0.014495849609375, 0.011627197265625, -0.02886962890625, 0.00682830810546875, + -0.040924072265625, 0.02484130859375, 0.028106689453125, 0.053070068359375, + -0.0194549560546875, -0.0039005279541015625, -0.061553955078125, -0.013671875, + 0.05596923828125, -0.021026611328125, -0.01261138916015625, -0.0160980224609375, + -0.0601806640625, -0.0162506103515625, 0.022247314453125, 0.03851318359375, -0.01995849609375, + -0.034942626953125, 0.005550384521484375, -0.015838623046875, 0.0433349609375, + -0.019195556640625, 0.0251617431640625, -0.01462554931640625, 0.004627227783203125, + 0.03076171875, 0.00960540771484375, 0.0079803466796875, 0.004795074462890625, + -0.003223419189453125, 0.0296783447265625, -0.036529541015625, -0.02490234375, + 0.0120697021484375, 0.042022705078125, -0.034210205078125, 0.003688812255859375, + 0.0135345458984375, 0.0159759521484375, -0.020050048828125, -0.01146697998046875, + 0.01087188720703125, -0.056549072265625, -0.005970001220703125, -0.0406494140625, + 0.0316162109375, 0.00380706787109375, -0.0012636184692382812, -0.01134490966796875, + -0.04461669921875, 0.044586181640625, 0.040863037109375, -0.010467529296875, + 0.00031280517578125, 0.00792694091796875, -0.03790283203125, 0.01241302490234375, + 0.06341552734375, 0.0133514404296875, 0.0294342041015625, -0.00688934326171875, + -0.01313018798828125, 0.045989990234375, -0.01568603515625, -0.0223541259765625, + 0.072021484375, -0.0083160400390625, 0.0142974853515625, -0.0280303955078125, + -0.019256591796875, -0.00424957275390625, -0.0238800048828125, -0.01556396484375, + 0.0133514404296875, 0.042388916015625, 0.0178070068359375, 0.042694091796875, + 0.08624267578125, 0.028717041015625, -0.036407470703125, 0.004665374755859375, + -0.074951171875, -0.02972412109375, -0.043426513671875, -0.02447509765625, 0.032073974609375, + -0.040618896484375, -0.01551055908203125, 0.046783447265625, -0.0238189697265625, + -0.004734039306640625, -0.02972412109375, -0.0011625289916992188, 0.0273590087890625, + -0.0156402587890625, -0.03741455078125, 0.00673675537109375, 0.032257080078125, + 0.01021575927734375, -0.04644775390625, 0.019012451171875, 0.01383209228515625, + 0.049285888671875, -0.022125244140625, 0.045257568359375, -0.0180206298828125, + 0.01439666748046875, 0.0163421630859375, -0.03717041015625, -0.0248260498046875, + -0.051239013671875, -0.0005803108215332031, -0.00930023193359375, 0.030517578125, + 0.035186767578125, 0.0189666748046875, 0.01210784912109375, -0.00765228271484375, + -0.0281982421875, -0.0280303955078125, -0.06097412109375, -0.0203704833984375, + -0.060089111328125, 0.0026454925537109375, 0.0240020751953125, 0.0229034423828125, + -0.0280609130859375, -0.007045745849609375, 0.0338134765625, 0.0301666259765625, + -0.0264739990234375, -0.0291900634765625, -0.0031585693359375, -0.0166015625, + -0.0467529296875, 0.0007128715515136719, -0.0247955322265625, 0.0026683807373046875, + -0.037139892578125, -0.027313232421875, -0.0146942138671875, 0.036773681640625, + 0.06365966796875, 0.01457977294921875, 0.004261016845703125, 0.06298828125, + -0.055816650390625, -0.0335693359375, 0.0006041526794433594, -0.06622314453125, + -0.019073486328125, 0.00408935546875, 0.043212890625, -0.041168212890625, -0.040252685546875, + 0.037384033203125, 0.0169677734375, 0.051971435546875, 0.01494598388671875, + -0.0002574920654296875, 0.01172637939453125, -0.037384033203125, -0.0026836395263671875, + -0.030517578125, -0.0030422210693359375, 0.027069091796875, 0.00031185150146484375, + -0.01139068603515625, -0.034515380859375, -0.0195159912109375, 0.0692138671875, + -0.0391845703125, 0.0159149169921875, -0.005512237548828125, 0.006999969482421875, + -0.00626373291015625, 0.010498046875, -0.01087188720703125, 0.01305389404296875, + -0.0033721923828125, -0.0181884765625, -0.040435791015625, -0.034149169921875, + -0.00609588623046875, 0.0287628173828125, -0.001468658447265625, 0.0219573974609375, + -0.0153045654296875, 0.039276123046875, 0.00975799560546875, -0.01099395751953125, + -0.03466796875, 0.02508544921875, 0.0182342529296875, -0.07086181640625, -0.0222015380859375, + -0.005786895751953125, -0.006717681884765625, 0.00283050537109375, 0.01195526123046875, + 0.034393310546875, -0.0166778564453125, -0.059844970703125, -0.0108795166015625, + 0.0220489501953125, 0.06365966796875, -0.015289306640625, -0.01528167724609375, + 0.038177490234375, -0.0088348388671875, -0.020904541015625, -0.0202789306640625, + -0.00670623779296875, -0.0032939910888671875, -0.0220794677734375, 0.0022525787353515625, + 0.042572021484375, 0.039794921875, 0.03802490234375, -0.00727081298828125, -0.046905517578125, + 0.048858642578125, 0.0110015869140625, -0.019775390625, -0.05194091796875, -0.019439697265625, + -0.03436279296875, 0.00673675537109375, -0.0155792236328125, -0.06317138671875, + -0.013916015625, -0.0218658447265625, 0.0088348388671875, 0.005218505859375, + 0.0205841064453125, -0.047210693359375, 0.0118865966796875, 0.017486572265625, + 0.037933349609375, 0.0169830322265625, -0.0275421142578125, -0.0121002197265625, + -0.007110595703125, 0.0161895751953125, 0.050079345703125, -0.0093536376953125, + -0.003997802734375, 0.030853271484375, -0.0108642578125, -0.007198333740234375, + 0.00836944580078125, 0.017303466796875, 0.052581787109375, 0.0267791748046875, + -0.0213165283203125, -0.032012939453125, 0.0611572265625, -0.00676727294921875, + 0.0041656494140625, 0.008056640625, -0.04827880859375, -0.01389312744140625, + -0.0290679931640625, 0.02520751953125, -0.0015611648559570312, 0.0308837890625, + 0.0012140274047851562, -0.061126708984375, 0.0056304931640625, 0.0166168212890625, + 0.01552581787109375, -0.008392333984375, 0.0066986083984375, -0.0124969482421875, + 0.0074920654296875, -0.044952392578125, -0.02325439453125, 0.0285491943359375, + -0.041351318359375, -0.01751708984375, -0.02154541015625, -0.0201568603515625, + -0.049896240234375, 0.0263519287109375, 0.004024505615234375, 0.050445556640625, + 0.005870819091796875, 0.0166473388671875, -0.00933837890625, 0.03253173828125, + -0.0085296630859375, -0.0469970703125, 0.0546875, 0.0285186767578125, -0.0159149169921875, + -0.03057861328125, -0.006927490234375, 0.011077880859375, -6.437301635742188e-5, + -0.00098419189453125, -0.055999755859375, 0.01045989990234375, -0.05743408203125, + 0.0088958740234375, -0.00115966796875, -0.036865234375, -0.012542724609375, -0.072509765625, + -0.030517578125, -0.02691650390625, 0.0086669921875, 0.02130126953125, 0.0035839080810546875, + 0.01407623291015625, -0.01276397705078125, 0.00251007080078125, -0.0253753662109375, + -0.002117156982421875, -0.0217742919921875, 0.00144195556640625, -0.005649566650390625, + 0.0242462158203125, -0.004669189453125, -0.0186920166015625, -0.015899658203125, + 0.0301971435546875, -0.0176849365234375, -0.0421142578125, -0.022125244140625, 0.02490234375, + 0.03668212890625, -0.01506805419921875, 0.0247039794921875, -0.0316162109375, + 0.03790283203125, 0.02667236328125, 0.046356201171875, -0.0836181640625, 0.0013885498046875, + 0.017303466796875, 0.032623291015625, -0.02581787109375, 0.01488494873046875, + -0.0038776397705078125, 0.0015020370483398438, 0.038055419921875, 0.0034942626953125, + -0.003711700439453125, 0.003082275390625, 0.01483917236328125, -0.004093170166015625, + 0.02557373046875, -0.0091552734375, -0.006839752197265625, -0.01519775390625, + -0.00762939453125, -0.01031494140625, -0.027923583984375, 0.0227203369140625, + -0.005828857421875, 0.0040435791015625, -0.03143310546875, -0.05670166015625, + -0.00943756103515625, -0.0186614990234375, -0.0012674331665039062, 0.032379150390625, + 0.0198974609375, 0.0189056396484375, -0.00431060791015625, 0.02691650390625, + -0.0117645263671875, 0.007320404052734375, 0.001331329345703125, 0.03997802734375, + 0.0195159912109375, 0.008636474609375, -0.0058441162109375, -0.046112060546875, + -0.0016317367553710938, 0.004817962646484375, -0.00420379638671875, 0.0180816650390625, + -0.01285552978515625, -0.0281524658203125, -0.0012178421020507812, -0.01476287841796875, + 0.005672454833984375, -0.004611968994140625, -0.033416748046875, 0.006866455078125, + 0.01934814453125, 0.038177490234375, -0.004955291748046875, 0.0016689300537109375, + -0.0014562606811523438, 0.011627197265625, -0.005126953125, 0.027313232421875, + 0.011505126953125, -0.00901031494140625, -0.024810791015625, 0.005214691162109375, + 0.033966064453125, 0.047393798828125, 0.00433349609375, -0.0176849365234375, + -0.0281219482421875, -0.006816864013671875, 0.015289306640625, 0.0146636962890625, + 0.039154052734375, 0.02020263671875, -0.021728515625, -0.0308380126953125, + 0.00765228271484375, -0.0234375, -0.0031909942626953125, -0.004985809326171875, + -0.040283203125, 0.003231048583984375, -0.010894775390625, -0.01122283935546875, + 0.0025959014892578125, 0.0218505859375, 0.01039886474609375, 0.0170135498046875, + 0.024444580078125, -0.0024871826171875, 0.021209716796875, 0.016204833984375, + -0.00655364990234375, 0.018524169921875, 0.0231781005859375, 0.029632568359375, + -0.0162200927734375, 0.00930023193359375, -0.05413818359375, 0.0220489501953125, + -0.024261474609375, 0.01377105712890625, -0.026336669921875, -0.0255889892578125, + -0.0160980224609375, -0.01268768310546875, 0.04718017578125, 0.0168914794921875, + 0.00460052490234375, -0.00980377197265625, 0.004974365234375, -0.04693603515625, + 0.0308837890625, 0.0350341796875, 0.0248260498046875, 0.025848388671875, -0.01690673828125, + 0.005512237548828125, -0.0228729248046875, 0.0184783935546875, 0.00038504600524902344, + -0.0099639892578125, -7.30752944946289e-5, -0.0301666259765625, -0.01434326171875, + 0.0008535385131835938, -0.004093170166015625, 0.044158935546875, 0.020751953125, + 0.01031494140625, -0.035125732421875, 0.004810333251953125, 0.0030765533447265625, + -0.0027103424072265625, -0.01326751708984375, 0.004638671875, -0.02685546875, + 0.00525665283203125, 0.0095977783203125, -0.019317626953125, -0.038665771484375, + -0.002178192138671875, 0.05462646484375, 0.0203399658203125, -0.042388916015625, + -0.0110626220703125, 0.01490020751953125, 0.03448486328125, 0.0025234222412109375, + 0.00983428955078125, -0.01004791259765625, -0.0198211669921875, -0.022674560546875, + -0.00496673583984375, 0.0084991455078125, -0.01155853271484375, -0.019195556640625, + 0.0139617919921875, -0.0020465850830078125, 0.0186004638671875, -0.0428466796875, + -0.041748046875, -0.01399993896484375, 0.020904541015625, -0.0219268798828125, + -0.0384521484375, 0.03839111328125, -0.0171661376953125, 0.043914794921875, + -0.014617919921875, -0.031280517578125, -0.0114288330078125, 0.03472900390625, + -0.0205230712890625, -0.0305328369140625, 0.0193328857421875, -0.0132904052734375, + -0.0159149169921875, -0.037261962890625, -0.04931640625, -0.01540374755859375, + 0.060577392578125, -0.0269012451171875, 0.0306396484375, 0.025970458984375, 0.009735107421875, + -0.03448486328125, 0.01551055908203125, 0.0298919677734375, 0.036468505859375, + -0.0004334449768066406, -0.0081939697265625, 0.00890350341796875, -0.037384033203125, + 0.01314544677734375, 0.0224761962890625, 0.019256591796875, -0.01258087158203125, + -0.00862884521484375, 0.0164794921875, 0.01403045654296875, -0.036773681640625, + 0.019287109375, 0.028076171875, 0.046112060546875, -0.00432586669921875, 0.0166778564453125, + -0.0081329345703125, -0.026702880859375, 0.007488250732421875, 0.028350830078125, + 0.022491455078125, -0.02880859375, -0.057769775390625, 0.01165008544921875, + 0.0176849365234375, 0.0277557373046875, -0.0221710205078125, 0.007511138916015625, + 0.010833740234375, 0.00910186767578125, 0.01453399658203125, -0.0181121826171875, + -0.00788116455078125, 0.0306854248046875, -0.0177154541015625, -0.007080078125, + 0.0012788772583007812, -0.00791168212890625, -0.024932861328125, -0.05584716796875, + 0.0143585205078125, -0.020599365234375, -0.00795745849609375, -0.043304443359375, + 0.01146697998046875, -0.03143310546875, 0.013916015625, -0.01541900634765625, + 0.02252197265625, 0.0311279296875, 0.0249786376953125, 0.0272979736328125, + -0.0083160400390625, 0.01247406005859375, 0.0157470703125, 0.04071044921875, + -0.04876708984375, 0.043609619140625, -0.0290679931640625, -0.00894927978515625, + 0.005706787109375, -0.0044708251953125, 0.005970001220703125, 0.01053619384765625, + -0.043609619140625, -0.046661376953125, 0.0281829833984375, -0.00921630859375, + 0.0052642822265625, 0.04364013671875, 0.0194549560546875, -0.00641632080078125, + -0.004730224609375, -0.039459228515625, -0.004146575927734375, -0.01061248779296875, + 0.0262908935546875, -0.01119232177734375, -0.018280029296875, -0.0038509368896484375, + -0.0159454345703125, -0.00495147705078125, 0.052032470703125, -0.01496124267578125, + 0.0031719207763671875, 0.01085662841796875, -0.02947998046875, -0.0025634765625, + -0.01200103759765625, 0.032562255859375, -0.010162353515625, -0.0021076202392578125, + 0.006343841552734375, 0.01080322265625, -0.01044464111328125, 0.0246429443359375, + -0.000659942626953125, -0.016998291015625, 0.033721923828125, 0.005031585693359375, + -0.01450347900390625, -0.0073089599609375, 0.01146697998046875, -0.00893402099609375, + -0.03680419921875, 0.009796142578125, 0.00830841064453125, -0.01367950439453125, + -0.0017442703247070312, -0.0170745849609375, -0.0298309326171875, -0.0114288330078125, + 0.02734375, -0.01294708251953125, 0.0300750732421875, -0.0323486328125, -0.024139404296875, + 0.0328369140625, -0.0166168212890625, -0.00940704345703125, 0.01287078857421875, + 0.00968170166015625, -0.013214111328125, -6.0677528381347656e-5, 0.04345703125, + 0.007904052734375, 0.00428009033203125, 0.0684814453125, 0.0325927734375, -0.0283050537109375, + 0.048095703125, -0.004390716552734375, -0.01097869873046875, 0.006351470947265625, + 0.00812530517578125, -0.02276611328125, -0.01149749755859375, 0.0221710205078125, + 0.00594329833984375, 0.01343536376953125, -0.0020275115966796875, 0.041778564453125, + 0.01325225830078125, -0.032073974609375, 0.0019330978393554688, -0.0129852294921875, + -0.0279541015625, 0.00873565673828125, -0.003704071044921875, -0.00554656982421875, + -0.003086090087890625, -0.0055084228515625, 0.04266357421875, -0.03826904296875, + -0.01091766357421875, 0.0288848876953125, -0.01187896728515625, 0.040130615234375, + -0.0002593994140625, -0.021697998046875, -0.005771636962890625, -0.002399444580078125, + 0.0076904296875, 0.005016326904296875, 0.029876708984375, 0.00753021240234375, + -0.0450439453125, 0.01108551025390625, 0.01456451416015625, -0.020599365234375, + -0.0196685791015625, 0.0067291259765625, 0.03692626953125, -0.0084991455078125, + 0.039642333984375, 0.002086639404296875, -0.0038299560546875, 0.032562255859375, + 0.002361297607421875, 0.01483917236328125, 0.00939178466796875, 0.029510498046875, + 0.011505126953125, -0.0238800048828125, 0.024566650390625, -0.02606201171875, + -0.0169830322265625, 0.00072479248046875, -0.041290283203125, -0.0157623291015625, + -0.0025501251220703125, 0.0211334228515625, -0.020843505859375, -0.053192138671875, + 0.0096588134765625, -0.008758544921875, 0.0170440673828125, -0.015625, -0.01222991943359375, + 0.0198974609375, -0.00041031837463378906, 0.01094818115234375, 0.025787353515625, + 0.0012254714965820312, 0.0008769035339355469, 0.0031375885009765625, 0.0179901123046875, + -0.01288604736328125, 0.0102996826171875, 0.0208282470703125, 0.038543701171875, + 0.002178192138671875, -0.006870269775390625, -0.00928497314453125, 0.0310821533203125, + 0.0288848876953125, 0.01110076904296875, 0.01221466064453125, 0.002407073974609375, + 0.00791168212890625, -0.003322601318359375, 0.022430419921875, 0.01367950439453125, + 0.0191650390625, 0.03564453125, -0.0229949951171875, 0.01161956787109375, + -0.002582550048828125, 0.027679443359375, -0.0016584396362304688, 0.0181884765625, + 0.017730712890625, 0.00965118408203125, -0.01209259033203125, -0.0015363693237304688, + -0.015869140625, -0.0067138671875, 0.01666259765625, 0.025299072265625, 0.0281982421875, + 0.00036597251892089844, -0.04931640625, -0.01251220703125, -0.034576416015625, + 0.035736083984375, -0.019866943359375, -0.001468658447265625, -0.0287933349609375, + 0.02264404296875, 0.0007939338684082031, 0.00502777099609375, 0.0325927734375, + -0.004245758056640625, 0.0087890625, -0.01059722900390625, -0.01427459716796875, + 0.03289794921875, 0.002468109130859375, 0.037506103515625, -0.01364898681640625, + 0.05438232421875, 0.02862548828125, 0.0330810546875, 0.0092620849609375, -0.033233642578125, + -0.0254058837890625, -0.01421356201171875, -0.00830078125, -0.027740478515625, + -0.01824951171875, -0.00284576416015625, -0.0014801025390625, 0.031829833984375, + 0.0120086669921875, -0.00360870361328125, -0.02593994140625, 0.0014247894287109375, + 0.0163726806640625, -0.0298004150390625, 0.0129852294921875, -0.0307159423828125, + 0.0158538818359375, 0.004245758056640625, -0.011810302734375, -0.0176239013671875, + 0.00965118408203125, -0.00249481201171875, 0.00971221923828125, 0.0178680419921875, + 0.01496124267578125, 0.004520416259765625, -0.0223388671875, -0.01155853271484375, + -0.0003657341003417969, -0.0106353759765625, 0.055816650390625, 0.007572174072265625, + 0.0308837890625, 0.0107269287109375, 0.0238037109375, 0.006633758544921875, + 0.0013189315795898438, -0.014678955078125, 0.00838470458984375, 0.0010251998901367188, + -0.00824737548828125, -0.034454345703125, -0.0185089111328125, -0.0025196075439453125, + -0.011199951171875, -0.0014019012451171875, 0.00920867919921875, 0.004467010498046875, + -0.03460693359375, -0.0022487640380859375, 0.0233306884765625, 0.021209716796875, + -0.00896453857421875, 0.0052337646484375, -0.00426483154296875, 0.025299072265625, + 0.0310821533203125, 0.03045654296875, -0.0281829833984375, -0.0211639404296875, + 0.0035953521728515625, -0.0115814208984375, -0.0036907196044921875, 0.01229095458984375, + 0.004390716552734375, 0.031982421875, 0.01007080078125, 0.00403594970703125, + -0.03900146484375, -0.004352569580078125, -0.00795745849609375, 0.034088134765625, + -0.03460693359375, 0.009124755859375, 0.0003516674041748047, -0.0071563720703125, + -0.018035888671875, 0.0189971923828125, -0.0126495361328125, -0.01971435546875, + -0.004924774169921875, 0.0341796875, 0.0301971435546875, 0.0231170654296875, + -0.01102447509765625, -0.0024356842041015625, 0.03741455078125, -0.0003135204315185547, + -0.0113372802734375, -0.01043701171875, 0.00319671630859375, -0.0197296142578125, + -0.045379638671875, 0.031707763671875, 0.0433349609375, 0.0271453857421875, 0.024505615234375, + 0.0202484130859375, 0.0003597736358642578, -0.031890869140625, -0.006969451904296875, + -0.007640838623046875, 0.0257720947265625, 0.01082611083984375, 0.02783203125, + 0.0001208186149597168, -0.029693603515625, -0.015625, 0.01021575927734375, + 0.004962921142578125, -0.00850677490234375, 0.0103607177734375, 0.007080078125, + -0.01456451416015625, -0.01343536376953125, 0.0131072998046875, -0.005855560302734375, + 0.01036834716796875, -0.0148773193359375, -0.0311737060546875, -0.00421142578125, + 0.0005130767822265625, -0.011627197265625, -0.0146026611328125, -0.00045990943908691406, + -0.0007510185241699219, -0.007297515869140625, -0.027435302734375, -0.026214599609375, + -0.034027099609375, -0.0005545616149902344, -0.0186004638671875, 0.0665283203125, + -0.02203369140625, 0.0034122467041015625, -0.0063629150390625, 0.0075836181640625, + -0.00030231475830078125, -0.006237030029296875, 0.039459228515625, -0.0295562744140625, + -0.0204620361328125, -0.0213775634765625, 0.00586700439453125, 0.00682830810546875, + 0.0250701904296875, -0.0042877197265625, 0.0009617805480957031, -0.01263427734375, + -0.03857421875, 0.006988525390625, -0.02325439453125, 0.0113677978515625, 0.022674560546875, + 0.01641845703125, -0.0270233154296875, 0.029388427734375, -0.0250244140625, + 0.0172882080078125, 0.0184173583984375, 0.015167236328125, 0.01143646240234375, + -0.0011739730834960938, -0.00888824462890625, -0.0017871856689453125, 0.004642486572265625, + 0.018768310546875, 0.01029205322265625, -0.0140380859375, -0.008148193359375, + 0.01155853271484375, -0.02154541015625, -0.00792694091796875, -0.004169464111328125, + 0.0469970703125, -0.040374755859375, 0.0236053466796875, 0.006595611572265625, + -0.009033203125, -0.01548004150390625, 0.0175933837890625, -0.019561767578125, + -0.002166748046875, 0.01338958740234375, 0.021270751953125, 0.00916290283203125, + -0.0028591156005859375, -0.047760009765625, 0.005634307861328125, 0.02105712890625, + 0.01187896728515625, 0.0219573974609375, -0.0281829833984375, -0.0112762451171875, + -0.049285888671875, 0.006649017333984375, -0.0198822021484375, -0.0207977294921875, + -0.048553466796875, -0.017333984375, 0.01220703125, -0.00201416015625, 0.022369384765625, + -0.02606201171875, 0.045654296875, 0.00452423095703125, 0.01099395751953125, + 0.002349853515625, -0.00949859619140625, 0.0042724609375, 0.00457000732421875, + -0.00798797607421875, -0.0086822509765625, 0.0309295654296875, 0.0010585784912109375, + 0.0222930908203125, -0.0166015625, 0.0099029541015625, 0.0005846023559570312, + 0.0164947509765625, 0.015716552734375, 0.001621246337890625, 0.0121917724609375, + 0.040069580078125, 0.0030002593994140625, 0.0043792724609375, -0.0155487060546875, + -0.01068878173828125, -0.0128326416015625, -0.0146026611328125, 0.00958251953125, + -0.0158538818359375, -0.0033779144287109375, 0.006206512451171875, -0.0276336669921875, + 0.0172271728515625, -0.0086822509765625, -0.01256561279296875, -0.027435302734375, + -0.0205230712890625, 0.005275726318359375, 0.0030498504638671875, -0.027435302734375, + 0.0127716064453125, -0.00391387939453125, -0.0196075439453125, 0.0382080078125, + 0.0281524658203125, -0.00258636474609375, 0.00384521484375, -0.0167694091796875, + -0.015777587890625, 0.0200347900390625, -0.0217132568359375, 0.0291900634765625, + -0.0106964111328125, 0.0176239013671875, 0.0259857177734375, -0.025909423828125, + -0.03509521484375, 0.044677734375, -0.020721435546875, -0.00646209716796875, + 0.0307769775390625, 0.0250244140625, -0.0021915435791015625, -0.0147857666015625, + 0.0009984970092773438, -0.00920867919921875, -0.01506805419921875, 0.0271759033203125, + -0.0013856887817382812, -0.024444580078125, 0.0222625732421875, 0.006103515625, + -0.033782958984375, -0.0009765625, -0.012542724609375, -0.0029010772705078125, + 0.0290069580078125, -0.0125732421875, 0.01294708251953125, -0.0308380126953125, + 0.0066375732421875, 0.0018148422241210938, 0.06268310546875, -0.016448974609375, + 0.030731201171875, -0.01535797119140625, -0.005023956298828125, 0.006313323974609375, + 0.046356201171875, -0.01131439208984375, -0.00792694091796875, -0.03759765625, + -0.0003681182861328125, 0.00543212890625, -0.00078582763671875, 0.01314544677734375, + 0.0045928955078125, 0.009490966796875, 0.0247039794921875, 0.0228118896484375, + -0.04193115234375, -0.001323699951171875, 0.00641632080078125, 0.0155029296875, + -0.056732177734375, -0.01519775390625, -0.0211944580078125, 0.0178680419921875, + -0.0261077880859375, -0.03155517578125, -0.0176239013671875, 0.0301361083984375, + 0.023406982421875, 0.035552978515625, 0.006526947021484375, -0.0019626617431640625, + -0.013671875, 0.0090484619140625, 0.0011243820190429688, 0.03204345703125, 0.016387939453125, + 0.005462646484375, 0.01062774658203125, -0.0159912109375, 0.006237030029296875, + -0.0238189697265625, -0.027099609375, 0.0011692047119140625, 0.0004448890686035156, + -0.003398895263671875, -0.04534912109375, -0.0198974609375, -0.006000518798828125, + 0.007389068603515625, 0.01169586181640625, -0.01409912109375, -0.01349639892578125, + 0.009033203125, 0.016937255859375, -0.00598907470703125, -0.04156494140625, + -0.003055572509765625, -0.0162811279296875, 0.003093719482421875, -0.0016794204711914062, + 0.01355743408203125, 0.017913818359375, 0.01087188720703125, -0.033477783203125, + -0.00545501708984375, -0.03466796875, 0.01409912109375, -0.0386962890625, + -0.01119232177734375, 0.0032978057861328125, 0.005672454833984375, -0.0156707763671875, + 0.0141143798828125, -0.0081787109375, -0.0011243820190429688, 0.034423828125, + -0.01551055908203125, 0.0197906494140625, -0.03857421875, -0.0030689239501953125, + -0.017120361328125, 0.0504150390625, -0.00948333740234375, 0.043212890625, + -0.00952911376953125, 0.00890350341796875, -0.036376953125, -0.0032176971435546875, + -0.01163482666015625, 0.03814697265625, 0.007282257080078125, 0.043212890625, + -0.0174407958984375, 0.0037555694580078125, 0.004405975341796875, 0.0231781005859375, + -0.03961181640625, 0.0087432861328125, -0.0012912750244140625, 0.028594970703125, + 0.0186920166015625, -0.00121307373046875, -0.0211944580078125, -0.00012302398681640625, + 0.0233154296875, 0.03125, -0.023681640625, 0.0301971435546875, -0.0287933349609375, + 0.031341552734375, -0.003017425537109375, -0.0009813308715820312, -0.0175628662109375, + 0.019927978515625, 0.0158843994140625, 0.0313720703125, -0.04498291015625, + -0.0225677490234375, -0.0211639404296875, -0.0014696121215820312, 0.0172576904296875, + -0.006317138671875, 0.010345458984375, -0.0187835693359375, -0.0601806640625, + -0.043975830078125, -0.03857421875, 0.0029621124267578125, 0.01177978515625, + -0.0273590087890625, -0.0003941059112548828, 0.0015325546264648438, 0.0289459228515625, + -0.0175933837890625, 0.0122528076171875, 0.0258941650390625, -0.01531982421875, + 0.0046539306640625, -0.009033203125, 9.244680404663086e-5, -0.0208740234375, + -0.0011444091796875, 0.0130767822265625, 0.0185089111328125, 0.026824951171875, + -0.038482666015625, 0.0143585205078125, 0.0216217041015625, 0.05010986328125, + 0.027069091796875, 0.01172637939453125, 0.005657196044921875, 0.0233306884765625, + -0.0066680908203125, 0.0142364501953125, 0.0032329559326171875, -0.01407623291015625, + 0.002513885498046875, -0.00270843505859375, 0.04034423828125, 0.0232696533203125, + 0.00988006591796875, -0.0067596435546875, -0.00955963134765625, 0.0078887939453125, + 0.03668212890625, 0.00826263427734375, 0.0026721954345703125, 0.0183868408203125, + -0.004863739013671875, -0.0073394775390625, -0.01293182373046875, 0.01215362548828125, + -0.005252838134765625, 0.0242767333984375, 0.03790283203125, 0.002040863037109375, + -0.010223388671875, 0.043060302734375, 0.00849151611328125, -0.00695037841796875, + -0.0091552734375, 0.01363372802734375, -0.030487060546875, -0.001483917236328125, + 0.0015716552734375, 0.02410888671875, 0.01232147216796875, 0.00203704833984375, + 0.048919677734375, 0.042816162109375, 0.02191162109375, 0.0011644363403320312, + 0.01221466064453125, -0.026092529296875, 0.005466461181640625, 0.00838470458984375, + 0.019989013671875, -0.02972412109375, -0.0082244873046875, 0.0251312255859375, + 0.0185699462890625, 0.021148681640625, 0.0013141632080078125, 0.011566162109375, + 0.0046844482421875, 0.0026493072509765625, 0.0144805908203125, -0.0189666748046875, + 0.0281524658203125, 0.0211029052734375, 0.00783538818359375, 0.0312042236328125, + 0.040130615234375, -0.0185394287109375, 0.0202484130859375, 0.0214691162109375, -0.04296875, + -0.012969970703125, -0.0218658447265625, -0.0245819091796875, 0.0219879150390625, + -0.045501708984375, -0.032501220703125, -0.0092926025390625, -0.0855712890625, + 0.01015472412109375, 0.03790283203125, 0.0272369384765625, -0.0113372802734375, + -0.0185699462890625, -0.005535125732421875, 0.0072784423828125 + ] + }, + { + "tag": "entrepreneurship", + "description": "an event dedicated to learning about venture capital and startups, like talks from guest speakers who are active investors and entrepreneurs or platforms for students to pitch their own startup ideas", + "embedding": [ + -0.03759765625, 0.00449371337890625, -0.0026683807373046875, 0.01192474365234375, + -0.00907135009765625, -0.0182342529296875, -0.0131378173828125, 0.061126708984375, + 0.0303192138671875, 0.03472900390625, 0.01727294921875, 0.00603485107421875, + -0.0167999267578125, -0.01322174072265625, -0.032989501953125, 0.028228759765625, + -0.0443115234375, 0.01275634765625, 0.006557464599609375, 0.0278778076171875, + 0.02789306640625, 0.00872039794921875, 0.02276611328125, 0.041259765625, 0.00606536865234375, + -6.145238876342773e-5, 0.0035610198974609375, 0.0206146240234375, 0.0247344970703125, + 0.0168914794921875, 0.08123779296875, -0.01210784912109375, -0.047210693359375, + 0.011932373046875, 0.0009765625, 0.0293426513671875, 0.0007038116455078125, + -0.00751495361328125, 0.026092529296875, 0.01678466796875, -0.02801513671875, + -0.03277587890625, 0.0176239013671875, 8.106231689453125e-6, 0.020294189453125, + -0.00844573974609375, -0.039947509765625, -0.019378662109375, -0.01311492919921875, + 0.054351806640625, -0.021514892578125, -0.04730224609375, 0.07415771484375, -0.02386474609375, + -0.01136016845703125, -0.034210205078125, 0.00876617431640625, -0.0208587646484375, + 0.013641357421875, 0.03143310546875, 0.0280303955078125, 0.013671875, 0.041412353515625, + -0.006290435791015625, -0.0270843505859375, 0.003940582275390625, -0.0177154541015625, + 0.03662109375, -0.023162841796875, 0.058074951171875, 0.048614501953125, 0.0262298583984375, + -0.043853759765625, 0.00970458984375, -0.006122589111328125, 0.02734375, -0.060455322265625, + 0.019561767578125, 0.00502777099609375, 0.0007762908935546875, 0.06365966796875, + -0.002899169921875, -0.0117950439453125, -6.812810897827148e-5, -0.0362548828125, + -0.03350830078125, -0.054107666015625, -0.007080078125, -0.02630615234375, 0.050262451171875, + 0.005542755126953125, 0.03790283203125, 0.006717681884765625, 0.0618896484375, + 0.03619384765625, 0.026031494140625, 0.04022216796875, -0.044403076171875, 0.034027099609375, + -0.0013256072998046875, 4.9233436584472656e-5, -0.035552978515625, -0.016845703125, + 0.016204833984375, 0.0047149658203125, 0.0010051727294921875, -0.0345458984375, + 0.01390838623046875, 0.0247344970703125, -0.0218658447265625, -0.07977294921875, + 0.0131988525390625, 0.0122833251953125, 0.0130157470703125, -0.044281005859375, -0.078125, + 0.0253753662109375, -0.08599853515625, -0.0118560791015625, -0.0218963623046875, + -0.057373046875, 0.013946533203125, -0.0123291015625, 0.039337158203125, 0.01186370849609375, + -0.0179595947265625, -0.004291534423828125, 0.044830322265625, -0.0117950439453125, + 0.004730224609375, -0.015777587890625, -0.01343536376953125, 0.03192138671875, + -0.015869140625, -0.004425048828125, -0.0197296142578125, -0.0791015625, 0.01727294921875, + -0.047882080078125, -0.0306854248046875, 0.0159759521484375, 0.0014638900756835938, + 0.03228759765625, -0.0018262863159179688, 0.028350830078125, -0.033538818359375, + -0.0224761962890625, 0.016082763671875, -0.03302001953125, 0.01181793212890625, + -0.024261474609375, -0.023468017578125, -0.034454345703125, 0.0308380126953125, + -0.010772705078125, -0.0252685546875, -0.041534423828125, -0.008331298828125, + 0.006549835205078125, -0.0297698974609375, -0.0242462158203125, -0.0198211669921875, + -0.0171661376953125, -0.010772705078125, -0.0240325927734375, 0.004497528076171875, + -0.0181884765625, -0.0269012451171875, -0.08447265625, -0.016876220703125, -0.04083251953125, + -0.05792236328125, 0.02337646484375, 0.039520263671875, 0.0120697021484375, + -0.0209503173828125, 0.003963470458984375, 0.038665771484375, -0.0179290771484375, + -0.0180816650390625, -0.030914306640625, -0.02239990234375, -0.028900146484375, + -0.0089874267578125, -0.0160675048828125, 0.0665283203125, 0.028778076171875, + -0.03704833984375, 0.033538818359375, -0.04522705078125, -0.0303497314453125, + 0.0021514892578125, 0.031707763671875, 0.0767822265625, 0.033447265625, 0.0013933181762695312, + -0.0192718505859375, -0.0019216537475585938, 0.0078277587890625, -0.00730133056640625, + -0.0389404296875, -0.0279693603515625, 0.00971221923828125, 0.010284423828125, + 0.0225830078125, 0.01334381103515625, 0.0343017578125, 0.041748046875, 0.027587890625, + -0.024444580078125, 0.0321044921875, 0.0113372802734375, -0.0020275115966796875, + 0.0026073455810546875, -0.01155853271484375, -0.01305389404296875, 0.01654052734375, + 0.028839111328125, -0.0208282470703125, 0.0278167724609375, -0.0007600784301757812, + -0.00537872314453125, 0.0274658203125, 0.035308837890625, 0.01409912109375, 0.0499267578125, + -0.021087646484375, -0.034332275390625, 0.026092529296875, -0.017547607421875, + -0.024444580078125, -0.03302001953125, -0.036590576171875, -0.039520263671875, + 0.0013256072998046875, 0.035491943359375, -0.0203399658203125, -0.040924072265625, + 0.02276611328125, -0.0033054351806640625, 0.0206451416015625, -0.003612518310546875, + 0.0030078887939453125, -0.0062408447265625, 0.0640869140625, 0.03680419921875, + -0.03717041015625, -0.01441192626953125, 0.0236968994140625, 0.08673095703125, + 0.0721435546875, -0.01654052734375, -0.0190582275390625, 0.0026264190673828125, + 0.043548583984375, -0.044647216796875, 0.0236053466796875, -0.0257110595703125, + 0.02423095703125, -0.043304443359375, 0.03704833984375, 0.013885498046875, + -0.005184173583984375, 0.01387786865234375, -0.0654296875, 0.00665283203125, -0.068603515625, + -0.0295562744140625, 0.0005044937133789062, -0.01641845703125, 0.0089874267578125, + -0.00608062744140625, -0.016143798828125, 0.0009064674377441406, 0.028472900390625, + -0.0288238525390625, -0.0082855224609375, 0.0740966796875, 0.04913330078125, 0.03985595703125, + 0.01035308837890625, 0.00688934326171875, -0.033782958984375, 0.0098724365234375, + 0.006290435791015625, 0.07427978515625, 0.0245208740234375, 0.0173797607421875, + -0.045196533203125, -0.0236968994140625, 0.00917816162109375, -0.014984130859375, + 0.02960205078125, 0.00695037841796875, 0.0316162109375, 0.005710601806640625, + 0.06561279296875, 0.0182647705078125, 0.031524658203125, -0.029052734375, 0.0238800048828125, + -0.08251953125, -0.0103912353515625, -0.007022857666015625, -0.01342010498046875, + 0.023162841796875, -0.032806396484375, 0.013580322265625, -0.0022869110107421875, + -0.023712158203125, -0.041900634765625, 0.00566864013671875, -0.00289154052734375, + 0.0204620361328125, -0.0026264190673828125, -0.0013914108276367188, -0.0161285400390625, + 0.01605224609375, 0.0142364501953125, -0.0296478271484375, -0.01007080078125, + -0.0012788772583007812, 0.032928466796875, 0.0006799697875976562, 0.04736328125, + -0.0290374755859375, 0.0323486328125, -0.02392578125, -0.0032806396484375, -0.047088623046875, + -0.00022363662719726562, -0.0211181640625, -0.0270843505859375, 0.033905029296875, + 0.0157012939453125, -0.0162200927734375, 0.0130462646484375, -0.03082275390625, + 0.001285552978515625, -0.034637451171875, -0.041748046875, -0.0341796875, -0.06060791015625, + 0.0201873779296875, 0.01409912109375, 0.0190582275390625, -0.00858306884765625, + 0.023040771484375, -0.01026153564453125, 0.035736083984375, -0.01274871826171875, + -0.02960205078125, 0.0145416259765625, -0.026824951171875, -0.005939483642578125, + -0.031768798828125, 0.02789306640625, -0.024261474609375, 0.0038738250732421875, + -0.00396728515625, -0.02252197265625, 0.0160980224609375, 0.056549072265625, + 0.006656646728515625, 0.052642822265625, 0.0276031494140625, 3.7670135498046875e-5, + -0.0185089111328125, 0.05780029296875, -0.09930419921875, -0.01214599609375, + -0.004337310791015625, 0.044158935546875, 0.019317626953125, -0.027130126953125, + -6.67572021484375e-6, 0.024993896484375, 0.0316162109375, -0.0269622802734375, + 0.025604248046875, 0.0171966552734375, -0.028350830078125, -0.0232086181640625, + -0.01007080078125, -0.0036258697509765625, 0.05706787109375, 0.020843505859375, + -0.056182861328125, -0.0301055908203125, -0.014556884765625, 0.00023615360260009766, + -0.0102386474609375, 0.00032138824462890625, 0.01398468017578125, 0.0535888671875, + 0.0294952392578125, 0.004405975341796875, -0.0167388916015625, 0.0087738037109375, + -0.0150146484375, -0.044769287109375, -0.0394287109375, -0.04071044921875, + -0.01152801513671875, 0.046600341796875, 0.003284454345703125, 0.01470947265625, + 0.009674072265625, -0.0126953125, -0.01922607421875, 0.024658203125, -0.03802490234375, + 0.020355224609375, -0.01461029052734375, -0.0211181640625, 0.009857177734375, + 0.007781982421875, -0.06951904296875, 0.037841796875, 0.07501220703125, 0.0270538330078125, + -0.057830810546875, -0.0267791748046875, 0.0167236328125, 0.052886962890625, 0.03753662109375, + 0.00921630859375, 0.035858154296875, -0.051605224609375, -0.039794921875, -0.0226287841796875, + -0.028411865234375, -0.0153045654296875, 0.005908966064453125, -0.0089874267578125, + -0.043548583984375, 0.026092529296875, 0.01435089111328125, -0.003841400146484375, + -0.0014438629150390625, -0.033355712890625, 0.021453857421875, -0.0123291015625, + -0.05291748046875, -0.038055419921875, -0.027008056640625, -0.02203369140625, + -0.0003025531768798828, -0.0217132568359375, -0.0244598388671875, 0.006622314453125, + 0.0017299652099609375, 0.00803375244140625, -0.032501220703125, 0.0102691650390625, + -0.061065673828125, -0.0079345703125, 0.024749755859375, 0.02197265625, 0.035430908203125, + -0.01296234130859375, 0.00138092041015625, 0.007450103759765625, 0.0106658935546875, + 0.0738525390625, -0.01042938232421875, -0.00311279296875, 0.02618408203125, -0.005859375, + 0.0119171142578125, 0.0295867919921875, -0.0171661376953125, 0.023345947265625, + 0.0233306884765625, -0.053985595703125, -0.00531005859375, 0.007904052734375, + -0.03973388671875, -0.009918212890625, -0.0129241943359375, -0.0190277099609375, + 0.020751953125, 0.0092010498046875, 0.026611328125, 0.0289459228515625, 0.03594970703125, + -0.024627685546875, -0.026458740234375, -0.0248260498046875, 0.0012216567993164062, + 0.02728271484375, 0.01435089111328125, -0.006610870361328125, -0.0113983154296875, + -0.0124359130859375, -0.01678466796875, -0.00778961181640625, -0.007568359375, + 0.0089874267578125, 0.0164947509765625, 0.0003237724304199219, -0.039794921875, + -0.040771484375, 0.00788116455078125, 0.039276123046875, 0.0496826171875, -0.061553955078125, + -0.0004870891571044922, 0.01358795166015625, 0.05316162109375, -0.051025390625, + -0.048004150390625, 0.0014200210571289062, 0.0311126708984375, 0.007411956787109375, + 0.0258636474609375, -0.01337432861328125, -0.0137481689453125, 0.01209259033203125, + 0.031494140625, -0.034210205078125, 0.0303497314453125, -0.0185699462890625, + -0.0158233642578125, -0.003192901611328125, -0.0025615692138671875, -0.0180816650390625, + -0.03594970703125, -0.0518798828125, -0.046142578125, -0.031951904296875, 0.009674072265625, + 0.0039520263671875, -0.0019817352294921875, -0.0224151611328125, 0.039947509765625, + -0.044403076171875, 0.00962066650390625, 0.03851318359375, 0.004657745361328125, + -0.0007371902465820312, 0.0262298583984375, 0.0020618438720703125, -0.016876220703125, + -0.0259857177734375, 0.01137542724609375, 0.0189971923828125, -0.0294189453125, + -0.0340576171875, 0.066650390625, 0.0218963623046875, -0.021392822265625, -0.0174102783203125, + -0.048980712890625, 0.00600433349609375, 0.0034770965576171875, -0.033233642578125, + -0.0660400390625, 0.00919342041015625, 0.02703857421875, 0.032745361328125, 0.016510009765625, + 0.032379150390625, -0.03765869140625, -0.01001739501953125, 0.035797119140625, + -0.0057525634765625, -0.0254974365234375, -0.00525665283203125, 0.042633056640625, + 0.004222869873046875, -0.0184783935546875, 0.0108489990234375, -0.0037784576416015625, + 0.0268707275390625, -0.003551483154296875, 7.224082946777344e-5, -0.021820068359375, + 0.00963592529296875, 0.004207611083984375, -0.0106353759765625, -0.02008056640625, + -0.045257568359375, -0.00846099853515625, -0.0304107666015625, 0.01268768310546875, + 0.003322601318359375, 0.01096343994140625, 0.00086212158203125, -0.031585693359375, + -0.01103973388671875, -0.013580322265625, 0.0101318359375, 0.0091094970703125, + 0.0101470947265625, -0.0121002197265625, 0.0190582275390625, 0.005222320556640625, + -0.038330078125, -0.038177490234375, -0.0013608932495117188, 0.032806396484375, + -0.0010433197021484375, 0.0025653839111328125, -0.01284027099609375, 0.004711151123046875, + -0.06451416015625, -0.01824951171875, -0.01377105712890625, -0.0391845703125, + 0.0167694091796875, 0.01141357421875, -0.0180816650390625, 0.00507354736328125, + -0.00371551513671875, -0.006443023681640625, 0.01204681396484375, -0.007171630859375, + 0.050689697265625, 0.01084136962890625, -0.017822265625, -0.01013946533203125, + -0.00957489013671875, 0.04632568359375, 0.0159454345703125, 0.031768798828125, + -0.0013408660888671875, -0.044342041015625, 0.013519287109375, 0.02008056640625, + -0.00815582275390625, 0.03271484375, 0.041046142578125, -0.016143798828125, -0.03466796875, + -0.0090789794921875, -0.040374755859375, 0.006687164306640625, -0.0028247833251953125, + -0.01187896728515625, 0.004276275634765625, -0.0257720947265625, -0.0160675048828125, + 0.00833892822265625, 0.0231475830078125, 0.0001844167709350586, 0.041839599609375, + 0.0275421142578125, 0.015655517578125, 0.02154541015625, -0.01568603515625, + 0.0189971923828125, 0.034088134765625, -0.0021572113037109375, 0.02056884765625, + 0.006671905517578125, -0.01068115234375, -0.057220458984375, 0.021240234375, 0.006103515625, + 0.03692626953125, 0.021759033203125, 0.01235198974609375, -0.03369140625, -0.0229034423828125, + 0.037567138671875, -0.005672454833984375, 0.01026153564453125, -0.027008056640625, + 0.0174560546875, -0.0286865234375, 0.040802001953125, 0.01171875, -0.007568359375, + 0.025421142578125, 0.0164031982421875, -0.0191802978515625, -0.0277557373046875, + 0.04315185546875, 0.0275421142578125, 0.0079803466796875, 0.01702880859375, -0.0225830078125, + 0.040374755859375, -0.0333251953125, -0.0036830902099609375, 0.0169219970703125, + -0.0118865966796875, 0.035797119140625, -0.0178375244140625, -0.0120086669921875, + 0.007663726806640625, -0.0029773712158203125, -0.00231170654296875, -0.0010156631469726562, + -0.0404052734375, 0.0225677490234375, 0.027130126953125, 0.005237579345703125, + -0.0258636474609375, -0.025634765625, 0.00475311279296875, -0.0105133056640625, + -0.0107269287109375, 0.009613037109375, 0.041748046875, 0.00875091552734375, + 0.030303955078125, -0.02484130859375, -0.0271759033203125, -0.031829833984375, + -0.017181396484375, -0.0024814605712890625, 0.003902435302734375, -0.032806396484375, + 0.022796630859375, -0.0172576904296875, -0.027130126953125, 0.0098114013671875, + -0.0262298583984375, -0.0234222412109375, 0.0016689300537109375, 0.01169586181640625, + -0.00882720947265625, -0.02294921875, 0.0302734375, 0.0262298583984375, 0.00844573974609375, + -0.03399658203125, -0.01261138916015625, -0.0021610260009765625, 0.0252532958984375, + -0.0226593017578125, -0.0029163360595703125, -0.006183624267578125, -0.01233673095703125, + -0.023712158203125, -0.031036376953125, -0.0394287109375, -0.046966552734375, + 0.0123748779296875, 0.0020885467529296875, 0.01332855224609375, 0.0014171600341796875, + 0.0176849365234375, -0.0256805419921875, 0.00782012939453125, 0.0227813720703125, + -0.0137786865234375, -0.01110076904296875, -0.0206298828125, 0.007671356201171875, + 0.00746917724609375, -0.01355743408203125, 0.002857208251953125, 0.0116119384765625, + -0.011260986328125, -0.0137786865234375, -0.004253387451171875, 0.0235137939453125, + -0.004169464111328125, -0.0221099853515625, 0.0222015380859375, 0.0187225341796875, + -0.00812530517578125, 0.019439697265625, 0.028778076171875, -0.0290374755859375, + 0.01959228515625, -0.013397216796875, 0.044158935546875, -0.0177764892578125, + -0.03448486328125, -0.0245208740234375, -0.0186309814453125, 0.00847625732421875, 0.025390625, + -0.0159149169921875, 0.01148223876953125, 0.01293182373046875, 0.01317596435546875, + -0.0140533447265625, 0.0158538818359375, -0.0104217529296875, 0.016357421875, -0.05126953125, + 0.00487518310546875, -0.0228424072265625, -0.058074951171875, -0.00521087646484375, + -0.004810333251953125, -0.02777099609375, -0.007568359375, -0.028411865234375, + 0.0199432373046875, -0.034210205078125, -0.0014886856079101562, -0.00925445556640625, + 0.020782470703125, -0.01068878173828125, 0.017547607421875, 0.0228729248046875, + -0.00418853759765625, 0.03399658203125, -0.030029296875, 0.015289306640625, + -0.01047515869140625, -0.01113128662109375, -0.0188140869140625, 0.00536346435546875, + -0.01824951171875, 0.0035190582275390625, -0.01425933837890625, -0.0233306884765625, + 0.01366424560546875, -0.0258941650390625, 0.01776123046875, -0.02996826171875, + 0.051300048828125, -0.01050567626953125, 0.03802490234375, -0.0206756591796875, + 0.005649566650390625, -0.0137939453125, 0.046783447265625, 0.0187530517578125, + 0.043853759765625, 0.04022216796875, 0.003604888916015625, -0.024871826171875, + -0.002529144287109375, 0.01230621337890625, 0.01739501953125, -0.017730712890625, + 0.00829315185546875, 0.0188446044921875, -0.006290435791015625, 0.007022857666015625, + 0.0023479461669921875, 0.0260162353515625, 0.0245361328125, 0.01061248779296875, + 0.0021190643310546875, -0.0019502639770507812, 0.01462554931640625, 0.053558349609375, + -0.0155029296875, 0.0231170654296875, 0.002567291259765625, -0.028350830078125, + -0.014434814453125, 0.0170745849609375, 0.058502197265625, -0.0055999755859375, + -0.05670166015625, 0.02105712890625, -0.005390167236328125, -0.014984130859375, + -0.0163726806640625, -0.01117706298828125, -0.028778076171875, -0.07000732421875, + 0.0182952880859375, -0.00118255615234375, 0.0229949951171875, -0.047515869140625, + 0.011962890625, -0.0025691986083984375, 0.033050537109375, 0.002925872802734375, + -0.018218994140625, 0.0008397102355957031, 0.000446319580078125, 0.035308837890625, + 0.03271484375, 0.027008056640625, -0.018890380859375, 0.04254150390625, 0.01317596435546875, + -0.0264434814453125, 0.0166015625, 0.0177001953125, 0.01385498046875, 0.021270751953125, + 0.0018472671508789062, -0.009033203125, -0.048095703125, 0.01407623291015625, + -0.03814697265625, -0.024627685546875, 0.0006432533264160156, 0.00341033935546875, + 0.02484130859375, -0.040863037109375, 0.01100921630859375, -0.019378662109375, + -0.01029205322265625, 0.0160369873046875, 0.01180267333984375, 0.00988006591796875, + 0.0131378173828125, 0.0162506103515625, 0.0204620361328125, -0.017486572265625, + -0.011383056640625, -0.00875091552734375, -0.032073974609375, 0.0460205078125, + -0.01180267333984375, -0.0274658203125, -0.01187896728515625, 0.0281829833984375, + 0.025634765625, 0.0007476806640625, 0.0341796875, 0.0164031982421875, -0.0487060546875, + 0.0167083740234375, 0.0168304443359375, -0.04119873046875, -0.004116058349609375, + 0.03497314453125, -0.01107025146484375, -0.004398345947265625, 0.003162384033203125, + -0.01041412353515625, -0.01354217529296875, 0.011871337890625, 0.02764892578125, + 0.0145416259765625, -0.018524169921875, 0.024322509765625, 0.02532958984375, + -0.017547607421875, 0.013092041015625, 0.037689208984375, 0.004444122314453125, + -0.0055999755859375, -0.0499267578125, 0.002300262451171875, 0.0296478271484375, + 0.0228424072265625, -0.045440673828125, -0.033111572265625, 0.02734375, 0.0015392303466796875, + -0.0024261474609375, 0.0017032623291015625, -0.017913818359375, -0.00754547119140625, + 0.00665283203125, -0.0068359375, 0.018707275390625, -0.006397247314453125, 0.0083465576171875, + 0.047515869140625, -0.02142333984375, 0.006633758544921875, 0.0262451171875, + 0.01247406005859375, 0.00626373291015625, -0.0257110595703125, -0.0017719268798828125, + -0.0074920654296875, 0.01275634765625, 0.0169830322265625, -0.00115203857421875, + 0.0132598876953125, -0.0180511474609375, 0.036895751953125, -0.0250396728515625, + 0.0255584716796875, 0.020172119140625, -0.0284423828125, 0.01558685302734375, + -0.0019969940185546875, 0.0214385986328125, 0.0055694580078125, -0.0020542144775390625, + 0.0044708251953125, 0.01971435546875, 0.02105712890625, -0.03216552734375, 0.037506103515625, + 0.001003265380859375, -0.010528564453125, -0.034027099609375, -0.01380157470703125, + 0.0203094482421875, 0.0305328369140625, -0.0186309814453125, -0.00998687744140625, + -0.00457000732421875, -0.039093017578125, 0.02056884765625, -0.0155792236328125, + -0.00022923946380615234, -0.059783935546875, -0.038360595703125, 0.0066986083984375, + 0.0384521484375, 0.017333984375, -0.0780029296875, -0.01678466796875, -0.02325439453125, + -0.010162353515625, 0.01123046875, 0.004405975341796875, -0.000640869140625, + -0.0094451904296875, 0.005725860595703125, 0.01178741455078125, -0.01934814453125, + 0.0203857421875, -0.027984619140625, -0.0300140380859375, -0.003322601318359375, + 0.016387939453125, -0.0309906005859375, -0.0089111328125, 0.001117706298828125, + -0.03387451171875, 0.0259857177734375, 0.020660400390625, -0.00830078125, -0.0341796875, + 0.01605224609375, 0.00659942626953125, 0.0149688720703125, -0.003704071044921875, + 0.002902984619140625, -0.02801513671875, 0.0004949569702148438, -0.018096923828125, + 0.00567626953125, 0.0015497207641601562, -0.0032520294189453125, -0.003932952880859375, + 0.0262298583984375, 0.005397796630859375, -0.0231475830078125, 0.00461578369140625, + -0.0239715576171875, 0.0012760162353515625, -0.004486083984375, 0.01226806640625, + 0.037261962890625, 0.049163818359375, 0.052459716796875, 0.031829833984375, 0.048736572265625, + -0.018035888671875, 0.019989013671875, 0.0316162109375, -0.004878997802734375, + -0.033477783203125, -0.00347137451171875, -0.01152801513671875, 0.004791259765625, + 0.002170562744140625, -0.02435302734375, -0.0230712890625, -0.00433349609375, + -0.01151275634765625, 0.01074981689453125, 0.01355743408203125, 0.06280517578125, + -0.00045561790466308594, 0.006687164306640625, -0.034393310546875, 0.0211029052734375, + 0.0180816650390625, -0.00426483154296875, -0.0211181640625, -0.0269622802734375, + -0.007671356201171875, 0.0175933837890625, 0.0086517333984375, -0.003925323486328125, + -0.004886627197265625, 0.0082550048828125, -0.0193328857421875, 0.035064697265625, + -0.030487060546875, 0.0026531219482421875, -0.041717529296875, 0.004924774169921875, + 0.00907135009765625, 0.038055419921875, -0.00848388671875, 0.0208740234375, + -0.00611114501953125, -0.0030994415283203125, 0.0087890625, 0.01324462890625, + -0.01316070556640625, 0.01522064208984375, 0.030364990234375, -0.0203704833984375, + -0.022369384765625, 0.0234832763671875, 0.01312255859375, -0.004116058349609375, + 0.02691650390625, 0.0172271728515625, 0.003993988037109375, -0.004108428955078125, + -0.0192718505859375, 0.03778076171875, 0.008514404296875, -0.000591278076171875, + 0.00531768798828125, 0.040374755859375, -0.009979248046875, -0.020965576171875, + 0.0014524459838867188, 0.0299835205078125, 0.0030269622802734375, 0.03399658203125, + -0.01337432861328125, -0.01369476318359375, -0.0211029052734375, -0.038604736328125, + 0.032501220703125, 0.023223876953125, 0.04010009765625, -0.01001739501953125, + 0.044158935546875, -0.024200439453125, -0.0162353515625, 0.040069580078125, + 0.005115509033203125, -0.025604248046875, -0.00977325439453125, -0.01435089111328125, + 0.005245208740234375, 0.0008873939514160156, -0.01172637939453125, -0.0236053466796875, + -0.004550933837890625, -0.014312744140625, 0.00998687744140625, -0.008392333984375, + 0.0006561279296875, -0.00322723388671875, -0.0007987022399902344, 0.0033626556396484375, + 0.06097412109375, 0.0010833740234375, 0.0228424072265625, -0.01204681396484375, + 0.0198211669921875, 0.0153656005859375, -0.031280517578125, -0.006561279296875, + -0.0167236328125, 0.0179290771484375, 0.0054931640625, 0.00823974609375, 0.00685882568359375, + -0.01215362548828125, 0.005489349365234375, -0.045257568359375, 0.0259246826171875, + -0.0472412109375, 0.01142120361328125, -0.03082275390625, 0.004337310791015625, + 0.02813720703125, 0.004314422607421875, -0.054229736328125, -0.002552032470703125, + -0.035400390625, 0.019927978515625, 0.0057373046875, 0.00890350341796875, 0.0182342529296875, + 0.00795745849609375, -5.137920379638672e-5, 0.01197052001953125, 0.01343536376953125, + 0.025848388671875, -0.0004291534423828125, -0.0188446044921875, -0.019927978515625, + 0.03558349609375, -0.00017762184143066406, -0.0447998046875, 0.0003859996795654297, + 0.0199127197265625, -0.044921875, -0.0014743804931640625, -0.006145477294921875, + 0.0245361328125, 0.0384521484375, 0.005779266357421875, -0.0211639404296875, + -0.023834228515625, 0.017913818359375, -0.00537109375, 0.006656646728515625, + -0.004375457763671875, -0.0253753662109375, 0.0142364501953125, -0.00812530517578125, + -0.004779815673828125, -0.0014171600341796875, -0.0142059326171875, -0.024993896484375, + -0.0224151611328125, 0.0195465087890625, -0.0293731689453125, 0.0157623291015625, + -0.0173187255859375, -0.030029296875, 0.02606201171875, -0.022064208984375, + 0.006122589111328125, -0.016265869140625, 0.01468658447265625, -0.002559661865234375, + 0.009185791015625, -0.004749298095703125, 0.0029430389404296875, 0.007312774658203125, + -0.043304443359375, -0.0421142578125, -0.019073486328125, 0.02508544921875, + 0.001934051513671875, 0.0208587646484375, -0.00485992431640625, -0.01678466796875, + -0.0028629302978515625, -0.0157012939453125, 0.0035877227783203125, 0.0029087066650390625, + -0.01458740234375, 0.044830322265625, 0.015655517578125, -0.0128173828125, -0.034210205078125, + 0.012176513671875, -0.00977325439453125, -0.02508544921875, 0.0018310546875, + -0.02386474609375, 0.0157012939453125, 0.038726806640625, -0.0231170654296875, + 0.0192718505859375, -0.0189056396484375, -0.027496337890625, -0.0293731689453125, + -0.0025005340576171875, 0.0054931640625, -0.00722503662109375, -0.002315521240234375, + 0.00803375244140625, -0.0143280029296875, -0.03863525390625, 0.02044677734375, + 0.02264404296875, -0.0304412841796875, -0.016998291015625, -0.0212860107421875, + -0.0197906494140625, 0.009735107421875, 0.0025768280029296875, 0.003925323486328125, + 0.0017642974853515625, -0.0008168220520019531, 0.028564453125, -0.0148162841796875, + -0.0038890838623046875, 0.032989501953125, -0.0089874267578125, -0.0024585723876953125, + 0.021392822265625, 0.036529541015625, 0.01035308837890625, -0.01251983642578125, + 0.024658203125, -0.0137481689453125, 0.00888824462890625, 0.028228759765625, 0.00665283203125, + -0.047088623046875, -0.019256591796875, 0.0179901123046875, 0.0017137527465820312, + 0.00988006591796875, -0.0157623291015625, 0.02142333984375, -0.0005354881286621094, + -0.00566864013671875, 0.00812530517578125, -0.0194244384765625, 0.01220703125, + 0.00893402099609375, 0.04913330078125, 0.038177490234375, 0.006069183349609375, + -0.00039267539978027344, 0.025390625, -0.01447296142578125, 0.005069732666015625, + 0.01528167724609375, -0.0189056396484375, -0.012969970703125, -0.03082275390625, + 0.0163116455078125, -0.0391845703125, -0.0016126632690429688, -0.0034503936767578125, + 0.00998687744140625, 0.03173828125, 0.0013980865478515625, 0.006587982177734375, + -0.0013151168823242188, -0.019378662109375, 0.0217742919921875, -0.01360321044921875, + -0.007843017578125, -0.00811767578125, 0.02679443359375, -0.027374267578125, + -0.02960205078125, 0.0032196044921875, 0.0136871337890625, -0.00795745849609375, + 0.00262451171875, 0.0013866424560546875, 0.007568359375, -0.01375579833984375, + -0.00092315673828125, -0.003475189208984375, 0.0165557861328125, 0.006420135498046875, + 0.034393310546875, 0.045379638671875, -0.0247344970703125, -0.0038967132568359375, + 0.018035888671875, -0.032928466796875, -0.0224761962890625, -0.0064544677734375, + -0.004993438720703125, -0.035308837890625, 0.04730224609375, 0.00269317626953125, + 0.0008730888366699219, 0.0498046875, -0.039520263671875, -0.01629638671875, + 0.0058746337890625, 0.0120391845703125, 0.028411865234375, -0.01123046875, + 0.01206207275390625, -0.0030384063720703125, -0.023406982421875, 0.002040863037109375, + 0.0031986236572265625, -0.00475311279296875, 0.01271820068359375, 0.007198333740234375, + 0.035675048828125, -0.0163726806640625, -0.01404571533203125, -0.0361328125, + -0.0216217041015625, 0.01861572265625, 0.00498199462890625, -0.01080322265625, + -0.00385284423828125, -0.056549072265625, -0.0121612548828125, 0.0258941650390625, + -0.0017795562744140625, -0.003662109375, -0.05694580078125, 0.01824951171875, + 0.004047393798828125, 0.043670654296875, 0.0177154541015625, 0.048187255859375, + -0.0157623291015625, 0.01219940185546875, 0.005184173583984375, 0.00012624263763427734, + 0.01331329345703125, 0.02777099609375, 0.01251983642578125, 0.0269927978515625, + -0.042999267578125, -0.03216552734375, 0.03753662109375, -0.0093994140625, + -0.0308380126953125, -0.02154541015625, -0.004199981689453125, -0.01386260986328125, + 0.01412200927734375, -0.0068359375, -0.0017566680908203125, -0.007602691650390625, + 0.01247406005859375, -0.016143798828125, -0.0276031494140625, 0.03985595703125, + -0.02996826171875, 0.01198577880859375, -0.008453369140625, -0.018157958984375, + -0.020416259765625, 0.00452423095703125, 0.021087646484375, 0.0308990478515625, + 0.0006251335144042969, -0.0106201171875, -0.06951904296875, -0.01239013671875, + 0.03314208984375, 0.005741119384765625, 0.0212249755859375, -0.0231781005859375, + -0.048614501953125, -0.01181793212890625, -0.02764892578125, 0.00931549072265625, + 0.03289794921875, -0.0280609130859375, -0.0175018310546875, -0.0014057159423828125, + 0.03253173828125, 0.01035308837890625, -0.029327392578125, 0.0258026123046875, + -0.0401611328125, 0.01190948486328125, -0.0034236907958984375, 0.0175933837890625, + -0.0233154296875, -0.02630615234375, 0.01403045654296875, 0.035247802734375, + 0.019256591796875, 0.00047087669372558594, 0.019500732421875, 0.037261962890625, + 0.0206298828125, 0.0217742919921875, 0.01036834716796875, -0.01088714599609375, + 0.005855560302734375, -0.00821685791015625, 0.0017480850219726562, -0.02227783203125, + -0.038116455078125, 0.0016908645629882812, 0.03143310546875, 0.006114959716796875, + 0.00194549560546875, 0.011810302734375, -0.04638671875, 0.034393310546875, -0.02008056640625, + 0.0247802734375, 0.031829833984375, 0.0111541748046875, 0.006237030029296875, + 0.0033588409423828125, -0.0202484130859375, -0.01103973388671875, -0.010101318359375, + 0.0034656524658203125, 0.042205810546875, 0.0169677734375, 0.00789642333984375, + -0.01318359375, 0.013092041015625, 0.003246307373046875, 0.0149688720703125, + -0.011932373046875, 0.0215301513671875, -0.01068878173828125, 0.00809478759765625, + -0.0006322860717773438, 0.001384735107421875, 0.0027751922607421875, -0.010772705078125, + 0.016082763671875, 0.021392822265625, 0.0062103271484375, 0.00543975830078125, + 0.034027099609375, -0.028839111328125, 0.00830078125, -0.018035888671875, 0.0270538330078125, + -0.02056884765625, 0.0224456787109375, 0.025299072265625, 0.0028514862060546875, + -0.0221710205078125, -0.0196380615234375, -0.0142822265625, 0.0150909423828125, + -0.021392822265625, -0.007781982421875, -0.00933837890625, 0.035430908203125, + 0.01702880859375, -0.01380157470703125, 0.01206207275390625, 0.006694793701171875, + 0.007472991943359375, -0.0247802734375, 0.0172119140625, -0.01398468017578125, + -0.018890380859375, -0.038330078125, -0.0193328857421875, 0.026275634765625, + 0.00047516822814941406, -0.03228759765625, -0.020355224609375, -0.0171966552734375, + 0.0355224609375, 0.018218994140625, -0.0166778564453125, -0.0025787353515625, + -4.845857620239258e-5, 0.006664276123046875, 0.0019702911376953125 + ] + }, + { + "tag": "politics", + "description": "an event focused on government, public policy, local or national elections, political activism, debate, student government (USG) initiatives, or civic organizing.", + "embedding": [ + -0.017547607421875, 0.022430419921875, 0.0184173583984375, 0.04669189453125, -0.0296630859375, + -0.0040283203125, -8.207559585571289e-5, 0.02130126953125, -0.0044708251953125, + 0.0325927734375, 0.0125274658203125, 0.021270751953125, -0.060699462890625, + -0.0225067138671875, 0.03375244140625, 0.03021240234375, -0.06829833984375, + -0.01331329345703125, 0.006298065185546875, 0.0228729248046875, 0.045013427734375, + 0.00759124755859375, 0.00258636474609375, 0.06964111328125, -0.0213623046875, + 0.00628662109375, 0.0213165283203125, 0.044891357421875, 0.00798797607421875, + 0.035858154296875, 0.071044921875, -0.026214599609375, 0.01502227783203125, -0.08123779296875, + -0.029541015625, 0.07861328125, -0.0215911865234375, -0.0126953125, 0.0195770263671875, + 0.01532745361328125, -0.0037136077880859375, -0.0516357421875, -0.01335906982421875, + 0.0203094482421875, 0.00839996337890625, -0.03375244140625, -0.030364990234375, + -0.03240966796875, -0.026885986328125, 0.03265380859375, -0.03277587890625, -0.06890869140625, + 0.08013916015625, 0.041961669921875, 0.03204345703125, -0.0204315185546875, + 0.0244293212890625, -0.0160064697265625, -0.0301055908203125, 0.0155792236328125, + 0.01580810546875, 0.0015821456909179688, 0.0273284912109375, 0.0267333984375, 0.0277099609375, + -0.004756927490234375, 0.041473388671875, 0.0587158203125, 0.0172576904296875, + 0.0015096664428710938, 0.01107025146484375, 0.0186920166015625, -0.017791748046875, + -0.0335693359375, 0.0201416015625, 0.033935546875, 0.03900146484375, 0.008026123046875, + -0.01506805419921875, 0.0009851455688476562, 0.02294921875, -0.00467681884765625, + -0.0007991790771484375, 0.03668212890625, 0.0078582763671875, -0.03790283203125, + -0.051483154296875, 0.007671356201171875, -0.052490234375, 0.030364990234375, + -0.0227508544921875, -0.0150909423828125, -0.02386474609375, 0.0718994140625, + -0.004730224609375, -0.0033740997314453125, 0.016021728515625, -0.03277587890625, + 0.040069580078125, 0.0621337890625, -0.00457000732421875, -0.0401611328125, -0.03271484375, + -0.0127410888671875, 0.018707275390625, 0.0024776458740234375, -0.019775390625, 0.02294921875, + 0.046600341796875, -0.03533935546875, -0.0499267578125, -0.0234375, -0.048431396484375, + 0.04840087890625, 0.009490966796875, -0.0428466796875, 0.005390167236328125, + -0.06634521484375, 0.0301513671875, -0.02227783203125, 0.01287078857421875, + 0.006145477294921875, -0.0269012451171875, 0.0207672119140625, 0.030487060546875, + 0.002933502197265625, -0.016693115234375, 0.007965087890625, 0.0010747909545898438, + -0.026763916015625, 0.044769287109375, -0.015289306640625, -0.00225830078125, + -0.055694580078125, -0.0296783447265625, 0.0202789306640625, -0.04071044921875, + 0.0218658447265625, -0.08099365234375, 0.004108428955078125, 0.0380859375, + 0.007503509521484375, 0.03143310546875, 0.01019287109375, -0.0298919677734375, + -0.0305328369140625, -0.03826904296875, 0.07354736328125, -0.0239105224609375, + 0.0294647216796875, 0.009002685546875, 0.034271240234375, -0.00522613525390625, + 0.04498291015625, -0.031005859375, -0.02886962890625, -0.010009765625, -0.01334381103515625, + -0.0224761962890625, -0.020843505859375, 0.0203857421875, 0.02252197265625, -0.01812744140625, + 0.0276947021484375, -0.005290985107421875, 0.00829315185546875, 0.01165008544921875, + -0.052154541015625, -0.0269012451171875, -0.0303497314453125, -0.037109375, + -0.0133209228515625, -0.01384735107421875, 0.0848388671875, -0.01113128662109375, + 0.009857177734375, -0.0277557373046875, 0.05816650390625, -0.038482666015625, 0.005126953125, + 0.014862060546875, -0.018341064453125, -0.0694580078125, -0.027069091796875, + -0.00516510009765625, 0.04510498046875, 0.0362548828125, 0.025054931640625, + -0.00739288330078125, -0.049957275390625, 0.00038433074951171875, 0.004730224609375, + 0.053558349609375, 0.022247314453125, 0.054412841796875, -0.0096588134765625, + -0.035125732421875, 0.0159759521484375, 0.03656005859375, 0.001678466796875, + -0.0162506103515625, -0.0177459716796875, -0.01161956787109375, -0.039825439453125, + -0.0200653076171875, -0.070068359375, 0.00809478759765625, 0.0230865478515625, + 0.025604248046875, -0.0105133056640625, -0.004154205322265625, 0.00634765625, + 0.0003075599670410156, -0.00797271728515625, -0.00787353515625, 0.0017614364624023438, + -0.018707275390625, 0.0047607421875, 0.0252685546875, 0.05389404296875, -0.01071929931640625, + 0.016448974609375, 0.046295166015625, 0.01751708984375, -0.00273895263671875, + 0.047882080078125, -0.021881103515625, -0.0023403167724609375, -0.0180511474609375, + -0.07470703125, -0.052703857421875, -0.0012359619140625, -0.028900146484375, + -0.027618408203125, -0.0026912689208984375, -0.004913330078125, 0.03106689453125, + -0.0029754638671875, -0.013763427734375, -0.006500244140625, 0.00868988037109375, + -0.002185821533203125, 0.0092010498046875, -0.021484375, 0.0106658935546875, 0.02276611328125, + 0.0289459228515625, 0.032928466796875, -0.01313018798828125, 0.08355712890625, + -0.054107666015625, 0.02398681640625, -0.01116180419921875, -0.03900146484375, 0.0126953125, + -0.00737762451171875, 0.06475830078125, 0.0010890960693359375, -0.0230712890625, + -0.0050506591796875, 0.03814697265625, -0.006801605224609375, 0.0423583984375, + -0.038543701171875, -0.0236358642578125, -0.02081298828125, -0.031524658203125, + -0.0254058837890625, 0.0078582763671875, -0.02581787109375, 0.004974365234375, + 0.0171051025390625, -0.00409698486328125, -0.0016574859619140625, 0.0011320114135742188, + -0.00252532958984375, 0.01062774658203125, 0.07623291015625, 0.00897979736328125, + 0.0183868408203125, -0.034393310546875, -0.0157623291015625, 0.0211029052734375, + 0.0263519287109375, 0.0098876953125, 0.044891357421875, -0.031707763671875, + -0.022247314453125, -0.0015935897827148438, 0.01000213623046875, 0.0115509033203125, + 0.0165252685546875, -0.0106658935546875, 0.0421142578125, 0.0189208984375, 0.03179931640625, + 0.013275146484375, 0.006305694580078125, 0.0167999267578125, -0.0218048095703125, + -0.026885986328125, -0.03521728515625, -0.06890869140625, -0.037750244140625, + -0.01313018798828125, 0.007205963134765625, 0.02197265625, 0.00510406494140625, + 0.03765869140625, -0.006374359130859375, -0.0273590087890625, 0.0112152099609375, + -0.01511383056640625, 0.00978851318359375, 0.0225830078125, 0.00937652587890625, + -0.001880645751953125, 0.1041259765625, -0.0007925033569335938, -0.0006012916564941406, + 0.0191192626953125, -0.0201416015625, 0.0419921875, -0.0192413330078125, 0.055267333984375, + -0.032501220703125, -0.001773834228515625, -0.0006737709045410156, -0.021209716796875, + 0.01403045654296875, 0.0169219970703125, 0.02728271484375, -0.022918701171875, + 0.07806396484375, 0.0765380859375, -0.00472259521484375, 0.04559326171875, + 0.002292633056640625, 0.0223388671875, -0.051849365234375, -0.04315185546875, + -9.131431579589844e-5, -0.01448822021484375, -0.0013332366943359375, -0.0229949951171875, + 0.061309814453125, -0.01666259765625, 0.01010894775390625, 0.0222625732421875, + 0.01189422607421875, 0.01690673828125, 0.01023101806640625, -0.0120849609375, + 0.045867919921875, -0.022979736328125, -0.0106353759765625, 0.0046844482421875, + 0.0196075439453125, 0.025177001953125, 0.020843505859375, 0.00769805908203125, + 0.0328369140625, 0.04345703125, 0.009765625, 0.0394287109375, 0.0161895751953125, + -0.041351318359375, 0.021575927734375, 0.03216552734375, -0.0367431640625, + -0.00499725341796875, -0.0146026611328125, 0.00757598876953125, -0.0127410888671875, + -0.02154541015625, 0.06561279296875, -0.0237579345703125, 0.0472412109375, 0.023712158203125, + 0.03857421875, -0.0144500732421875, -0.009246826171875, -0.02923583984375, -0.02972412109375, + 0.0026187896728515625, 0.045867919921875, -0.002994537353515625, -0.0247955322265625, + 0.0190277099609375, 0.014862060546875, 0.05120849609375, 0.0014638900756835938, + -0.0006694793701171875, -0.04400634765625, -0.022613525390625, 0.0001773834228515625, + 0.009246826171875, 0.03643798828125, 0.0176849365234375, -0.010589599609375, + -0.037750244140625, 0.0019397735595703125, -0.0121307373046875, -0.0419921875, + -0.002552032470703125, -0.019287109375, -0.0257415771484375, -0.014892578125, + -0.006755828857421875, -0.03631591796875, 0.040191650390625, -0.040191650390625, + 0.03289794921875, 0.01323699951171875, -0.018646240234375, -0.01523590087890625, + -0.0178985595703125, -0.03521728515625, 0.015655517578125, 0.039764404296875, + 0.03985595703125, -0.0191192626953125, -0.005237579345703125, -0.005809783935546875, + 0.027801513671875, 0.0151519775390625, -0.0198974609375, 0.0045623779296875, + 0.026214599609375, -0.0316162109375, -0.0290374755859375, -0.02783203125, + 0.0020580291748046875, 0.015899658203125, -0.04107666015625, -0.046295166015625, + 0.01515960693359375, 0.00772857666015625, 0.0161285400390625, 0.02935791015625, + -0.037200927734375, 0.04925537109375, 0.01480865478515625, 0.006481170654296875, + -0.036773681640625, 0.01132965087890625, 0.00994110107421875, -0.049774169921875, + 0.00382232666015625, -0.0677490234375, 0.022308349609375, 0.027496337890625, + 0.0056915283203125, -0.026031494140625, -0.0034427642822265625, 0.00547027587890625, + 0.0174713134765625, -0.0264739990234375, 0.05242919921875, -0.025146484375, + 0.01415252685546875, 0.029541015625, -0.00909423828125, 0.0377197265625, 0.005462646484375, + -0.0028591156005859375, -0.0292510986328125, 0.03680419921875, 0.00719451904296875, + 0.0526123046875, -0.0067138671875, 0.048828125, 0.017242431640625, 0.01397705078125, + -0.0338134765625, -0.0163421630859375, 0.020660400390625, -0.0272064208984375, + 0.0302276611328125, 0.006458282470703125, -0.018280029296875, 0.00838470458984375, + 0.019927978515625, 0.049163818359375, 0.033966064453125, -0.045501708984375, 0.0377197265625, + -0.053009033203125, 0.0119476318359375, 0.0301361083984375, 0.01593017578125, + 0.02447509765625, 0.00466156005859375, -0.01117706298828125, 0.0141143798828125, + -0.056793212890625, -0.0391845703125, -0.0241546630859375, 0.00585174560546875, + -0.0267181396484375, -0.047149658203125, -0.0070648193359375, -0.05517578125, + -0.0112762451171875, 0.04779052734375, 0.00519561767578125, -0.051849365234375, + -0.0078582763671875, 0.017303466796875, 0.00977325439453125, -0.0276336669921875, + -0.04681396484375, 0.005504608154296875, 0.032623291015625, 0.04766845703125, + -0.0211639404296875, -0.00951385498046875, 0.004962921142578125, 0.003292083740234375, + 0.001300811767578125, -0.00311279296875, 0.0213165283203125, -0.0047149658203125, + -0.0050201416015625, -0.04852294921875, -0.01255035400390625, 0.040557861328125, + -0.0771484375, -0.004302978515625, -0.058990478515625, -0.03955078125, -0.045867919921875, + 0.020172119140625, 0.018280029296875, 0.00406646728515625, -0.00392913818359375, + -0.0035533905029296875, 0.01523590087890625, 0.0169830322265625, 0.0016241073608398438, + -0.00911712646484375, 0.00438690185546875, 0.020660400390625, 0.0200958251953125, + -0.040191650390625, 0.017822265625, -0.0175018310546875, 0.0035953521728515625, + -0.00669097900390625, -0.00830841064453125, 0.00498199462890625, -0.035797119140625, + 0.008331298828125, -0.0283966064453125, 0.049072265625, 0.0264739990234375, + -0.005641937255859375, 0.01934814453125, -0.052825927734375, 0.01873779296875, + 0.0262603759765625, -0.0411376953125, 0.01007843017578125, -0.02587890625, -0.020477294921875, + 0.0114898681640625, 0.022491455078125, 0.034637451171875, 0.005706787109375, + 0.0202484130859375, -0.0224456787109375, 0.044830322265625, 0.0283355712890625, + -0.0411376953125, -0.00926971435546875, -0.0261993408203125, -0.0309600830078125, + 0.019775390625, -0.00795745849609375, -0.006702423095703125, -0.01560211181640625, + -0.029541015625, -0.01056671142578125, -0.0634765625, -0.01299285888671875, + -0.00768280029296875, -0.0034542083740234375, 0.0298004150390625, -0.009490966796875, + 0.01036834716796875, -0.005466461181640625, 0.003826141357421875, 0.022705078125, + 0.0201416015625, -0.000713348388671875, 0.000896453857421875, 0.0178070068359375, + -0.022216796875, -0.059783935546875, 0.0007581710815429688, 0.0011453628540039062, + 0.0311126708984375, -0.0323486328125, 0.0026721954345703125, 0.02752685546875, + -0.034454345703125, -0.031494140625, -0.024810791015625, -0.00446319580078125, + -0.014434814453125, 0.0338134765625, 0.0166473388671875, 0.0091400146484375, + 0.01181793212890625, -0.026031494140625, -0.017303466796875, 0.01195526123046875, + 0.0082550048828125, 0.003814697265625, -0.001094818115234375, 0.002895355224609375, + -0.0277862548828125, 0.0285186767578125, 0.0184783935546875, 0.0267333984375, + 0.0026683807373046875, -0.042205810546875, 0.00244903564453125, 0.018157958984375, + -0.005931854248046875, -0.0148162841796875, 0.009857177734375, 0.019744873046875, + -0.00518798828125, -0.00644683837890625, -0.0010480880737304688, -0.0374755859375, + -0.025665283203125, -0.034637451171875, -0.03314208984375, 0.018280029296875, + -0.0248870849609375, -0.0025806427001953125, -0.02325439453125, 0.03924560546875, + 0.019134521484375, -0.0049285888671875, 0.0187225341796875, 0.016204833984375, + -0.0025348663330078125, -0.00429534912109375, -0.008148193359375, -0.0192413330078125, + 0.010986328125, 0.0140228271484375, -0.01096343994140625, 0.0419921875, -0.01480865478515625, + -0.0012121200561523438, 0.0078277587890625, -0.0194091796875, 0.0389404296875, + -0.008087158203125, -0.0156402587890625, 0.0136566162109375, 0.023162841796875, 0.02001953125, + 0.0215911865234375, -7.927417755126953e-6, 0.007717132568359375, -0.032257080078125, + -0.00933074951171875, 0.047119140625, -0.0157623291015625, 0.038116455078125, + 0.00231170654296875, -0.026763916015625, -0.033782958984375, 0.0138702392578125, + -0.005344390869140625, 0.008056640625, -0.0302734375, -0.0287017822265625, 0.0148773193359375, + -0.007099151611328125, -0.02484130859375, 0.00333404541015625, -0.0019321441650390625, + 0.01812744140625, -0.005260467529296875, 0.01751708984375, -0.004634857177734375, + 0.0054931640625, 0.00998687744140625, 0.00872802734375, -0.0269012451171875, 0.031005859375, + 0.021820068359375, -0.046722412109375, -0.0489501953125, -0.00737762451171875, + 0.03680419921875, 0.005535125732421875, -0.052703857421875, -0.016845703125, + 0.0012006759643554688, 0.01494598388671875, 0.0009431838989257812, -0.0147247314453125, + -0.015411376953125, -0.0159759521484375, -0.01026153564453125, -0.0188751220703125, + 0.030792236328125, 0.01165008544921875, -0.057098388671875, 0.003757476806640625, + 0.0040740966796875, 0.0440673828125, -0.002849578857421875, -0.014862060546875, + -0.002277374267578125, -0.01192474365234375, -0.01313018798828125, -0.050567626953125, + 0.019683837890625, -0.0142974853515625, -0.0062408447265625, -0.05389404296875, + -0.028656005859375, 0.0167083740234375, 0.040618896484375, -0.0131683349609375, + -0.0323486328125, -0.01049041748046875, 0.039642333984375, 0.0227203369140625, + 0.0014209747314453125, -0.0286102294921875, -0.007160186767578125, 0.037384033203125, + 0.025360107421875, -0.0306396484375, 0.001495361328125, -0.005413055419921875, + -0.01383209228515625, 0.019012451171875, 0.0218048095703125, -0.00852203369140625, + -0.00655364990234375, -0.038543701171875, 0.00801849365234375, -0.018524169921875, + 0.021331787109375, 0.01983642578125, -0.01134490966796875, -0.0147705078125, + -0.00920867919921875, -0.007659912109375, 0.0200653076171875, 0.01302337646484375, + 0.006404876708984375, 0.0228118896484375, 0.0118560791015625, 0.0091705322265625, + 0.01280975341796875, 0.01093292236328125, -0.056365966796875, 0.008331298828125, + 0.01335906982421875, 0.02532958984375, 0.0108489990234375, -0.021270751953125, + 0.0250701904296875, 0.0250091552734375, 0.022979736328125, -0.0210418701171875, + -0.0088043212890625, -0.00010150671005249023, 0.0089874267578125, 0.039825439453125, + -3.653764724731445e-5, 0.0212860107421875, 0.01125335693359375, -0.03070068359375, + -0.005962371826171875, 0.049346923828125, 0.004428863525390625, -0.00821685791015625, + -0.036834716796875, 0.00408935546875, -0.0125885009765625, -0.020355224609375, + -0.023834228515625, -0.0101165771484375, -0.003772735595703125, 0.00014448165893554688, + -0.03411865234375, 0.03399658203125, 0.0291900634765625, 0.0270538330078125, + -0.004131317138671875, -0.0221405029296875, 0.01727294921875, 0.0161590576171875, + 0.0176239013671875, -0.0206298828125, -0.0008697509765625, -0.031280517578125, + -0.009429931640625, -0.0030307769775390625, 0.0016088485717773438, -0.03277587890625, + -0.0254364013671875, -0.02197265625, -0.0201263427734375, 0.010589599609375, + 0.01538848876953125, 0.0021533966064453125, -0.033355712890625, 0.0041961669921875, + -0.0165557861328125, 0.034393310546875, -0.0223236083984375, 0.0221405029296875, + 0.002452850341796875, 0.000621795654296875, 0.0229644775390625, 0.01317596435546875, + -0.0021305084228515625, -0.043365478515625, -0.012359619140625, -0.0034198760986328125, + -0.01319122314453125, 0.06549072265625, -0.03204345703125, -0.020538330078125, + 0.0223388671875, -0.02093505859375, -0.00830078125, -0.004085540771484375, 0.042236328125, + -0.005008697509765625, -0.0039520263671875, -0.0233917236328125, 0.006317138671875, + -0.0033416748046875, -0.006359100341796875, 0.003940582275390625, -0.02410888671875, + 0.0004496574401855469, -0.01203155517578125, 0.00644683837890625, -0.0018434524536132812, + -0.0850830078125, -0.0113983154296875, 0.005702972412109375, -0.019287109375, + 0.0244293212890625, -0.044952392578125, -0.03411865234375, -0.046142578125, 0.004058837890625, + 0.011749267578125, 0.040069580078125, -0.02032470703125, -0.0281829833984375, + 0.0190277099609375, -0.0227813720703125, -0.022857666015625, -0.001445770263671875, + 0.016510009765625, 0.0162353515625, -0.03826904296875, 0.0400390625, 0.00807952880859375, + 0.0115966796875, 0.0267791748046875, 0.045654296875, -0.0294036865234375, 0.0635986328125, + 0.044158935546875, 0.01221466064453125, -0.0016832351684570312, -0.02886962890625, + -0.0016565322875976562, -0.00016450881958007812, 0.02655029296875, -0.0577392578125, + 0.0121917724609375, 0.018096923828125, 0.0196533203125, -0.002025604248046875, -0.03173828125, + 0.0237884521484375, -0.036376953125, -0.002719879150390625, 0.002960205078125, + 0.01093292236328125, -0.052337646484375, -0.03472900390625, -0.010528564453125, + 0.0004596710205078125, -0.01515960693359375, -0.003475189208984375, 0.0052642822265625, + 0.0008072853088378906, -0.0174560546875, -0.0085296630859375, -0.0250091552734375, + -0.05352783203125, 0.01197052001953125, 0.041961669921875, 0.022430419921875, + 0.040863037109375, 0.006732940673828125, -0.0222015380859375, -0.03204345703125, + 0.0184326171875, -0.048858642578125, 0.032135009765625, 0.02899169921875, + 0.004688262939453125, -0.0178070068359375, 0.003139495849609375, -0.0187225341796875, + -0.01207733154296875, 0.033355712890625, -0.0172576904296875, -0.01012420654296875, + -0.00817108154296875, -0.01442718505859375, -0.040435791015625, -0.01837158203125, + 0.03607177734375, -0.01361846923828125, -0.001678466796875, -0.0176849365234375, + -0.0255279541015625, -0.00708770751953125, 0.01293182373046875, -0.00537872314453125, + -0.0116119384765625, 0.006801605224609375, -0.0277862548828125, -0.00991058349609375, + -0.027191162109375, -0.034515380859375, -0.038543701171875, -0.00605010986328125, + -0.0318603515625, 0.00036025047302246094, -0.0174102783203125, -0.002056121826171875, + 0.0170440673828125, -0.00919342041015625, -0.023834228515625, 0.0305633544921875, + -0.01047515869140625, -0.017120361328125, -0.006694793701171875, -0.035736083984375, + -0.008575439453125, 0.021484375, 0.0266876220703125, -0.02423095703125, -0.00844573974609375, + 0.0064239501953125, -0.01087188720703125, 0.0125732421875, 0.003360748291015625, + 0.010772705078125, 0.0306854248046875, 0.047515869140625, -0.0019311904907226562, + -0.04449462890625, -0.0027561187744140625, 0.01413726806640625, 0.0014066696166992188, + -0.006458282470703125, 0.01287078857421875, 0.0302734375, -0.016204833984375, + -0.0110321044921875, -0.0205841064453125, -0.019134521484375, -0.022491455078125, + 0.007122039794921875, 0.047698974609375, 0.00014078617095947266, 0.001129150390625, + -0.0360107421875, -6.0617923736572266e-5, -0.0452880859375, -0.00908660888671875, + 0.0243072509765625, 0.0020885467529296875, -0.01404571533203125, 0.0228424072265625, + -0.01238250732421875, 0.003345489501953125, 0.0002446174621582031, 0.0237274169921875, + 0.03265380859375, 0.002166748046875, -0.0394287109375, 0.0307769775390625, -0.02569580078125, + 0.037628173828125, -0.004032135009765625, 0.0055694580078125, 0.05914306640625, + 0.0100250244140625, -0.0008978843688964844, -0.00958251953125, -0.043701171875, + -0.00849151611328125, 0.0190277099609375, -0.032501220703125, -0.01207733154296875, + -0.012420654296875, -0.0285186767578125, 0.0280914306640625, -0.0159759521484375, + -0.0117340087890625, -0.0269927978515625, 0.027099609375, 0.031341552734375, + 0.0271148681640625, -0.009552001953125, -0.04608154296875, 0.01727294921875, + 0.001857757568359375, 0.001216888427734375, 0.006244659423828125, -0.01532745361328125, + 0.0106353759765625, -0.0016222000122070312, 0.00891876220703125, -0.004436492919921875, + -0.0015287399291992188, 0.005344390869140625, -0.01473236083984375, 0.00955963134765625, + -0.038818359375, 0.02716064453125, 0.031951904296875, 0.005084991455078125, + 0.0097808837890625, -0.004741668701171875, 0.0138702392578125, -0.01328277587890625, + -0.005405426025390625, -0.0269927978515625, -0.01079559326171875, -0.014556884765625, + -0.033447265625, -0.005558013916015625, -0.003856658935546875, -0.027496337890625, + 0.01377105712890625, 0.03851318359375, 0.0115203857421875, -0.011383056640625, + -0.00788116455078125, 0.015899658203125, -0.0176544189453125, 0.003387451171875, + 0.007343292236328125, -0.01204681396484375, -0.0143280029296875, 0.0021038055419921875, + -0.002674102783203125, -0.0174102783203125, -0.0175933837890625, -0.0034732818603515625, + 0.0243377685546875, -0.02056884765625, 0.070068359375, 0.035858154296875, -0.0171661376953125, + 0.01392364501953125, 0.031951904296875, 0.0193023681640625, -0.012481689453125, + -0.038787841796875, 0.038909912109375, -0.0045318603515625, 0.0169830322265625, + 0.0133209228515625, -0.01030731201171875, -0.01055145263671875, -0.005039215087890625, + 0.0161895751953125, -0.0275421142578125, -0.009246826171875, 0.0252838134765625, 0.0322265625, + -0.018310546875, -0.0145111083984375, -0.0125885009765625, 0.00634765625, 0.024749755859375, + 0.00481414794921875, 0.02081298828125, -0.023193359375, -0.03741455078125, -0.025115966796875, + 0.019744873046875, 0.0262603759765625, -0.00203704833984375, 0.00521087646484375, + -0.0021686553955078125, -0.00833892822265625, -0.0158843994140625, -0.017852783203125, + 0.0212860107421875, -0.004627227783203125, -0.0008845329284667969, -0.021209716796875, + -0.0061187744140625, -0.009368896484375, -0.0272064208984375, 0.0162353515625, + -0.0108642578125, -1.806020736694336e-5, -0.0151824951171875, 0.0117034912109375, + -0.0030460357666015625, -0.006725311279296875, 0.009033203125, 0.01325225830078125, + 0.02154541015625, -0.01276397705078125, -0.020599365234375, 0.029205322265625, + -0.0011129379272460938, -0.031707763671875, -0.0298309326171875, -0.0102996826171875, + 0.0212860107421875, 0.02825927734375, -0.0413818359375, 0.00991058349609375, + -0.044769287109375, 0.03424072265625, 0.0280914306640625, 0.0654296875, + -0.0037403106689453125, -0.0101165771484375, 0.0266876220703125, 0.02166748046875, + 0.01385498046875, 0.00592041015625, 0.0057525634765625, -0.006481170654296875, + -7.95125961303711e-5, -0.0234527587890625, 0.014617919921875, -0.0416259765625, + -0.001041412353515625, -0.00870513916015625, 0.0207366943359375, -0.0034008026123046875, + -0.00894927978515625, 0.0209503173828125, -0.058563232421875, -0.0084075927734375, + 0.029510498046875, 0.00884246826171875, 0.004638671875, 0.006114959716796875, + -0.057830810546875, 0.019134521484375, -0.0104827880859375, 0.0182647705078125, + -0.034423828125, 0.004608154296875, 0.00061798095703125, -0.0258636474609375, + 0.0300140380859375, 0.00998687744140625, 0.00786590576171875, -0.008697509765625, + -0.01507568359375, 0.0110626220703125, 0.02374267578125, -0.011962890625, -0.010284423828125, + 0.0516357421875, -0.0158233642578125, 0.0369873046875, -0.0197906494140625, 0.047698974609375, + -0.003688812255859375, -0.0176849365234375, -0.00354766845703125, -0.025482177734375, + 0.006649017333984375, 0.0252227783203125, 0.0229034423828125, -0.0146484375, + -0.040924072265625, 0.0015392303466796875, 0.006572723388671875, 0.0009593963623046875, + -0.0296173095703125, 0.00998687744140625, 0.0234222412109375, -0.0152435302734375, + -0.0018777847290039062, 0.0015001296997070312, -0.01102447509765625, -0.04248046875, + -0.03326416015625, 0.0175323486328125, 0.0291595458984375, 0.0236053466796875, + -0.0222930908203125, 0.01806640625, 0.0275421142578125, -0.0084686279296875, + 0.01366424560546875, 0.0259552001953125, 0.0054473876953125, 0.005008697509765625, + 0.032806396484375, 0.00508880615234375, 0.0130462646484375, -0.006534576416015625, + 0.0006976127624511719, -0.032623291015625, -0.0237579345703125, -0.013153076171875, + -0.0095367431640625, -0.0036411285400390625, 0.00829315185546875, -0.007747650146484375, + 0.011077880859375, 0.0105743408203125, 0.0312042236328125, -0.0008630752563476562, + -0.0027618408203125, -0.0007033348083496094, -0.0130157470703125, -0.00887298583984375, + -0.004180908203125, -0.005523681640625, -0.01442718505859375, -0.009521484375, + -0.01971435546875, -0.00982666015625, -0.00507354736328125, -0.0088348388671875, + 0.0011539459228515625, 0.0007071495056152344, -0.03558349609375, -0.0201873779296875, + 0.03338623046875, -0.033447265625, -0.01126861572265625, 0.0039005279541015625, + 0.021636962890625, 0.003025054931640625, -0.0275421142578125, -0.00641632080078125, + -0.00946807861328125, -0.0216522216796875, 0.006946563720703125, 0.0046539306640625, + -0.01053619384765625, 0.0269927978515625, 0.0101165771484375, -0.03057861328125, + -0.0248870849609375, 0.028472900390625, -0.00628662109375, 0.01023101806640625, + 0.01531982421875, 0.00677490234375, -0.006923675537109375, -0.01189422607421875, + 0.003368377685546875, 0.01800537109375, -0.01132965087890625, 0.0040740966796875, + 0.019744873046875, -0.047027587890625, 0.005859375, -0.0201873779296875, + 0.0006809234619140625, -0.02911376953125, -0.01142120361328125, 0.007366180419921875, + -0.002834320068359375, -0.0279541015625, -0.022979736328125, 0.0072479248046875, + -0.0263519287109375, -0.01148223876953125, 0.04754638671875, -0.004215240478515625, + 0.00312042236328125, -0.006374359130859375, 0.019866943359375, -0.02099609375, + 0.0285491943359375, -0.02642822265625, -0.0251007080078125, -0.0237884521484375, + 0.0022430419921875, 0.0176239013671875, -0.0025234222412109375, 0.00844573974609375, + 0.0048980712890625, -0.00676727294921875, 0.00780487060546875, 0.0049285888671875, + -0.032318115234375, -0.001804351806640625, -0.0204620361328125, -0.047271728515625, + -0.03192138671875, 0.01019287109375, 0.006458282470703125, -0.0030994415283203125, + -0.01338958740234375, -0.044586181640625, -0.02667236328125, -0.0195159912109375, + 0.034515380859375, 0.0240325927734375, -0.0019931793212890625, 0.0166168212890625, + -0.0034046173095703125, 0.0095367431640625, -0.0155029296875, 0.01715087890625, + -0.048095703125, -0.01824951171875, 0.00843048095703125, -0.0140838623046875, + 0.0257415771484375, 0.0219879150390625, -0.06787109375, 0.031707763671875, + 0.00011706352233886719, -0.01282501220703125, -0.00693511962890625, 0.00998687744140625, + 0.0264129638671875, 0.016021728515625, 0.014892578125, -0.00438690185546875, + 0.017852783203125, 0.04241943359375, -0.0114593505859375, 0.01371002197265625, + 0.004730224609375, 0.0419921875, 0.005573272705078125, -0.0164642333984375, + 0.006145477294921875, 0.0029449462890625, -0.0035228729248046875, -0.002651214599609375, + 0.016754150390625, 0.0032444000244140625, -0.030914306640625, 0.01282501220703125, + -0.0187530517578125, -0.00798797607421875, 0.01209259033203125, 0.002849578857421875, + 0.02484130859375, 0.01739501953125, -0.01058197021484375, 0.0130615234375, 0.0179290771484375, + -0.00914764404296875, -0.0053863525390625, -0.01910400390625, 0.016021728515625, + -0.014892578125, 0.00743865966796875, -0.0279541015625, -0.0193939208984375, -0.0277099609375, + 0.0190277099609375, -0.01715087890625, -0.0017910003662109375, 0.0152130126953125, + 0.032470703125, 0.0095672607421875, -0.0161590576171875, -0.0138092041015625, + -0.01617431640625, 0.0116729736328125, -0.0081787109375, -0.01342010498046875, + -0.0083465576171875, -0.006801605224609375, 0.0187225341796875, -0.0252227783203125, + -0.0291595458984375, 0.01102447509765625, -0.008026123046875, 0.0171051025390625, + 0.023834228515625, -0.0270233154296875, 0.0277862548828125, -0.002605438232421875, + -0.0012655258178710938, -0.00719451904296875, -0.022308349609375, -0.0033359527587890625, + -0.0157623291015625, 0.0004703998565673828, 0.0560302734375, -0.031707763671875, + -0.015777587890625, -0.0411376953125, -0.01233673095703125, 0.0173492431640625, + -0.004474639892578125, 0.0543212890625, 0.0271148681640625, 0.01001739501953125, + -0.034393310546875, -0.0244598388671875, 0.0229949951171875, 0.0161285400390625, + 0.00022482872009277344, 0.00257110595703125, -0.0162506103515625, -0.001445770263671875, + -0.0018310546875, -0.024810791015625, -0.0110015869140625, -0.032684326171875, + -0.0133209228515625, 0.00666046142578125, 0.02685546875, -0.0240478515625, -0.009918212890625, + 0.018463134765625, 0.024810791015625, -0.01227569580078125, -0.006992340087890625, + 0.0252227783203125, 0.0082855224609375, -0.00970458984375, -0.00037407875061035156, + -0.01363372802734375, -0.0271148681640625, 0.017425537109375, -0.00015366077423095703, + 0.01392364501953125, -0.00982666015625, -0.019927978515625, -0.01340484619140625, + 0.002429962158203125, 0.0013952255249023438, 0.030426025390625, 0.0239410400390625, + -0.0280914306640625, 0.0159759521484375, 0.008819580078125, 0.0379638671875, + 0.0004303455352783203, -0.021636962890625, 0.058074951171875, 0.012481689453125, + 0.0056915283203125, -0.010406494140625, 0.0291290283203125, -0.0369873046875, + 0.019744873046875, 0.01007843017578125, -0.021514892578125, 0.036529541015625, + 0.0004448890686035156, 0.01282501220703125, 0.00014829635620117188, 0.00530242919921875, + -0.030181884765625, -0.01323699951171875, -0.04571533203125, -0.0198211669921875, + 0.00637054443359375, 0.0212554931640625, -0.01092529296875, 0.035186767578125, + 0.01392364501953125, 0.0106964111328125, 0.0285186767578125, 0.03497314453125, + -0.032257080078125, -0.03173828125, 0.002269744873046875, -0.0043792724609375, + -0.01515960693359375, -0.019134521484375, 0.039642333984375, -0.01739501953125, + 0.038909912109375, -0.03265380859375, -0.0187835693359375, -0.00995635986328125, + 0.01317596435546875, 0.0142364501953125, -0.0019350051879882812, 0.04058837890625, + 0.0211029052734375, 0.017364501953125, 0.07940673828125, 0.010101318359375, + 0.004772186279296875, -0.02398681640625, 0.008880615234375, -0.024810791015625, -0.0009765625, + -0.0011415481567382812, 0.01654052734375, 0.00800323486328125, 0.0125885009765625, + -0.004352569580078125, 0.028594970703125, -0.0284271240234375, 0.0286102294921875, + 0.006702423095703125, 0.00904083251953125, 0.007022857666015625, -0.0027217864990234375, + -0.00698089599609375, 0.003093719482421875 + ] + }, + { + "tag": "visual arts", + "description": "an event focused on visual or creative arts, such as museum or gallery exhibitions, painting, crafts, photography, film screenings, or design showcases (music and performance is categorized separately)", + "embedding": [ + -0.03570556640625, 0.02410888671875, 0.026611328125, -0.01039886474609375, -0.04541015625, + -0.0035686492919921875, -0.0238494873046875, -0.0018835067749023438, -0.003749847412109375, + 0.049896240234375, -0.0058441162109375, 0.00737762451171875, -0.02099609375, + -0.041900634765625, -0.008544921875, 0.059356689453125, -0.0263214111328125, + -0.00846099853515625, 0.055206298828125, 0.0132293701171875, 0.05657958984375, + -0.0017652511596679688, -0.0009288787841796875, 0.02587890625, -0.0290374755859375, + -0.00994873046875, -0.049041748046875, 0.03643798828125, 0.0204010009765625, + 0.051300048828125, 0.046173095703125, -0.0223541259765625, 0.0302734375, -0.02288818359375, + -0.0426025390625, 0.03851318359375, -0.02801513671875, -0.033660888671875, 0.019744873046875, + -0.009124755859375, -0.035369873046875, -0.019287109375, -0.0228424072265625, -0.021484375, + 0.035552978515625, 0.034820556640625, 0.00905609130859375, -0.00458526611328125, + -0.0048370361328125, 0.0443115234375, -0.052947998046875, -0.03826904296875, 0.03173828125, + -0.0300140380859375, 0.02587890625, -0.048431396484375, -0.0306549072265625, + -0.046234130859375, 0.016143798828125, -0.01279449462890625, 0.046844482421875, + 0.005390167236328125, 0.06427001953125, 0.01214599609375, -0.059478759765625, + 0.03729248046875, -0.0080718994140625, 0.04913330078125, 0.0137176513671875, + -0.0095672607421875, 0.06280517578125, 0.040435791015625, -0.001567840576171875, + -0.023651123046875, 0.036956787109375, 0.01495361328125, -0.0088043212890625, + 0.01024627685546875, 0.00812530517578125, 0.01983642578125, 0.04559326171875, + -0.01099395751953125, -0.06884765625, 0.049224853515625, 0.00383758544921875, + -0.00984954833984375, -0.03900146484375, 0.004894256591796875, -0.0159759521484375, + 0.045745849609375, -0.0304107666015625, 0.02569580078125, 0.01171875, 0.055389404296875, + 0.01116180419921875, 0.0238494873046875, 0.00836181640625, -0.04962158203125, + 0.00296783447265625, 0.100341796875, -0.003780364990234375, -0.04473876953125, + 0.0014171600341796875, -0.0093841552734375, 0.06292724609375, 0.007007598876953125, + 0.01708984375, 0.0014247894287109375, -0.02557373046875, -0.0313720703125, -0.0440673828125, + -0.042816162109375, -0.0006051063537597656, 0.063720703125, -0.0015621185302734375, + -0.033233642578125, 0.0792236328125, -0.0498046875, 0.0092926025390625, -0.01316070556640625, + -0.037994384765625, 0.0467529296875, -0.01496124267578125, -0.016845703125, + 0.005542755126953125, 0.0013065338134765625, -0.037628173828125, 0.005859375, + 0.0090484619140625, 0.010498046875, 0.020751953125, -0.0291900634765625, 0.0521240234375, + -0.07672119140625, -0.0222930908203125, -0.047698974609375, -0.005771636962890625, + 0.02557373046875, -0.085205078125, 0.0028667449951171875, 0.0509033203125, -0.039703369140625, + 0.033935546875, 0.044769287109375, 0.043365478515625, -0.01849365234375, -0.040985107421875, + 0.02117919921875, 0.021148681640625, 0.0119171142578125, -0.032928466796875, + 0.009429931640625, 0.0165557861328125, 0.0239715576171875, -0.0186920166015625, + -0.0306396484375, 0.01134490966796875, -0.0005307197570800781, -0.0167694091796875, + -0.0239410400390625, 0.011138916015625, -0.045257568359375, -0.005542755126953125, + 0.0169219970703125, 0.00156402587890625, -0.0026607513427734375, -0.033416748046875, + 0.033935546875, -0.0012865066528320312, 0.031005859375, -0.058013916015625, + -0.00841522216796875, -0.0309600830078125, 0.044219970703125, 0.06927490234375, + -0.01296234130859375, 0.03033447265625, 0.0303192138671875, -0.004650115966796875, + 0.041259765625, 0.0031585693359375, 0.01497650146484375, -0.0325927734375, 0.0186614990234375, + 0.0211334228515625, 0.041351318359375, 0.045806884765625, -0.0098419189453125, + -0.024749755859375, -0.01081085205078125, 0.01242828369140625, 0.0281982421875, + -0.003780364990234375, 0.05230712890625, 0.0023860931396484375, -0.0159912109375, + -0.045257568359375, 0.0245819091796875, 0.0147552490234375, 0.003871917724609375, + -0.017822265625, -0.036102294921875, 0.03564453125, -0.002582550048828125, + -0.0303802490234375, 0.0179595947265625, 0.036468505859375, 0.0285797119140625, + 0.041168212890625, 0.0142059326171875, -0.0182952880859375, 0.024749755859375, + 0.04949951171875, 0.00954437255859375, 0.018768310546875, -0.0242156982421875, + 0.02288818359375, 0.039947509765625, -0.027557373046875, -0.005397796630859375, + -0.033843994140625, 0.003971099853515625, 0.05938720703125, 0.034332275390625, + 0.033477783203125, 0.01454925537109375, -0.0440673828125, -0.025909423828125, -0.043212890625, + -0.0119171142578125, -0.0193939208984375, 0.00970458984375, -0.0264129638671875, + 0.0192413330078125, -0.00522613525390625, -0.044189453125, -0.0286865234375, + -0.046417236328125, 0.00023448467254638672, -0.005992889404296875, 0.036468505859375, + 0.01013946533203125, 0.0189056396484375, -0.02447509765625, -0.00931549072265625, + 0.044708251953125, -0.00775146484375, 0.007411956787109375, 0.0008769035339355469, + 0.048492431640625, 0.0255889892578125, 0.019256591796875, -0.0977783203125, + -0.007160186767578125, 0.05548095703125, -0.0153045654296875, 0.0016603469848632812, + 0.0197906494140625, -0.037261962890625, -0.007171630859375, 0.057525634765625, + 0.0184173583984375, -0.00537109375, -0.039306640625, -0.0200347900390625, 0.00670623779296875, + -0.036407470703125, 0.026824951171875, -0.018280029296875, 0.004978179931640625, + -0.007476806640625, -0.00905609130859375, -0.008636474609375, -0.008941650390625, + 0.00986480712890625, -0.00591278076171875, 0.02996826171875, 0.032257080078125, + 0.03509521484375, -0.01346588134765625, -0.01922607421875, -0.04071044921875, + 0.0273284912109375, -0.0092010498046875, -0.00962066650390625, 0.042755126953125, + -0.01934814453125, -0.01432037353515625, -0.02581787109375, 0.0090179443359375, + -0.024169921875, -0.09405517578125, -0.01305389404296875, -0.031494140625, + -0.0269317626953125, 0.0294036865234375, 0.0157623291015625, 0.01239776611328125, + 0.0091400146484375, -0.0002493858337402344, -0.033966064453125, -0.07330322265625, + -0.0123138427734375, -0.00473785400390625, -0.006214141845703125, 0.06732177734375, + -0.0249786376953125, 0.0177154541015625, 0.0192413330078125, -0.0294189453125, + -0.00043272972106933594, -0.057098388671875, -0.01287078857421875, -0.005290985107421875, + -0.004791259765625, 0.03314208984375, 0.0025768280029296875, 0.0894775390625, + 0.0283355712890625, -0.028350830078125, -0.005451202392578125, -0.008026123046875, + 0.0113677978515625, 0.001255035400390625, 0.015777587890625, -0.048980712890625, + -0.0177154541015625, 0.0036525726318359375, -0.054229736328125, -0.028900146484375, + -0.0186767578125, -0.0312042236328125, -0.04632568359375, 0.05303955078125, + 0.01361846923828125, 0.01126861572265625, 0.049407958984375, -0.0287322998046875, + 0.0299072265625, -0.0220794677734375, -0.04364013671875, -0.073974609375, -0.03082275390625, + 0.014129638671875, 0.0014362335205078125, 0.00592803955078125, -0.030975341796875, + 0.00794219970703125, 0.0074462890625, -0.0244903564453125, 0.0007190704345703125, + -0.034454345703125, -0.00606536865234375, -0.003780364990234375, -0.01465606689453125, + -0.0036067962646484375, -0.01103973388671875, 0.0002713203430175781, -0.057464599609375, + 0.0153045654296875, -0.0238800048828125, -0.011474609375, 0.0406494140625, + -0.00963592529296875, 0.003047943115234375, 0.0299072265625, -0.043426513671875, + 0.003200531005859375, 0.05108642578125, -0.06683349609375, 0.0318603515625, + 0.0208587646484375, -0.003643035888671875, -0.037078857421875, -0.0239410400390625, + 0.05828857421875, 0.0162200927734375, -0.0231170654296875, 0.0073394775390625, + -0.0173187255859375, -0.037445068359375, -0.0169219970703125, 0.01445770263671875, + -0.067626953125, -0.0020313262939453125, 0.047576904296875, -0.0009245872497558594, + 0.01513671875, -0.061492919921875, 0.0116119384765625, 0.039215087890625, -0.042877197265625, + -0.05450439453125, 0.00543975830078125, -0.0165557861328125, 0.0123748779296875, + 0.018096923828125, 0.0250244140625, 0.0200347900390625, 0.047332763671875, + 0.006992340087890625, -0.00955963134765625, 0.00443267822265625, 0.012176513671875, + -0.01898193359375, 0.00616455078125, -2.2232532501220703e-5, -0.02239990234375, + -0.0007467269897460938, -0.01233673095703125, -0.0004436969757080078, -0.033721923828125, + 0.01427459716796875, 0.047698974609375, -0.034393310546875, -0.0135955810546875, + 0.013916015625, -0.0291748046875, 0.004764556884765625, 0.02191162109375, 0.05743408203125, + 0.0296478271484375, -0.003841400146484375, 0.005451202392578125, 0.004116058349609375, + 0.034271240234375, -0.00852203369140625, -0.0079345703125, -0.032745361328125, + -0.053497314453125, -0.0357666015625, 0.0143890380859375, 0.01348876953125, + -0.016693115234375, 0.01206207275390625, -0.02764892578125, 0.02569580078125, + -0.0175933837890625, -0.01332855224609375, -0.01189422607421875, -0.0174560546875, + 0.015167236328125, 0.0230255126953125, -0.0018405914306640625, -0.0616455078125, + 0.0159912109375, -0.024932861328125, 0.0219879150390625, 0.00347900390625, -0.06072998046875, + -0.01488494873046875, 0.01052093505859375, -0.0253448486328125, -0.0179595947265625, + 0.002010345458984375, -0.0244293212890625, 0.0209808349609375, 0.01271820068359375, + 0.0163116455078125, -0.01038360595703125, -0.0030498504638671875, 0.037750244140625, + 0.020355224609375, 0.021728515625, 0.046600341796875, -0.0169677734375, 0.010162353515625, + 0.00839996337890625, 0.01580810546875, -0.050628662109375, 0.042572021484375, + 0.059295654296875, 0.058197021484375, 0.03375244140625, -0.0268707275390625, + -0.0097503662109375, 0.0001938343048095703, -0.00794219970703125, 0.0361328125, + -0.0026836395263671875, 0.04180908203125, -0.0094146728515625, -0.02679443359375, + -0.006687164306640625, -0.018218994140625, -0.0214385986328125, 0.0015096664428710938, + -0.01142120361328125, 0.033203125, 0.0074005126953125, -0.0467529296875, + -0.001987457275390625, -0.036651611328125, -0.0096588134765625, -0.00807952880859375, + -0.025299072265625, -0.053680419921875, -0.0187225341796875, -0.01355743408203125, + -0.00627899169921875, -0.044189453125, -0.0204620361328125, 0.014434814453125, + -0.006198883056640625, 0.0214080810546875, 0.042266845703125, -0.045074462890625, + 0.006801605224609375, 0.08612060546875, 0.017059326171875, 0.0148468017578125, + -0.004703521728515625, -0.0015420913696289062, 0.055572509765625, -0.003543853759765625, + -0.01300048828125, -0.0335693359375, 0.00860595703125, -0.00399017333984375, + 0.032989501953125, -0.0284423828125, 0.005588531494140625, -0.0202484130859375, + -0.01226806640625, -0.0084228515625, 0.0006589889526367188, -0.007396697998046875, + -0.0750732421875, -0.0147247314453125, -0.0225067138671875, -0.0200653076171875, + 0.02166748046875, 0.0054473876953125, 0.007251739501953125, -0.0218963623046875, + 0.0057220458984375, -0.005748748779296875, 0.0020809173583984375, 0.0238037109375, + 0.01029205322265625, 0.004817962646484375, -0.020355224609375, -0.01380157470703125, + -0.0016222000122070312, -0.007686614990234375, 0.045623779296875, -0.0080718994140625, + -0.005634307861328125, -0.0184478759765625, 0.036346435546875, 0.0015764236450195312, + -0.03411865234375, -0.00222015380859375, -0.0260009765625, -0.01534271240234375, + 0.046356201171875, 0.0135040283203125, -0.019134521484375, -0.00926971435546875, + -0.0159454345703125, 0.032012939453125, -0.0281982421875, 0.054962158203125, -0.03173828125, + 0.01422119140625, 0.017730712890625, 0.033966064453125, 0.0207672119140625, + 0.01212310791015625, 0.01201629638671875, -0.0246124267578125, -0.00907135009765625, + 0.0095977783203125, -0.031280517578125, -0.00860595703125, -0.012847900390625, + 0.0018491744995117188, -0.014312744140625, -0.00948333740234375, -0.00791168212890625, + -0.00550079345703125, 0.0222930908203125, -0.042694091796875, 0.0028324127197265625, + -0.03289794921875, -0.00769805908203125, 0.003513336181640625, -0.001811981201171875, + 0.0271453857421875, -0.01071929931640625, 0.01641845703125, -0.01357269287109375, + -0.00759124755859375, 0.02728271484375, 0.040008544921875, 0.017669677734375, + 0.0168304443359375, 0.0245361328125, -0.041534423828125, -0.032867431640625, + 0.0003974437713623047, 0.028533935546875, -0.034423828125, -0.01116943359375, + 0.00605010986328125, -0.0057830810546875, 0.00647735595703125, -0.0227813720703125, + -0.0253448486328125, -0.01194000244140625, 0.0201416015625, 0.0043182373046875, + 0.007843017578125, -0.00141143798828125, -0.052398681640625, -0.0011968612670898438, + -0.020965576171875, 0.0074462890625, -0.0203857421875, 0.00733184814453125, + -0.01047515869140625, 0.00176239013671875, 0.0172271728515625, 0.060638427734375, + 0.0211334228515625, 0.0275115966796875, -0.029876708984375, -0.018768310546875, + -0.005802154541015625, 0.0034236907958984375, 0.0084686279296875, 0.01076507568359375, + 0.0261383056640625, -0.0435791015625, -0.0219879150390625, -0.007568359375, -0.03863525390625, + -0.0024166107177734375, -0.00814056396484375, 0.004154205322265625, 0.050323486328125, + 0.007114410400390625, -0.01099395751953125, -0.02618408203125, 0.01352691650390625, + -0.023162841796875, 0.049163818359375, -0.01262664794921875, 0.000453948974609375, + -0.005184173583984375, -0.030517578125, 0.032440185546875, 0.021392822265625, + -0.006927490234375, 0.007274627685546875, -0.0062713623046875, 0.00045299530029296875, + 0.01483917236328125, -0.04278564453125, 0.02880859375, 0.01424407958984375, 0.05706787109375, + -0.019927978515625, -0.03973388671875, 0.0252685546875, 0.01560211181640625, 0.0321044921875, + -0.0134124755859375, -0.0328369140625, 0.03192138671875, -0.02752685546875, + 0.0257415771484375, 0.00870513916015625, 0.0191650390625, 0.0472412109375, + -0.0175018310546875, 0.011444091796875, -0.0015382766723632812, -0.0160980224609375, + -0.0115814208984375, -0.03955078125, -0.0260009765625, -0.029541015625, + -0.0007624626159667969, -0.02392578125, -0.0382080078125, 0.03192138671875, -0.006591796875, + 0.00827789306640625, -0.00634002685546875, 0.0160980224609375, 0.0016622543334960938, + 0.0301513671875, 0.0173187255859375, 0.0028972625732421875, -0.01157379150390625, + 0.019073486328125, -0.027740478515625, -0.035491943359375, -0.05072021484375, + 0.0003323554992675781, 0.049957275390625, 0.0095977783203125, -0.021240234375, + 0.048492431640625, 0.00012093782424926758, 0.0357666015625, 0.01248931884765625, + 0.0259552001953125, -0.0112457275390625, -0.02435302734375, -0.006015777587890625, + -0.04437255859375, -0.031646728515625, -0.03424072265625, -0.00820159912109375, + 0.0304107666015625, 0.02288818359375, 0.03729248046875, -0.012786865234375, + -0.032196044921875, 0.0117340087890625, -0.028778076171875, -0.0210418701171875, + -0.021270751953125, 0.013031005859375, 0.0012998580932617188, -0.0426025390625, + 0.01690673828125, -0.0020809173583984375, -0.00811767578125, 0.029632568359375, + 0.021575927734375, -0.0294952392578125, 0.0145416259765625, -0.003574371337890625, + -0.0004143714904785156, -0.00807952880859375, 0.00423431396484375, 0.0012464523315429688, + 0.0435791015625, -0.02130126953125, 0.02606201171875, 0.00896453857421875, + 0.0009374618530273438, 0.004970550537109375, -0.01203155517578125, -0.01100921630859375, + -0.033843994140625, 0.029449462890625, -0.00879669189453125, 0.007030487060546875, + -0.01314544677734375, 0.0286712646484375, -0.02764892578125, -0.0023345947265625, + -0.00995635986328125, 0.0162811279296875, -0.004398345947265625, -0.0164337158203125, + 0.034912109375, 0.0161590576171875, -0.0151824951171875, -0.00701904296875, + 0.004825592041015625, -0.00038170814514160156, 0.00812530517578125, -0.00428009033203125, + -0.00926971435546875, -0.00620269775390625, 0.01904296875, -0.0172882080078125, + -0.015167236328125, -0.0169677734375, 0.0289459228515625, 0.00984954833984375, + 0.006435394287109375, -0.0098724365234375, 0.03192138671875, 0.0215301513671875, + 0.062042236328125, -0.01464080810546875, -0.0200347900390625, 0.043792724609375, + 0.007373809814453125, -0.0152587890625, -0.0005021095275878906, -0.0504150390625, + -0.0233917236328125, -0.0164642333984375, -0.004547119140625, -0.044830322265625, + 0.020263671875, -0.05621337890625, -0.0218353271484375, -0.035614013671875, + 0.0208282470703125, -0.043792724609375, 0.0181427001953125, 0.0164337158203125, + -0.007732391357421875, -0.004405975341796875, -0.0066986083984375, 0.00803375244140625, + 0.0066070556640625, 0.0374755859375, -0.06640625, -0.01922607421875, -0.0179290771484375, + -0.059661865234375, -0.00506591796875, 0.01506805419921875, 0.0029277801513671875, + -0.015350341796875, 0.01116943359375, -0.0538330078125, 0.034698486328125, + -0.002704620361328125, 0.040985107421875, -0.01175689697265625, -0.01061248779296875, + -0.021392822265625, -0.0285797119140625, 0.0091400146484375, -0.0170135498046875, + 0.034088134765625, 0.01026153564453125, -0.004779815673828125, -0.00667572021484375, + 0.01506805419921875, -0.03668212890625, 0.027618408203125, 0.004657745361328125, + 0.0168304443359375, 0.0296783447265625, 0.017303466796875, 0.01151275634765625, + -0.006084442138671875, -0.0014820098876953125, -0.0015010833740234375, -0.01629638671875, + 0.03692626953125, 0.00946044921875, -0.002567291259765625, -0.0174560546875, -0.0106201171875, + -0.00908660888671875, -0.0196075439453125, -0.05810546875, 0.027435302734375, + -0.004695892333984375, 0.0007867813110351562, 0.035400390625, -0.01409912109375, + -0.06573486328125, 0.004974365234375, -0.01158905029296875, -0.01433563232421875, + -0.00949859619140625, 0.015625, -0.0245208740234375, -0.02081298828125, 0.01123046875, + -0.0226593017578125, -0.0012950897216796875, -0.01183319091796875, 0.00982666015625, + 0.028778076171875, 0.005207061767578125, -0.0230712890625, 0.0025615692138671875, + 0.006488800048828125, -0.006938934326171875, 0.00836944580078125, 0.0276641845703125, + -0.02008056640625, 0.0107879638671875, 0.008209228515625, 0.005077362060546875, + -0.0247039794921875, 0.04083251953125, 0.0191802978515625, 0.0277557373046875, + -0.01496124267578125, -0.0095367431640625, -0.014617919921875, 0.007396697998046875, + -0.017669677734375, -0.021026611328125, 0.0213775634765625, 0.00606536865234375, + -0.031829833984375, -0.00652313232421875, -0.053680419921875, -0.020965576171875, + -0.0013818740844726562, -0.0005583763122558594, 0.014190673828125, 0.00665283203125, + -0.03509521484375, -0.07275390625, -0.00881195068359375, 0.0036258697509765625, + -0.0005388259887695312, -0.058563232421875, 0.0238494873046875, -0.0215606689453125, + 0.0166015625, -0.042510986328125, -5.78761100769043e-5, -0.0143585205078125, + 0.004535675048828125, -0.01493072509765625, -0.035125732421875, 0.00402069091796875, + 0.01568603515625, -0.0380859375, -0.001903533935546875, -0.00949859619140625, + -0.04156494140625, -0.00164794921875, 0.032440185546875, 0.021697998046875, + -0.005611419677734375, -0.0013971328735351562, 0.020355224609375, 0.0195465087890625, + -0.03173828125, -0.0176849365234375, 0.006946563720703125, 0.0167388916015625, + 0.0208282470703125, -0.0194091796875, 0.0178680419921875, 0.0367431640625, 0.0482177734375, + -0.0050506591796875, -0.0007162094116210938, -0.01107025146484375, -0.0022640228271484375, + -0.0172576904296875, 0.051910400390625, -0.0011262893676757812, -0.01314544677734375, + 0.006557464599609375, -0.005157470703125, 0.0053558349609375, -0.04608154296875, + -0.00426483154296875, 0.00977325439453125, -0.024017333984375, 0.005100250244140625, + -0.0174560546875, -0.03826904296875, 0.020751953125, -0.01102447509765625, 0.0168609619140625, + -0.00278472900390625, 0.0007538795471191406, 0.022796630859375, 0.01076507568359375, + -0.01189422607421875, -0.0006394386291503906, 0.0169525146484375, 0.017303466796875, + 0.00928497314453125, 0.0085296630859375, -0.0230712890625, -0.018096923828125, + 0.00553131103515625, -0.01062774658203125, 0.01407623291015625, 0.0264129638671875, + 0.033935546875, -0.01085662841796875, 0.00986480712890625, -0.0035800933837890625, + -0.00859832763671875, -0.003795623779296875, -0.029693603515625, 0.00968170166015625, + 0.0183258056640625, -0.00519561767578125, 0.01117706298828125, 0.002216339111328125, + -0.005756378173828125, -0.0147247314453125, -0.0011892318725585938, 0.0313720703125, + 0.00543975830078125, -0.0003104209899902344, -0.0311431884765625, -0.002483367919921875, + -0.017059326171875, -0.01267242431640625, -0.0005745887756347656, 0.03826904296875, + -0.0181427001953125, 0.03656005859375, -0.012451171875, -0.013397216796875, + -0.01343536376953125, -0.019683837890625, -0.01090240478515625, -0.019287109375, + -0.0235137939453125, 0.022430419921875, 0.007904052734375, 0.02392578125, -0.0177764892578125, + 0.01995849609375, 0.05364990234375, 0.0025386810302734375, 0.01029205322265625, + -0.004154205322265625, -0.01146697998046875, -0.0059967041015625, 0.01885986328125, + -0.041351318359375, -0.004863739013671875, 0.018585205078125, 0.001850128173828125, + 0.02490234375, 0.0157012939453125, -0.01329803466796875, -0.012603759765625, + 0.0078887939453125, 0.022705078125, 0.02899169921875, -0.00833892822265625, + 0.0006260871887207031, 0.004375457763671875, -0.03839111328125, -0.0137786865234375, + 0.0308837890625, 0.00145721435546875, -0.01235198974609375, -0.005779266357421875, + 0.0005960464477539062, -0.0175933837890625, -0.0246734619140625, 0.001956939697265625, + -0.01922607421875, -0.02130126953125, 0.00296783447265625, 0.004791259765625, + 0.047760009765625, 0.037445068359375, 0.0267486572265625, 0.0210113525390625, + 0.00904083251953125, 0.0007624626159667969, -0.0287628173828125, 0.01433563232421875, + -0.0005297660827636719, -0.00323486328125, -0.0081787109375, -0.01287078857421875, + 0.02862548828125, -0.0020294189453125, -0.01351165771484375, -0.0036945343017578125, + 0.0152587890625, -0.0271453857421875, -0.0008630752563476562, -0.00928497314453125, + 0.0006680488586425781, -0.002712249755859375, -0.0260162353515625, 0.00270843505859375, + 0.004055023193359375, 0.0201873779296875, 0.0253143310546875, -0.0115814208984375, + 0.0087890625, 0.007762908935546875, -0.0038604736328125, -0.034912109375, 0.01010894775390625, + -0.006328582763671875, 0.0196685791015625, -0.01546478271484375, 0.047607421875, + 0.00203704833984375, 0.02001953125, -0.01052093505859375, 0.0146331787109375, + -0.057830810546875, 0.005741119384765625, -0.00894927978515625, -0.04425048828125, + 0.01212310791015625, -0.01107025146484375, -0.01436614990234375, -0.03472900390625, + -0.01097869873046875, -0.002414703369140625, 0.02166748046875, -0.004619598388671875, + -0.0038013458251953125, -0.02789306640625, 0.0074920654296875, -0.0050201416015625, + -0.0256500244140625, 0.006008148193359375, -0.00044608116149902344, -0.032318115234375, + -0.0221405029296875, 0.00688934326171875, 0.0057830810546875, 0.0311126708984375, + -0.04052734375, 0.033782958984375, -0.0478515625, -0.0264739990234375, 0.0177764892578125, + 0.0043487548828125, 0.032562255859375, 0.006526947021484375, 0.039703369140625, + -0.026153564453125, -0.01641845703125, -0.0011434555053710938, 0.057281494140625, + 0.009246826171875, -0.002307891845703125, 0.00601959228515625, 0.0269317626953125, + -0.0098419189453125, 0.0259246826171875, 0.000553131103515625, 0.0141448974609375, + 0.01104736328125, -0.0423583984375, -0.02301025390625, 0.0242156982421875, 0.005218505859375, + -0.0307464599609375, 0.0001952648162841797, -0.007236480712890625, -0.002918243408203125, + 0.030364990234375, -0.006961822509765625, 0.01427459716796875, -0.016387939453125, + -0.01544189453125, -0.00080108642578125, 0.055145263671875, -0.0199127197265625, + -0.01238250732421875, 0.005527496337890625, 0.03338623046875, -0.00423431396484375, + -0.01434326171875, 0.033843994140625, 0.0006275177001953125, -0.01140594482421875, + -0.0289154052734375, 0.01422882080078125, 0.0262298583984375, 0.0160064697265625, + 0.00348663330078125, 0.00499725341796875, -0.0186004638671875, 0.008636474609375, + 0.0119476318359375, -0.00760650634765625, -0.01140594482421875, 0.001071929931640625, + 0.0291748046875, 0.007343292236328125, 0.0089569091796875, -0.0273284912109375, + 0.02581787109375, 0.0012865066528320312, 0.0091705322265625, -0.0078125, + -0.0005130767822265625, -0.0032978057861328125, -0.0214996337890625, 0.0024871826171875, + -0.00516510009765625, 0.005031585693359375, 0.0017547607421875, -0.0244293212890625, + 0.033416748046875, -0.003173828125, -0.00469970703125, -0.02655029296875, 0.050628662109375, + -9.256601333618164e-5, 0.044403076171875, 0.0265045166015625, 0.030181884765625, + 0.0278472900390625, 0.0207366943359375, -0.006076812744140625, 0.0031414031982421875, + 0.0273895263671875, 0.01100921630859375, 0.0127716064453125, -0.0091552734375, + -0.024078369140625, -0.01763916015625, -0.012237548828125, 0.00582122802734375, + -0.0323486328125, -0.005199432373046875, 0.002185821533203125, -0.0223388671875, + 0.0087738037109375, 0.004486083984375, -0.034332275390625, -0.0426025390625, + -0.043548583984375, -0.0187530517578125, 0.0120391845703125, 0.007640838623046875, + -0.02490234375, 0.020782470703125, 0.0080413818359375, 0.015228271484375, 0.011322021484375, + 0.03375244140625, 0.01212310791015625, 0.00794219970703125, -0.037139892578125, + -0.00850677490234375, 0.003047943115234375, 0.03564453125, 0.01461029052734375, + -0.07061767578125, -0.026824951171875, 0.01201629638671875, -0.030426025390625, + -0.00994873046875, 0.0136871337890625, -0.00403594970703125, 0.03411865234375, + -0.0102386474609375, 0.0360107421875, 0.0148468017578125, 0.0048675537109375, + 0.01194000244140625, 0.0073089599609375, 0.0097808837890625, -0.0015048980712890625, + -0.0218505859375, -0.0089263916015625, -0.03839111328125, 0.00998687744140625, + -0.01511383056640625, -0.0109405517578125, -0.016693115234375, 0.010345458984375, + 0.007534027099609375, -0.027740478515625, -0.01214599609375, 0.03045654296875, + -0.006214141845703125, -0.00823211669921875, -0.039947509765625, 0.0190887451171875, + 0.0015935897827148438, -0.01441192626953125, -0.026824951171875, 0.01262664794921875, + 0.0081787109375, -0.00121307373046875, 0.028167724609375, -0.0121307373046875, + 0.0364990234375, 0.04180908203125, 0.008819580078125, -0.03692626953125, 0.008392333984375, + 0.0179595947265625, -0.022979736328125, 0.035858154296875, -0.0103607177734375, + -0.0175933837890625, -0.0076751708984375, -0.01113128662109375, -7.134675979614258e-5, + 0.0014734268188476562, 0.0286865234375, 0.0130767822265625, -0.012176513671875, + 0.03790283203125, 0.000545501708984375, -0.00955963134765625, -0.01300811767578125, + -0.00710296630859375, -0.0021190643310546875, 0.0175323486328125, -0.0228424072265625, + -0.0292205810546875, -0.0467529296875, -0.0001494884490966797, -0.020660400390625, + 0.028289794921875, 0.007568359375, 0.007144927978515625, -0.004070281982421875, + 0.001617431640625, -0.025909423828125, 0.0210723876953125, 0.0005707740783691406, + -0.0024089813232421875, -0.03302001953125, -0.0009350776672363281, 0.0335693359375, + 0.01461029052734375, 0.0014247894287109375, 0.0178375244140625, 0.004451751708984375, + 0.00417327880859375, 0.015777587890625, -0.050048828125, -0.0236053466796875, + 0.00559234619140625, -0.044525146484375, -0.0106353759765625, 0.0185394287109375, + 0.00327301025390625, -0.016387939453125, -0.00872039794921875, -0.01154327392578125, + -0.0269317626953125, 0.0203399658203125, 0.0211639404296875, 0.0184173583984375, + -0.03314208984375, -0.0003838539123535156, -0.0208587646484375, -0.0325927734375, + -0.0157318115234375, 0.0200042724609375, -0.043792724609375, -0.00133514404296875, + 0.006130218505859375, 0.0010900497436523438, 0.059844970703125, -0.006809234619140625, + -0.0220489501953125, -0.02020263671875, -0.03985595703125, -0.0360107421875, + -0.06671142578125, 0.00795745849609375, 0.00858306884765625, -0.005939483642578125, + -0.004425048828125, -0.033111572265625, 0.01450347900390625, 0.005802154541015625, + -0.00946044921875, 0.0006208419799804688, 0.0009217262268066406, 0.0146636962890625, + 0.0005207061767578125, -0.016693115234375, 0.004413604736328125, 0.0416259765625, + 0.0226593017578125, 0.0187835693359375, 0.00815582275390625, 0.007801055908203125, + -0.020660400390625, 0.007373809814453125, -0.046234130859375, -0.006374359130859375, + 0.0004968643188476562, 0.004444122314453125, 0.0166473388671875, -0.0004935264587402344, + -0.045135498046875, -0.002285003662109375, 0.01092529296875, -0.0379638671875, + 0.0004000663757324219, -0.00968170166015625, 0.017822265625, -0.01593017578125, + 0.040374755859375, -0.0026721954345703125, 0.02044677734375, 0.02154541015625, + -0.00917816162109375, -0.029876708984375, 0.00977325439453125, -0.01029205322265625, + 0.031280517578125, -0.01253509521484375, -0.004192352294921875, -0.008026123046875, + -0.0384521484375, -0.0064544677734375, 0.01024627685546875, 0.0047607421875, + -0.0227813720703125, 0.0018978118896484375, -0.00684356689453125, 0.0306854248046875, + -0.029266357421875, -0.0106658935546875, -0.0099334716796875, -0.007419586181640625, + 0.01082611083984375, -0.0023860931396484375, 0.0173492431640625, 0.01482391357421875, + 0.0254974365234375, 0.006153106689453125, -0.0167388916015625, 0.0208282470703125, + -3.641843795776367e-5, -0.0156707763671875, 0.05157470703125, -0.031097412109375, + -0.0007042884826660156, -0.01015472412109375, 0.00801849365234375, 0.0185394287109375, + 0.01103973388671875, 0.01035308837890625, 0.0020122528076171875, 0.0032329559326171875, + -0.005039215087890625, -0.006359100341796875, -0.0128021240234375, 0.0237884521484375, + 0.019775390625, 0.0244903564453125, 0.03985595703125, 0.00400543212890625, + -0.0202484130859375, -0.0059356689453125, 0.0011281967163085938, -0.022308349609375, + -0.01947021484375, 0.005340576171875, 0.0213775634765625, -0.00972747802734375, + -0.0264129638671875, 0.0110015869140625, -0.0075225830078125, 0.0033245086669921875, + -0.00429534912109375, 0.00238800048828125, 0.0400390625, 0.0157470703125, 0.0235137939453125, + 0.01229095458984375, -0.023162841796875, 0.0168304443359375, -0.039154052734375, + -0.03033447265625, -0.00827789306640625, -0.021270751953125, 0.01047515869140625, + -0.00959014892578125, 0.007717132568359375, -0.00595855712890625, 0.003101348876953125, + -0.04083251953125, 0.005950927734375, -0.023468017578125, 0.034820556640625, + 0.026885986328125, 0.01142120361328125, 0.0105133056640625, -0.0034332275390625, + -0.020782470703125, -0.058807373046875, 0.01451873779296875, -0.0073089599609375, + 0.0227508544921875, 0.01496124267578125, -0.00443267822265625, 0.0023345947265625, + 0.004673004150390625, 0.012603759765625, -0.039794921875, 0.035430908203125, + -0.018829345703125, -0.006694793701171875, 0.016143798828125, -0.0194244384765625, + -0.01763916015625, 0.046051025390625, 0.027801513671875, 0.045074462890625, 0.03167724609375, + 0.00658416748046875, -0.029327392578125, 0.033203125, -0.004383087158203125, + 0.0134429931640625, 0.0192413330078125, 0.0241546630859375, 0.032958984375, + 0.002063751220703125, 0.0105743408203125, -0.0014514923095703125, 0.0225677490234375, + 0.0108642578125, -0.007076263427734375, -5.4836273193359375e-5, 0.002349853515625, + 0.016510009765625, 0.002777099609375, -0.0014047622680664062, -0.0028858184814453125, + -0.018218994140625, 0.016265869140625, 0.0300445556640625, -0.02935791015625, + -0.0433349609375, 0.045501708984375, -0.046875, -0.053375244140625, -0.01065826416015625, + -0.009429931640625, -0.0015954971313476562, -0.0164642333984375, -0.01137542724609375, + -0.039276123046875, -0.0170440673828125, -0.0175018310546875, 0.0193634033203125, + 0.0134429931640625, -0.0239715576171875, -0.01306915283203125, -0.01678466796875, + -0.0206298828125 + ] + }, + { + "tag": "performing arts", + "description": "a live show presented to an audience, including theater productions, dance showcases, stand up, poetry, comedy sets, dramatic readings, or talent shows (music is categorized separately)", + "embedding": [ + 0.013824462890625, 0.0031147003173828125, -0.014617919921875, 0.0005583763122558594, + 0.0144195556640625, -0.015777587890625, -0.02349853515625, 0.0005903244018554688, + 0.0158843994140625, 0.0209197998046875, 0.0155792236328125, 0.0297698974609375, + -0.00397491455078125, 0.010833740234375, 0.039031982421875, 0.038665771484375, + -0.04510498046875, -0.0273284912109375, 0.01125335693359375, -0.00675201416015625, + 0.06622314453125, -0.00713348388671875, -0.00807952880859375, 0.0163726806640625, + -0.0290679931640625, -0.019073486328125, -0.058502197265625, 0.0482177734375, + 0.01190185546875, 0.043304443359375, 0.01033782958984375, -0.02484130859375, + 0.0257720947265625, -0.04083251953125, -0.0174407958984375, 0.043853759765625, + 0.0110321044921875, -0.0093536376953125, 0.05224609375, -0.0057373046875, -0.031280517578125, + -0.003170013427734375, -0.02020263671875, -0.0208892822265625, 0.00872039794921875, + 0.061279296875, -0.02484130859375, -0.034576416015625, 0.0025653839111328125, + 0.040679931640625, -0.05126953125, -0.01342010498046875, 0.0166168212890625, + -0.00971221923828125, 0.0601806640625, 0.0044097900390625, -0.006317138671875, + 0.0143585205078125, -0.02001953125, -0.040679931640625, 0.0164337158203125, + 0.01082611083984375, 0.039306640625, 0.041534423828125, -0.034423828125, 0.0275421142578125, + -0.054931640625, 0.01470947265625, 0.007221221923828125, 0.015289306640625, 0.03216552734375, + 0.048797607421875, -0.003787994384765625, 0.0308380126953125, -0.02252197265625, + 0.02252197265625, -0.0164794921875, 0.054229736328125, -0.0200042724609375, -0.02532958984375, + 0.016632080078125, -0.02789306640625, -0.0404052734375, 0.030487060546875, 0.0117645263671875, + 0.0089111328125, -0.0545654296875, 0.0035991668701171875, -0.037384033203125, + 0.0211029052734375, -0.03076171875, -0.01297760009765625, 0.04754638671875, 0.06585693359375, + 0.03363037109375, -0.0362548828125, -0.0028324127197265625, -0.031951904296875, + 0.0034923553466796875, 0.058135986328125, 0.038818359375, -0.017181396484375, + -0.04681396484375, -0.039794921875, 0.061248779296875, 0.03271484375, -0.02496337890625, + 0.0159149169921875, -0.00469970703125, -0.05645751953125, -0.05828857421875, + -0.0307159423828125, -0.019287109375, 0.034912109375, 0.021026611328125, 0.007175445556640625, + 0.128173828125, -0.02630615234375, 0.027557373046875, 0.000988006591796875, + -0.046783447265625, 0.041107177734375, -0.02545166015625, -0.041351318359375, + -0.0135955810546875, -0.0034389495849609375, -0.0218658447265625, -0.01226043701171875, + -0.0033416748046875, 0.0394287109375, 0.01107025146484375, -0.039031982421875, + 0.0128173828125, -0.056854248046875, -0.05450439453125, 0.0048828125, -0.039520263671875, + 0.005023956298828125, -0.03070068359375, -0.0181121826171875, 0.042877197265625, + -0.01617431640625, 0.0199127197265625, 0.0633544921875, 0.039093017578125, + -0.0264739990234375, -0.0198822021484375, 0.051544189453125, 0.01197052001953125, + -0.0013980865478515625, -0.00527191162109375, 0.036163330078125, -0.01332855224609375, + 0.04180908203125, 0.007320404052734375, -0.041748046875, -0.03094482421875, -0.0201416015625, + -0.02105712890625, -0.050628662109375, 0.0369873046875, -0.0158538818359375, + -0.0292510986328125, 0.0229034423828125, -0.053680419921875, -0.022552490234375, + -0.07159423828125, 0.007198333740234375, -0.01529693603515625, 0.01137542724609375, + -0.033782958984375, 0.034576416015625, -0.0146636962890625, 0.0168914794921875, + 0.038482666015625, -0.02288818359375, 0.030548095703125, 0.0177154541015625, + -0.03314208984375, 0.0230865478515625, 0.00811004638671875, 0.05206298828125, + -0.03961181640625, 0.015380859375, -0.028167724609375, 0.0364990234375, 0.047027587890625, + 0.0081939697265625, 0.0029010772705078125, -0.01904296875, -0.01450347900390625, + 0.00818634033203125, 0.00988006591796875, 0.037933349609375, 0.0172119140625, + -0.01190948486328125, -0.0102691650390625, 0.0025119781494140625, 0.0233917236328125, + 0.00443267822265625, 0.0234222412109375, -0.01776123046875, 0.031219482421875, + -0.0201263427734375, -0.02044677734375, -0.0122528076171875, -0.020172119140625, + 0.01641845703125, 0.0421142578125, 0.0214996337890625, -0.0010976791381835938, 0.02197265625, + 0.0202484130859375, 0.021697998046875, 0.01558685302734375, 0.00215911865234375, + 0.0552978515625, 0.044952392578125, -0.0323486328125, 0.053314208984375, + 0.0017671585083007812, 0.0008249282836914062, 0.041168212890625, 0.015106201171875, + 0.027008056640625, 0.020263671875, -0.025634765625, -0.046966552734375, -0.0153350830078125, + -0.0103302001953125, 0.0193634033203125, 0.006351470947265625, -0.03167724609375, + 0.0243072509765625, -0.01551055908203125, 0.012908935546875, -0.050628662109375, + -0.0156402587890625, -0.01483917236328125, -0.00646209716796875, 0.043975830078125, + -0.006694793701171875, 0.00959014892578125, -0.0002048015594482422, 0.08734130859375, + 0.040679931640625, 0.010772705078125, -0.03729248046875, -0.0235748291015625, + -0.0008215904235839844, 0.02392578125, -0.01019287109375, -0.0240325927734375, -0.02294921875, + 0.03216552734375, -0.034576416015625, 0.028839111328125, -0.01715087890625, + -0.037445068359375, -0.00592803955078125, 0.0189361572265625, 0.032806396484375, + -0.006195068359375, -0.01380157470703125, -0.027008056640625, 0.0114288330078125, + -0.01113128662109375, -0.00011533498764038086, 0.036651611328125, 0.00699615478515625, + 0.01288604736328125, 0.0105133056640625, -0.047454833984375, -0.02337646484375, -0.0302734375, + -0.01371002197265625, 0.038177490234375, 0.0556640625, 0.048919677734375, 0.0322265625, + 0.0026493072509765625, -0.0584716796875, 0.0022411346435546875, -0.0238494873046875, + 0.0004849433898925781, 0.029815673828125, -0.013580322265625, -0.01904296875, + 0.007030487060546875, 0.0262908935546875, -0.0017795562744140625, -0.027313232421875, + 0.01654052734375, -0.03497314453125, 0.025909423828125, 0.00197601318359375, + 0.045806884765625, -0.0015249252319335938, 0.0100250244140625, 0.00589752197265625, + -0.0137939453125, -0.0650634765625, -0.0219573974609375, 0.01546478271484375, + -0.031158447265625, 0.0758056640625, -0.02813720703125, 0.0220489501953125, 0.037078857421875, + -0.025634765625, 0.01263427734375, 0.02313232421875, 0.0208587646484375, 0.00917816162109375, + -0.01128387451171875, 0.00901031494140625, -0.0023193359375, 0.037384033203125, + 0.0281219482421875, -0.041168212890625, -0.0186004638671875, -0.0225677490234375, + 0.00861358642578125, -0.0036678314208984375, 0.0068206787109375, 0.03167724609375, + 0.01739501953125, 0.01568603515625, -0.0347900390625, -0.040283203125, -0.0240325927734375, + -0.00835418701171875, -0.028472900390625, 0.04119873046875, 0.045379638671875, + -0.03179931640625, 0.036865234375, 0.01629638671875, -0.0205841064453125, -0.0236968994140625, + -0.0174407958984375, -0.006374359130859375, -0.0269622802734375, 0.043975830078125, + 0.0074005126953125, -0.025054931640625, -0.002681732177734375, -0.0210723876953125, + 0.01165771484375, 0.01308441162109375, 0.005855560302734375, -0.050201416015625, + 0.01381683349609375, -0.00926971435546875, 0.005207061767578125, -0.02874755859375, + 0.05413818359375, -0.01861572265625, -0.002658843994140625, 0.0187835693359375, + 0.01343536376953125, 0.00408172607421875, 0.01629638671875, 0.00357818603515625, + 0.02203369140625, 0.057220458984375, -0.0455322265625, -0.026153564453125, + 0.01226043701171875, -0.044189453125, 0.058929443359375, 0.0094757080078125, 0.03985595703125, + 0.025146484375, -0.042877197265625, -0.007297515869140625, 0.016571044921875, + -0.0201416015625, -0.0186614990234375, -0.018798828125, -0.04345703125, 0.00508880615234375, + 0.045684814453125, -0.039276123046875, -0.038848876953125, 0.027862548828125, + 0.0205841064453125, 0.02435302734375, -0.01511383056640625, -0.0061187744140625, + 0.0049285888671875, -0.06610107421875, -0.03826904296875, -0.01314544677734375, + -0.0153350830078125, -0.02325439453125, -0.01617431640625, 0.06817626953125, + 0.0289459228515625, 0.00893402099609375, 0.030487060546875, 0.00510406494140625, + 0.035369873046875, -0.017730712890625, 0.0157928466796875, 0.006664276123046875, + 0.014617919921875, -0.035797119140625, -0.0064544677734375, -0.0302581787109375, + 0.0218963623046875, -0.00688934326171875, 0.020538330078125, 0.056854248046875, + 0.007442474365234375, 0.01099395751953125, 0.043975830078125, -0.0037097930908203125, + 0.01468658447265625, 0.02728271484375, 0.029205322265625, -0.02325439453125, + -0.0243988037109375, 0.033599853515625, -0.03680419921875, 0.038177490234375, + 0.0088653564453125, 0.0087738037109375, -0.0355224609375, 0.02410888671875, + -0.00872039794921875, 0.051788330078125, -0.0062713623046875, -0.03167724609375, + 0.009307861328125, 0.015777587890625, -0.01593017578125, 0.0007028579711914062, + -0.0091552734375, -0.0033664703369140625, 0.007720947265625, 0.0458984375, -0.03314208984375, + -0.0126190185546875, -0.03399658203125, 0.0214996337890625, -0.039306640625, + 0.00025653839111328125, 0.01094818115234375, -0.0167083740234375, 0.0022029876708984375, + -0.020721435546875, -0.034210205078125, -0.00908660888671875, -0.0032825469970703125, + -0.018218994140625, 0.07171630859375, 0.032806396484375, 0.01166534423828125, + -0.05181884765625, -0.047271728515625, 0.06805419921875, 0.0006608963012695312, + -0.01406097412109375, 0.0253753662109375, -0.006099700927734375, 0.0704345703125, + -0.050079345703125, 0.016021728515625, -0.03582763671875, 0.0175323486328125, + -0.019134521484375, 0.03875732421875, 0.0247344970703125, -0.041046142578125, + -0.004673004150390625, 0.035552978515625, 0.01157379150390625, -0.0122833251953125, + -0.020782470703125, 0.050079345703125, 0.002716064453125, -0.029693603515625, + 0.0308990478515625, -0.01947021484375, -0.05181884765625, -0.00519561767578125, + -0.018646240234375, 0.06500244140625, 0.0018939971923828125, -0.00910186767578125, + 0.0026111602783203125, 0.02880859375, -0.01024627685546875, 0.01145172119140625, + 0.003925323486328125, -0.07940673828125, 0.0167388916015625, -0.027313232421875, + -0.026123046875, -0.05230712890625, -0.0103759765625, -0.03167724609375, -0.021820068359375, + 0.0210723876953125, 0.016571044921875, 0.0004372596740722656, -0.0005040168762207031, + 0.05670166015625, 0.01328277587890625, 0.0113067626953125, -0.01235198974609375, + 0.01117706298828125, 0.01413726806640625, -0.0265350341796875, -0.0230712890625, + -0.04974365234375, 0.0131988525390625, 0.004230499267578125, 0.050994873046875, + -0.006488800048828125, -0.0031032562255859375, -0.0310211181640625, -0.026885986328125, + -0.0230712890625, -0.003498077392578125, 0.01462554931640625, -0.0299224853515625, + -0.005184173583984375, -0.0645751953125, -0.00847625732421875, 0.0037708282470703125, + 0.0032100677490234375, 0.0023059844970703125, -0.0011930465698242188, -0.0009250640869140625, + -0.043792724609375, -0.0024814605712890625, 0.0165252685546875, 0.004062652587890625, + -0.02398681640625, 0.0189666748046875, 0.00988006591796875, -0.0118865966796875, + 0.0325927734375, 0.01131439208984375, 0.036590576171875, -0.006561279296875, + -0.002361297607421875, 0.00539398193359375, 0.0303192138671875, -0.0225830078125, + -0.0015649795532226562, 0.00786590576171875, 0.01116180419921875, 0.0290679931640625, + 0.00933837890625, -0.032745361328125, -0.0173492431640625, -0.0131988525390625, + -0.0001678466796875, -0.01885986328125, 0.000972747802734375, -0.01389312744140625, + 0.0217437744140625, 0.016571044921875, -0.01522064208984375, 0.0201416015625, + -0.0066680908203125, 0.058135986328125, -0.0211181640625, -0.00469970703125, + -0.035247802734375, -0.0192413330078125, -0.01971435546875, -0.0108489990234375, + 0.016815185546875, -0.0209197998046875, -0.001934051513671875, -0.0177154541015625, + 0.0142822265625, -0.0277862548828125, -0.03070068359375, -0.006778717041015625, + -0.038665771484375, 0.001445770263671875, 0.0203399658203125, -0.004093170166015625, + -0.03265380859375, 0.0010614395141601562, 0.01153564453125, -0.01560211181640625, + -0.0189666748046875, 0.0166015625, 0.02069091796875, -0.009368896484375, -0.0116119384765625, + -0.025848388671875, -0.037445068359375, -0.0731201171875, -0.0059967041015625, + 0.00705718994140625, -0.01384735107421875, -0.007778167724609375, 0.00257110595703125, + 0.02783203125, -0.0252685546875, -0.019378662109375, 0.02825927734375, -0.035980224609375, + -0.001361846923828125, -0.037567138671875, -0.0040130615234375, -0.0241546630859375, + -0.0650634765625, -0.029510498046875, -0.01136016845703125, -0.0280914306640625, + 0.00931549072265625, -0.027984619140625, -0.039947509765625, -0.009063720703125, + 0.0154266357421875, 0.017059326171875, 0.0241546630859375, 0.0294342041015625, + -0.0263519287109375, -0.0087432861328125, -0.007724761962890625, 0.0155181884765625, + 0.0026531219482421875, 0.00830841064453125, 0.0526123046875, -0.00677490234375, + -0.0240325927734375, -0.039337158203125, -0.034759521484375, 0.0044403076171875, + -0.024017333984375, -0.007389068603515625, 0.07696533203125, 0.008331298828125, + 0.01235198974609375, -0.03424072265625, 0.0097808837890625, -0.01439666748046875, + 0.0238189697265625, -0.0110015869140625, 0.01549530029296875, -0.0050048828125, + 0.0178375244140625, 0.004360198974609375, -0.006465911865234375, -0.0203399658203125, + -0.01018524169921875, -0.0103912353515625, -0.034088134765625, -0.0037441253662109375, + -0.00919342041015625, 0.0021190643310546875, -0.00383758544921875, 0.0460205078125, + -0.00818634033203125, -0.01413726806640625, 0.01186370849609375, 0.040985107421875, + 0.037353515625, -0.01061248779296875, -0.0305328369140625, 0.01149749755859375, + -0.0198974609375, 0.00014984607696533203, 0.0302276611328125, -0.006420135498046875, + 0.085205078125, -0.01214599609375, -0.004787445068359375, -0.002918243408203125, + -0.042755126953125, 0.0099029541015625, -0.03680419921875, 0.01357269287109375, + -0.046539306640625, 0.0012922286987304688, -0.0155792236328125, -0.05230712890625, + 0.04022216796875, -0.0103607177734375, 0.0182952880859375, -0.018218994140625, + -0.0194549560546875, 0.0217437744140625, 0.005352020263671875, 0.008575439453125, + -0.04437255859375, -0.0157623291015625, -0.00443267822265625, -0.0126800537109375, + 0.0099945068359375, -0.046905517578125, -0.0285186767578125, 0.0379638671875, + -0.0229034423828125, -0.041748046875, 0.018310546875, 0.01715087890625, 0.02459716796875, + 0.00478363037109375, -0.00991058349609375, -0.01922607421875, -0.01236724853515625, + 0.0118408203125, -0.02667236328125, 0.002777099609375, -0.01317596435546875, + -0.0139923095703125, 0.01351165771484375, -0.01244354248046875, 0.03570556640625, + 0.0181732177734375, -0.01108551025390625, 0.02362060546875, -0.0260467529296875, + -0.0168609619140625, -0.05975341796875, 0.00786590576171875, -0.024658203125, + -0.036041259765625, -0.0274658203125, -0.032012939453125, 0.021392822265625, 0.0323486328125, + 0.031402587890625, 0.0042572021484375, -0.01493072509765625, 0.0013856887817382812, + -0.03216552734375, 0.00466156005859375, 0.005107879638671875, -0.0092620849609375, + 0.02294921875, -0.050079345703125, -0.007396697998046875, 0.00812530517578125, + 0.01328277587890625, 0.002437591552734375, -0.0207672119140625, -0.03643798828125, + 0.00969696044921875, 0.03009033203125, -0.02203369140625, 0.007053375244140625, + -0.011383056640625, -0.005054473876953125, 0.0216522216796875, -0.0244598388671875, + 0.006500244140625, -0.03497314453125, 0.033416748046875, -0.016693115234375, + 0.0162811279296875, -0.0074310302734375, -0.0029239654541015625, 0.0177154541015625, + 0.020416259765625, -0.01123809814453125, -0.0179901123046875, -0.00730133056640625, + 0.01062774658203125, -0.033905029296875, -0.046783447265625, -0.0031642913818359375, + 0.01605224609375, -0.022705078125, -0.0171051025390625, -0.0198516845703125, + -0.01520538330078125, 0.0206451416015625, 0.04278564453125, 0.021484375, + 0.0030803680419921875, -0.01549530029296875, -0.004032135009765625, 0.0255889892578125, + 0.03802490234375, 0.0229949951171875, -0.0272064208984375, -0.017822265625, -0.06536865234375, + 0.0221099853515625, 0.0089569091796875, -0.044281005859375, 0.0201873779296875, + -0.03460693359375, -0.00749969482421875, -0.01367950439453125, 0.004344940185546875, + -0.00677490234375, -0.00024235248565673828, 0.00933074951171875, -0.01097869873046875, + -0.00766754150390625, 0.01039886474609375, 0.033172607421875, 0.0189971923828125, + 0.0030384063720703125, -0.059112548828125, -0.0013980865478515625, -0.017364501953125, + -0.004413604736328125, 0.00033473968505859375, -0.022369384765625, 0.025054931640625, + -0.033660888671875, -0.012176513671875, -0.053466796875, 0.004573822021484375, + 0.034698486328125, 0.0259552001953125, -0.048858642578125, -0.025543212890625, + -0.0006270408630371094, 0.0175628662109375, -0.0185394287109375, 0.0022144317626953125, + 0.01251983642578125, -0.045501708984375, -0.00664520263671875, -0.00849151611328125, + 0.00699615478515625, 0.0087738037109375, 0.01430511474609375, -0.0283966064453125, + 0.00318145751953125, 0.03045654296875, -0.0113372802734375, -0.027984619140625, + 0.00923919677734375, -0.0082855224609375, 0.00762176513671875, -0.004673004150390625, + 0.0269317626953125, -0.01483917236328125, -0.0330810546875, -0.002925872802734375, + -0.01274871826171875, 0.00984954833984375, -0.021453857421875, -0.027069091796875, + 0.022705078125, -0.0216522216796875, 0.01384735107421875, 0.042999267578125, + -0.019012451171875, -0.054412841796875, -0.0030384063720703125, -0.0009899139404296875, + 0.0285186767578125, 0.003955841064453125, 0.01192474365234375, -0.01082611083984375, + -0.00901031494140625, 0.0195159912109375, -0.0215301513671875, 0.00946807861328125, + 0.001529693603515625, 0.0140228271484375, 0.043182373046875, -0.02099609375, + -0.0022125244140625, -0.00015842914581298828, 0.0100250244140625, 0.01010894775390625, + 0.0008068084716796875, 0.02532958984375, -0.01496124267578125, -7.319450378417969e-5, + 0.01221466064453125, -0.00044727325439453125, -0.032379150390625, 0.0114898681640625, + 0.0162811279296875, 0.037811279296875, 0.01546478271484375, -0.0109710693359375, + 0.007274627685546875, 0.030059814453125, -0.0045928955078125, -0.011199951171875, + 6.0439109802246094e-5, 0.01525115966796875, -0.0256195068359375, -0.011383056640625, + -0.0548095703125, -0.0027332305908203125, -0.00457763671875, -0.00733184814453125, + 0.0184478759765625, 0.0478515625, -0.005428314208984375, -0.0264892578125, 0.0247955322265625, + -0.019622802734375, 0.0019254684448242188, -0.036956787109375, 0.024749755859375, + -0.025634765625, 0.0182647705078125, -0.055084228515625, 0.01554107666015625, + -0.024505615234375, -0.0162200927734375, -0.01313018798828125, 0.00626373291015625, + 0.04449462890625, 0.01428985595703125, -0.0289306640625, -0.005084991455078125, + 0.004650115966796875, -0.03753662109375, 4.851818084716797e-5, 0.02508544921875, + 0.036407470703125, -0.03826904296875, 0.00038504600524902344, -0.00569915771484375, + -0.0274505615234375, 0.029388427734375, -0.00441741943359375, 0.025146484375, 0.0247802734375, + 0.0238189697265625, -0.016937255859375, 0.0268707275390625, 0.04608154296875, + 0.03411865234375, -0.02691650390625, 0.01268768310546875, -0.0233917236328125, + -0.01500701904296875, 0.010498046875, 0.057220458984375, -0.00927734375, 0.00901031494140625, + 0.01274871826171875, -0.0164031982421875, 0.0204925537109375, -0.01448822021484375, + -0.00785064697265625, 0.0152435302734375, -0.0282135009765625, 0.01087188720703125, + 0.010833740234375, -0.0162353515625, 0.00464630126953125, -0.0226287841796875, + -0.00431060791015625, -0.021209716796875, 0.005096435546875, 0.0159149169921875, + -0.00630950927734375, 0.002132415771484375, -0.017059326171875, 0.0174560546875, + -0.004817962646484375, 0.02008056640625, 0.001251220703125, -0.029296875, -0.0261688232421875, + 0.0301361083984375, -0.039825439453125, -0.004161834716796875, 0.0215606689453125, + 0.0204010009765625, 0.02435302734375, -0.011962890625, -0.002071380615234375, + -0.0133514404296875, 0.0086212158203125, -0.0164642333984375, -0.0026397705078125, + 0.0101470947265625, 0.0250396728515625, 0.02435302734375, 0.00263214111328125, + -0.039520263671875, -0.015777587890625, -0.0031719207763671875, 0.042633056640625, + 0.026580810546875, 0.02825927734375, 0.00452423095703125, -0.03594970703125, + 0.0195465087890625, -0.0068511962890625, 0.00971221923828125, 0.0309295654296875, + -0.035919189453125, 0.0279541015625, -7.510185241699219e-6, 0.029205322265625, + -0.01467132568359375, 0.0011091232299804688, 0.0021076202392578125, 0.0143585205078125, + 0.005191802978515625, 0.01230621337890625, -0.00887298583984375, 0.040374755859375, + -0.006923675537109375, 0.06976318359375, 0.026702880859375, -0.0119476318359375, + 0.00873565673828125, 0.018890380859375, 0.00830841064453125, -0.01366424560546875, + 0.011474609375, -0.0282745361328125, 0.0003421306610107422, 0.031707763671875, + 0.0067901611328125, -0.00728607177734375, 0.033355712890625, 0.0022792816162109375, + -0.035186767578125, 0.00536346435546875, 0.050079345703125, 0.0168304443359375, + 0.01641845703125, 0.0087738037109375, 0.0301055908203125, -0.01739501953125, + -0.0039825439453125, 0.01132965087890625, -0.0107421875, -0.03076171875, + -0.0025615692138671875, 0.01396942138671875, -0.0073699951171875, -0.032073974609375, + 0.00835418701171875, 0.0160369873046875, -0.0015850067138671875, 0.013702392578125, + 0.0205535888671875, 0.019622802734375, 0.021636962890625, 0.0088653564453125, + 0.00453948974609375, -0.00701141357421875, 0.0293426513671875, -0.00390625, 0.0172119140625, + 0.0017910003662109375, 0.008209228515625, -0.01776123046875, -0.030670166015625, + 0.0211639404296875, -0.02947998046875, -0.0163726806640625, 0.044158935546875, + 0.018096923828125, -0.0032863616943359375, 0.009613037109375, 0.007389068603515625, + 0.0024204254150390625, -0.0167694091796875, 0.003711700439453125, 0.0176849365234375, + 0.0238800048828125, 0.01134490966796875, 0.04498291015625, 0.034881591796875, + 0.0011682510375976562, 0.01549530029296875, 0.003143310546875, -0.02020263671875, + -0.0164031982421875, -0.01033782958984375, -0.010284423828125, 0.00046253204345703125, + 0.047760009765625, 0.0113525390625, -0.00933074951171875, -0.01861572265625, + -0.0188140869140625, -0.027252197265625, 0.0223846435546875, -0.0041656494140625, + -0.0215606689453125, 0.00406646728515625, -0.01384735107421875, -0.016754150390625, + 0.0009045600891113281, 0.046875, 0.024566650390625, 0.0171051025390625, 0.0157318115234375, + 0.001007080078125, -0.00466156005859375, -0.0024013519287109375, 0.00960540771484375, + -0.0278167724609375, 0.0031032562255859375, -0.0098724365234375, 0.0171051025390625, + -0.0447998046875, 0.01312255859375, -0.0154876708984375, 0.0267791748046875, + -0.021942138671875, 0.01666259765625, -0.038421630859375, -0.01111602783203125, + 0.007335662841796875, 0.00907135009765625, 0.039886474609375, -0.021697998046875, + 0.017059326171875, -0.0291595458984375, -0.01439666748046875, 0.0235595703125, + 0.03497314453125, -0.01206207275390625, 0.014892578125, 0.0006847381591796875, + 0.029876708984375, -0.0037384033203125, 0.007251739501953125, 0.0008082389831542969, + 0.00681304931640625, 0.00811767578125, -0.050994873046875, -0.004825592041015625, + -0.00078582763671875, -0.0012865066528320312, -0.007701873779296875, 0.017608642578125, + 0.01171112060546875, -0.013916015625, -0.0262603759765625, -0.0258026123046875, + 0.018646240234375, -0.043975830078125, -0.002384185791015625, -0.0101776123046875, + 0.06134033203125, 0.016937255859375, -0.032684326171875, 0.0239715576171875, + 0.018218994140625, 0.0200042724609375, 0.0302581787109375, 0.0212554931640625, + -0.0118865966796875, -0.016937255859375, -0.014801025390625, 0.01361846923828125, + 0.033721923828125, -0.01074981689453125, -0.00691986083984375, -0.0262908935546875, + -0.00084686279296875, -0.049835205078125, 0.0032711029052734375, -0.029632568359375, + -0.006885528564453125, 0.01064300537109375, 0.004985809326171875, 0.0165557861328125, + -0.01342010498046875, -0.01071929931640625, 0.004486083984375, 0.020599365234375, + 0.0199127197265625, -0.005035400390625, 0.0025177001953125, -0.0244598388671875, + -0.006488800048828125, 0.01120758056640625, -0.033905029296875, 0.01245880126953125, + -0.031219482421875, -0.00994873046875, 0.00949859619140625, 0.005359649658203125, + -0.038482666015625, -0.0304412841796875, 0.00034046173095703125, 0.0038967132568359375, + 0.052764892578125, 0.046295166015625, 0.0313720703125, 0.02227783203125, 0.032928466796875, + 0.0162506103515625, 0.00484466552734375, 0.0552978515625, 0.01467132568359375, + 0.0238494873046875, -0.004299163818359375, -0.022674560546875, -0.0120086669921875, + -0.03509521484375, 0.01517486572265625, -0.0335693359375, -0.00966644287109375, + 0.015777587890625, -0.00818634033203125, -0.01105499267578125, -0.0202484130859375, + -0.046966552734375, -0.008697509765625, -0.047607421875, 0.0213470458984375, + 0.0048370361328125, -0.006923675537109375, 0.01447296142578125, 0.020904541015625, + 0.00524139404296875, -0.00106048583984375, 0.0312042236328125, 0.0028209686279296875, + -0.0096893310546875, 0.006763458251953125, -0.05902099609375, -0.01904296875, + 0.0163726806640625, 0.01497650146484375, -0.0263824462890625, -0.053741455078125, + -0.01090240478515625, 0.0013475418090820312, -0.0643310546875, -0.0131988525390625, + -0.0036182403564453125, 0.0010089874267578125, 0.011962890625, 0.010894775390625, + 0.02667236328125, 0.0455322265625, 0.023895263671875, 0.0200653076171875, 0.025360107421875, + -0.010284423828125, -0.0156402587890625, -0.01531219482421875, -0.0305938720703125, + -0.01055908203125, 0.0307464599609375, 0.0141754150390625, -0.032562255859375, + -0.0212249755859375, -0.006343841552734375, -0.01367950439453125, -0.007701873779296875, + -0.004856109619140625, 0.01290130615234375, -0.03326416015625, -0.0194854736328125, + 0.01435089111328125, 0.016632080078125, -0.034393310546875, 0.027374267578125, + -0.0166168212890625, 0.0017490386962890625, 0.022003173828125, -0.0055694580078125, + 0.039154052734375, 0.0225677490234375, 0.049041748046875, 0.038787841796875, + -0.0171966552734375, -0.006317138671875, 0.0025386810302734375, 0.007457733154296875, + -0.009735107421875, 0.003086090087890625, 0.04010009765625, -0.0020771026611328125, + -0.0157470703125, -0.0193023681640625, 0.001667022705078125, -0.0101470947265625, + 0.019561767578125, 0.0255889892578125, 0.004589080810546875, 0.0190887451171875, + -0.0325927734375, 0.0130157470703125, 0.0012798309326171875, 0.04547119140625, + -0.0071868896484375, -0.011474609375, 0.006862640380859375, -0.039154052734375, + -0.028839111328125, -0.01044464111328125, -0.0202789306640625, 0.0144195556640625, + 0.06842041015625, 0.010284423828125, -0.033905029296875, -0.0017223358154296875, + 0.01488494873046875, 0.0313720703125, -0.00946807861328125, -0.007221221923828125, + -0.0183258056640625, -0.0154266357421875, 0.011322021484375, -0.006519317626953125, + -0.01080322265625, -0.0013103485107421875, 0.019866943359375, -0.04412841796875, + 0.026123046875, -0.056182861328125, -0.017730712890625, -0.0042877197265625, -0.0142822265625, + -0.015472412109375, 0.020050048828125, 0.0219879150390625, 0.004375457763671875, + 0.015380859375, -0.027557373046875, -0.039764404296875, -0.01110076904296875, + 0.01239013671875, 0.020751953125, 0.0110015869140625, 0.001941680908203125, + -0.034637451171875, -0.032440185546875, -0.0027828216552734375, 0.050201416015625, + -0.0210418701171875, -0.002689361572265625, 0.030487060546875, -0.021697998046875, + -0.01111602783203125, -0.0008206367492675781, -0.0186614990234375, 0.012237548828125, + -0.036895751953125, -0.038604736328125, -0.038055419921875, -0.0328369140625, + 0.0218658447265625, 0.003116607666015625, 0.01444244384765625, -0.010040283203125, + 0.00725555419921875, -0.0036678314208984375, 0.01033782958984375, 0.0276336669921875, + 0.007198333740234375, 0.01873779296875, -0.0011186599731445312, 0.035797119140625, + 0.010986328125, 0.0328369140625, 0.019134521484375, 0.0263824462890625, -0.00986480712890625, + 0.0216827392578125, 0.0089263916015625, 0.015533447265625, -0.03729248046875, + -0.001316070556640625, -0.00237274169921875, -0.0019168853759765625, 0.0162811279296875, + 0.0294342041015625, -0.040069580078125, 0.01192474365234375, 0.0013561248779296875, + -0.00028133392333984375, 0.043914794921875, 0.022430419921875, 0.005298614501953125, + 0.0263519287109375, 0.003936767578125, -0.0031604766845703125, 0.00908660888671875, + 0.0210418701171875, -0.01154327392578125, -0.0200653076171875, -0.0167694091796875, + 0.018280029296875, 0.01082611083984375, -0.02679443359375, 0.02374267578125, 0.026611328125, + -0.0227813720703125, -0.0107421875, -0.025421142578125, 0.00797271728515625, + -0.04119873046875, 0.018310546875, 0.0157623291015625, 0.020416259765625, -0.0171051025390625, + -0.021697998046875, 0.0162811279296875, -0.042022705078125, 0.035186767578125, + 0.0087127685546875, 0.02581787109375, -0.0023670196533203125, 0.0251312255859375, + 0.0173797607421875, -0.01371002197265625, 0.00015091896057128906, 0.00959014892578125, + 0.00830841064453125, 0.03497314453125, -0.033416748046875, -0.0012969970703125, + 0.01397705078125, 0.0106964111328125, -0.0167083740234375, -0.01190948486328125, + -0.0038242340087890625, 0.006954193115234375, -0.0305938720703125, -0.00800323486328125, + 0.0026645660400390625, -0.00011557340621948242, 0.024261474609375, -0.0038967132568359375, + 0.0350341796875, 0.05963134765625, -0.0207672119140625, -0.00914764404296875, + -0.006343841552734375, 0.007419586181640625, -0.00749969482421875, -0.03729248046875, + -8.809566497802734e-5, 0.046112060546875, -8.058547973632812e-5, -0.0276947021484375, + 0.0222625732421875, -0.036712646484375, -0.0136871337890625, -0.0192108154296875, + 0.0214080810546875, 0.056732177734375, -0.0181732177734375, 0.01328277587890625, + -0.007598876953125, -0.01309967041015625, 0.0210113525390625, -0.0137481689453125, + -0.0010662078857421875, -0.01471710205078125, -0.039886474609375, 0.01033782958984375, + 0.0247802734375, 0.0294342041015625, -0.0124359130859375, -0.0248870849609375, + -0.030548095703125, 0.0034999847412109375, -0.00876617431640625, 0.04400634765625, + 0.0003094673156738281, -0.0162811279296875, 0.018524169921875, 0.015838623046875, + -0.00742340087890625, -0.020111083984375, 0.0220184326171875, 0.00899505615234375, + 0.01303863525390625, 0.0266571044921875, 0.006500244140625, 0.01004791259765625, + 0.020172119140625, -0.0031490325927734375, -0.03680419921875, 0.007297515869140625, + -0.0025997161865234375, -0.005847930908203125, -0.01313018798828125, -0.0112762451171875, + 0.006866455078125, 0.042633056640625, 0.016876220703125, 0.044769287109375, + 0.00910186767578125, 0.032257080078125, 0.011016845703125, 0.021026611328125, + -0.028167724609375, 0.00839996337890625, -0.01309967041015625, -0.0125885009765625, + -0.0287017822265625, -0.0043487548828125, 0.0026073455810546875, -0.0180206298828125, + -0.0199127197265625, -0.0104217529296875, 0.0032558441162109375, -0.0079498291015625, + -0.0023365020751953125, -0.0018129348754882812, -0.006511688232421875, 0.0026912689208984375, + -0.00974273681640625, -0.037200927734375, 0.0125885009765625, 0.034332275390625, + -0.032623291015625, -0.0153961181640625, 0.020538330078125, -0.0305328369140625, + -0.0013742446899414062, -0.02679443359375, 0.002201080322265625, 0.015716552734375, + -0.01448822021484375, -0.0193023681640625, -0.00830078125, -0.02679443359375, + -0.01111602783203125, 0.027679443359375, 0.033721923828125, -0.033172607421875, + -0.00519561767578125, -0.0037784576416015625, -0.032623291015625 + ] + }, + { + "tag": "literature", + "description": "an event dedicated to the written and spoken word, including creative writing workshops, author Q&A sessions, poetry slams, book club discussions, literary magazine launches, and readings by visiting writers, poets, or faculty", + "embedding": [ + 0.007534027099609375, 0.052032470703125, 0.049468994140625, -0.01373291015625, + -0.036224365234375, -0.0040740966796875, -0.01068115234375, -0.00995635986328125, + -0.0103759765625, 0.0152740478515625, 0.004245758056640625, 0.026397705078125, + -0.06329345703125, 0.0513916015625, -0.0186004638671875, 0.044158935546875, + -0.0244903564453125, 0.0287628173828125, 0.03857421875, 0.0282135009765625, 0.040985107421875, + -0.0089111328125, -0.0296478271484375, 0.047882080078125, 0.005611419677734375, + 0.024139404296875, -0.049713134765625, 0.019775390625, 0.030609130859375, 0.03131103515625, + 0.036834716796875, -0.018890380859375, 0.0220184326171875, 0.010162353515625, + -0.01227569580078125, 0.037109375, -0.007801055908203125, -0.0200042724609375, + 0.021331787109375, -0.03472900390625, -0.06488037109375, -0.042236328125, -0.01641845703125, + -0.004032135009765625, -0.0355224609375, 0.0302734375, -0.0138092041015625, + -0.0254974365234375, -0.00930023193359375, 0.0024509429931640625, -0.0124664306640625, + -0.006542205810546875, 0.049407958984375, -0.003360748291015625, 0.01430511474609375, + -0.05792236328125, 0.0133056640625, -0.0219573974609375, 0.002849578857421875, + -0.03570556640625, 0.058563232421875, 0.01166534423828125, 0.0133819580078125, + 0.0014514923095703125, -0.06329345703125, 0.0101165771484375, 0.007625579833984375, + 0.0193634033203125, -0.033477783203125, 0.0169525146484375, 0.07928466796875, 0.0389404296875, + -0.0265960693359375, -0.0013303756713867188, -0.006954193115234375, 0.0340576171875, + -0.031463623046875, 0.041229248046875, -0.0250701904296875, 0.0013093948364257812, + 0.04498291015625, -0.01552581787109375, -0.0202178955078125, -0.00603485107421875, + -0.046539306640625, -0.0115203857421875, -0.030975341796875, 0.0423583984375, + -0.0316162109375, 0.0193939208984375, 0.003635406494140625, -0.0084381103515625, + 0.0213165283203125, 0.03204345703125, 0.06451416015625, -0.017974853515625, 0.0196533203125, + -0.0006232261657714844, -0.00672149658203125, 0.0367431640625, -0.005725860595703125, + -0.04107666015625, -0.0165863037109375, -0.0204925537109375, 0.051483154296875, + -0.015777587890625, -0.01059722900390625, -0.0284271240234375, 0.021697998046875, + -0.0325927734375, -0.155517578125, -0.0237884521484375, 0.01385498046875, + -0.007549285888671875, -0.00524139404296875, -0.060302734375, 0.10235595703125, + -0.07684326171875, -0.01043701171875, 0.027435302734375, -0.02935791015625, 0.049957275390625, + -0.029876708984375, 0.01416778564453125, 0.035247802734375, -0.0562744140625, + -0.00826263427734375, 0.006015777587890625, 0.01526641845703125, 0.0283050537109375, + 0.0271453857421875, -0.0201263427734375, 0.014251708984375, -0.08575439453125, + -0.03912353515625, -0.01328277587890625, -0.051727294921875, 0.027191162109375, + -0.00826263427734375, -0.006732940673828125, 0.0616455078125, 0.02099609375, + 0.016510009765625, 0.032562255859375, 0.0142669677734375, -0.040435791015625, + -0.0438232421875, -0.0158233642578125, -0.0120086669921875, -0.015350341796875, + 0.008331298828125, -0.0024547576904296875, -0.0016527175903320312, 0.035247802734375, + -0.02825927734375, -0.0305023193359375, -0.0179901123046875, 0.0236053466796875, + 0.0246734619140625, -0.024078369140625, 0.0098114013671875, -0.0306243896484375, + -0.0543212890625, -0.006649017333984375, -0.009674072265625, -0.02581787109375, + -0.006938934326171875, 0.004169464111328125, -0.04315185546875, -0.01526641845703125, + -0.06842041015625, -0.053192138671875, 0.0219268798828125, 0.072509765625, 0.0056610107421875, + -0.029510498046875, 0.0248260498046875, 0.0266571044921875, -0.0655517578125, 0.0455322265625, + -0.0067901611328125, -0.01010894775390625, -0.049957275390625, 0.006378173828125, + -0.01094818115234375, 0.040679931640625, 0.059112548828125, 0.0200653076171875, + -0.0038776397705078125, -0.0095367431640625, -0.0172271728515625, 0.04705810546875, + -0.01267242431640625, 0.03253173828125, 0.053070068359375, -0.01177215576171875, + 0.018310546875, -0.002872467041015625, -0.022705078125, 0.01216888427734375, + -0.0273895263671875, -0.007518768310546875, -0.01226043701171875, 0.0087890625, + 0.0238037109375, 0.01119232177734375, -0.004756927490234375, 0.03033447265625, + 0.013031005859375, -0.0156402587890625, 0.01324462890625, -0.005565643310546875, + 0.0635986328125, 0.00494384765625, 0.0092926025390625, -0.0003523826599121094, + 0.01390838623046875, 0.044891357421875, -0.0210723876953125, 0.00013697147369384766, + -0.0311279296875, 0.0164947509765625, 0.041748046875, 0.04388427734375, 0.009002685546875, + 0.06085205078125, -0.0034637451171875, -0.00986480712890625, -0.010986328125, -0.033447265625, + 0.028564453125, 0.016876220703125, -0.0183563232421875, 0.030731201171875, + -0.0256195068359375, -0.0033168792724609375, -0.01171875, 0.01007080078125, + 0.00499725341796875, -0.03961181640625, 0.0220489501953125, -0.03680419921875, + 0.032012939453125, 0.02130126953125, 0.01238250732421875, 0.034759521484375, + -0.0008845329284667969, -0.0506591796875, 0.02978515625, 0.037261962890625, 0.03759765625, + 0.00927734375, -0.02593994140625, 0.027740478515625, 0.01145172119140625, + -0.007701873779296875, 0.02947998046875, -0.03375244140625, 0.01180267333984375, + -0.03338623046875, 0.0634765625, -0.00811004638671875, 0.019439697265625, 0.033721923828125, + -0.0277862548828125, -0.0297088623046875, -0.03125, 0.0318603515625, 0.00925445556640625, + 0.0156097412109375, -0.0182342529296875, -0.0184783935546875, -0.02960205078125, + 0.01129913330078125, 0.0355224609375, -0.0367431640625, 0.00803375244140625, + 0.036102294921875, 0.02593994140625, 0.051177978515625, 0.0321044921875, + 0.0016183853149414062, 0.00873565673828125, 0.0122222900390625, -0.0202178955078125, + 0.058624267578125, -0.024383544921875, -0.005870819091796875, -0.036651611328125, + 0.0009751319885253906, -0.017486572265625, -0.037322998046875, 0.0017461776733398438, + 0.004352569580078125, 0.00676727294921875, 0.02618408203125, 0.027740478515625, + 0.04937744140625, 0.021575927734375, -0.006664276123046875, 0.0159149169921875, + -0.052886962890625, 0.0404052734375, -0.033966064453125, 0.000835418701171875, + 0.0633544921875, -0.00421142578125, -0.00431060791015625, -0.0249176025390625, + -0.060760498046875, 0.0175933837890625, 0.01024627685546875, -0.032257080078125, + 0.01373291015625, 0.00420379638671875, 0.003292083740234375, -0.0008587837219238281, + 0.05377197265625, 0.039886474609375, -0.06317138671875, 0.022735595703125, 0.016632080078125, + 0.0355224609375, -0.034332275390625, 0.02581787109375, -0.0311279296875, 0.048187255859375, + 0.014404296875, -0.039306640625, 0.0010986328125, 0.0013360977172851562, -0.0301971435546875, + -0.0284881591796875, 0.1055908203125, 0.051025390625, -0.00502777099609375, 0.033233642578125, + 0.0106658935546875, 0.05267333984375, 0.00429534912109375, -0.034332275390625, + -0.030303955078125, -0.059906005859375, 0.01235198974609375, 0.00458526611328125, + 0.03387451171875, 0.00885772705078125, 0.01496124267578125, 0.022796630859375, + 0.038360595703125, -0.0181732177734375, 0.0016107559204101562, -0.01016998291015625, + -0.01080322265625, -0.004627227783203125, -0.037017822265625, 0.06256103515625, + 0.00267791748046875, 0.01355743408203125, 0.006072998046875, -0.0195159912109375, + 0.003582000732421875, 0.037628173828125, 0.04254150390625, -0.0184478759765625, + 0.0026454925537109375, 0.00537109375, -0.00033593177795410156, 0.0273895263671875, + -0.0721435546875, 0.03643798828125, 0.0031871795654296875, 0.0268096923828125, + -7.134675979614258e-5, -0.054412841796875, 0.08203125, -0.0111236572265625, + 0.0037593841552734375, -0.03326416015625, 0.0107421875, -0.019622802734375, + -0.01013946533203125, -0.04083251953125, -0.01312255859375, -0.01322174072265625, 0.037109375, + -0.0090179443359375, 0.0020618438720703125, 0.004119873046875, 0.01279449462890625, + -0.0102081298828125, 0.0020236968994140625, -0.0199432373046875, 0.046478271484375, + -0.00220489501953125, 0.01654052734375, -0.03082275390625, 0.0271148681640625, + 0.032928466796875, -0.0073394775390625, -0.004497528076171875, 0.0246734619140625, + 0.0110015869140625, 0.008392333984375, 0.01308441162109375, -0.046051025390625, + 0.0225830078125, -0.0212249755859375, -0.0135955810546875, -0.005664825439453125, + 0.002849578857421875, -0.012237548828125, 0.0355224609375, 0.0114593505859375, + -0.031463623046875, 0.00412750244140625, -0.0007610321044921875, -0.06719970703125, + 0.01348114013671875, 0.0192108154296875, 0.0243072509765625, -0.0283050537109375, + -0.039581298828125, 0.0018367767333984375, 0.014617919921875, 0.028533935546875, + 0.01593017578125, -0.01195526123046875, -0.0265655517578125, -0.036376953125, + -0.03179931640625, -0.01462554931640625, 0.0546875, -0.01212310791015625, + -0.0001919269561767578, -0.02252197265625, 0.00010377168655395508, 0.014404296875, + 0.01117706298828125, -0.01898193359375, -0.065673828125, 0.048583984375, -0.025787353515625, + 0.0005793571472167969, -0.027587890625, -0.0160980224609375, 0.03387451171875, + 0.00212860107421875, 0.01313018798828125, -0.036773681640625, 0.0042877197265625, + -0.021270751953125, -0.002285003662109375, -0.01491546630859375, -0.0096893310546875, + -0.04608154296875, -0.00983428955078125, 0.022369384765625, 0.044464111328125, + -0.03533935546875, 0.00803375244140625, 0.006378173828125, 0.0016508102416992188, + -0.01381683349609375, 0.02191162109375, -0.01557159423828125, 0.010955810546875, + 0.0266876220703125, 0.0419921875, 0.0209503173828125, 0.041015625, 0.0131988525390625, + 0.00036787986755371094, 0.0177001953125, -0.0299224853515625, -0.01108551025390625, + 0.001918792724609375, -0.0221099853515625, -0.0302276611328125, -0.039459228515625, + 0.003231048583984375, -0.0196685791015625, 0.019195556640625, 0.01383209228515625, + 0.00035762786865234375, -0.0283660888671875, -0.0127410888671875, -0.03314208984375, + 0.019500732421875, -0.0290374755859375, -0.025238037109375, 0.0172271728515625, + -0.055511474609375, -0.01273345947265625, 0.0084381103515625, -0.03759765625, + -0.01465606689453125, 0.01959228515625, 0.0237274169921875, -0.0308990478515625, + -0.05877685546875, -0.00962066650390625, -0.026397705078125, -0.032318115234375, + 0.048248291015625, 0.0521240234375, -0.07440185546875, 0.0038280487060546875, 0.0263671875, + 0.039398193359375, -0.01517486572265625, -0.06396484375, -0.0013437271118164062, + 0.016082763671875, 0.016082763671875, -0.01275634765625, -0.006137847900390625, + 0.0133209228515625, -0.004360198974609375, 0.0240020751953125, 0.002593994140625, + 0.035980224609375, -0.0188446044921875, -0.047210693359375, -0.0196685791015625, + -0.00969696044921875, -0.02392578125, -0.01629638671875, 0.0044403076171875, + -0.03497314453125, -0.040740966796875, 0.0182037353515625, 0.006938934326171875, + 0.0218048095703125, -0.0216522216796875, 0.0330810546875, -0.01334381103515625, + 0.0255889892578125, 0.0255889892578125, 0.0018177032470703125, -0.03704833984375, + 0.0260467529296875, 0.00644683837890625, -0.00785064697265625, -0.0209503173828125, + 0.01512908935546875, 0.02813720703125, -0.00850677490234375, -0.04071044921875, + 0.0231170654296875, -0.0007419586181640625, -0.0257110595703125, 0.00014150142669677734, + -0.048583984375, 0.0169525146484375, 0.0292510986328125, -0.01241302490234375, + -0.04217529296875, -0.0157318115234375, 0.00612640380859375, 0.03228759765625, + -0.00975799560546875, 0.0125732421875, -0.033355712890625, 0.0013952255249023438, + -0.01076507568359375, -0.003429412841796875, 0.0269622802734375, -0.004779815673828125, + 0.0243988037109375, -0.023223876953125, 0.003513336181640625, -0.00672149658203125, + -0.0313720703125, -0.006565093994140625, -0.0307769775390625, 0.0036106109619140625, + -0.00930023193359375, 0.0047607421875, -0.0169219970703125, 0.01261138916015625, + -0.016693115234375, -0.0009202957153320312, -0.005489349365234375, -0.07818603515625, + 0.045379638671875, 0.0206451416015625, 0.023223876953125, -0.00521087646484375, + 0.0251617431640625, -0.001953125, 0.0025310516357421875, 0.00251007080078125, + -0.00250244140625, -0.00811767578125, 0.0003731250762939453, 0.031585693359375, + -0.008819580078125, -0.0169830322265625, -0.01189422607421875, -0.00894927978515625, + 0.045166015625, -0.0438232421875, 0.0036907196044921875, -0.007534027099609375, + 0.0016622543334960938, -0.03515625, -0.0084991455078125, -0.03192138671875, + -0.024139404296875, 0.02740478515625, -0.00949859619140625, 0.00859832763671875, + -0.018646240234375, -0.026641845703125, 0.00962066650390625, -0.017303466796875, + -0.024627685546875, -0.01442718505859375, -0.024017333984375, -0.003444671630859375, + 0.005664825439453125, 0.0032672882080078125, 0.016815185546875, 0.00415802001953125, + 0.028900146484375, -0.03173828125, 0.0010633468627929688, 0.0036563873291015625, + 0.046234130859375, 0.006610870361328125, 0.040740966796875, 0.036102294921875, + -0.041107177734375, -0.03265380859375, -0.017242431640625, -0.02813720703125, + -0.0084686279296875, -0.0264434814453125, -0.0036296844482421875, 0.0301513671875, + -0.07080078125, 0.006988525390625, 0.006877899169921875, 0.01078033447265625, + -0.01506805419921875, 0.031982421875, -0.01195526123046875, 0.0216522216796875, + -0.0106658935546875, -0.007549285888671875, 0.01349639892578125, 0.029388427734375, + 0.01355743408203125, 0.017913818359375, -0.037841796875, -0.01464080810546875, + -0.01552581787109375, 0.0095672607421875, -0.01010894775390625, 0.0236968994140625, + 0.0137176513671875, -0.01226043701171875, -0.012420654296875, 0.01320648193359375, + 0.035247802734375, 0.012176513671875, -0.0120086669921875, -0.0322265625, 0.01226806640625, + -0.0302734375, 0.032928466796875, 0.01751708984375, 0.0173492431640625, 0.0204925537109375, + 0.0252685546875, 0.00881195068359375, -0.0418701171875, -0.0100250244140625, + 0.0229339599609375, -0.03375244140625, -0.00411224365234375, -0.023681640625, + 0.0040740966796875, -0.0419921875, -0.0062408447265625, 0.020263671875, -0.030303955078125, + 0.0280303955078125, -0.032196044921875, 0.0224609375, -0.00736236572265625, + -0.01374053955078125, -0.0027008056640625, -0.01513671875, -0.01776123046875, + -0.004047393798828125, -0.0022640228271484375, 0.027313232421875, -0.050384521484375, + -0.004467010498046875, 0.0142059326171875, -0.007381439208984375, -0.0257110595703125, + 0.044891357421875, -0.015625, 0.01141357421875, -0.01556396484375, -0.005336761474609375, + -0.0161285400390625, 0.0022411346435546875, 0.007617950439453125, -0.0012950897216796875, + -0.019134521484375, -0.07183837890625, -0.011749267578125, 0.0207061767578125, + -0.00969696044921875, -0.01238250732421875, 0.011810302734375, -0.0271148681640625, + 0.01432037353515625, -0.01044464111328125, -0.0120391845703125, -0.028533935546875, + 0.023712158203125, 0.06280517578125, -0.018585205078125, -0.007015228271484375, + 0.02740478515625, -0.03924560546875, 0.032501220703125, 0.017120361328125, -0.03936767578125, + -0.031646728515625, -0.010894775390625, 0.02789306640625, 0.00566864013671875, + -0.0377197265625, -0.019195556640625, 0.044281005859375, -0.007015228271484375, + -0.00455474853515625, 0.03448486328125, -0.015625, -0.00775146484375, 0.0092010498046875, + 0.0178680419921875, -0.057708740234375, 0.053131103515625, -0.034881591796875, + 0.0095367431640625, -0.00258636474609375, -0.0001825094223022461, 0.0010156631469726562, + 0.0018863677978515625, -0.007724761962890625, 0.0039825439453125, -0.00585174560546875, + 0.00244140625, 0.00507354736328125, -0.0208587646484375, 0.01493072509765625, + -0.0064544677734375, -0.007785797119140625, 0.01061248779296875, 0.00827789306640625, + -0.0217437744140625, 0.0148773193359375, 0.0021762847900390625, 0.0118255615234375, + -0.029632568359375, -0.0191802978515625, 0.024993896484375, -0.0007615089416503906, + -0.010040283203125, -0.0146026611328125, 0.00409698486328125, 0.00495147705078125, + 0.0024623870849609375, 0.023773193359375, -0.033843994140625, 0.01436614990234375, + 0.01222991943359375, 0.017364501953125, -0.042388916015625, -0.0086669921875, + -0.021575927734375, -0.03759765625, -0.0379638671875, -0.0108489990234375, + -0.0174102783203125, 0.0254669189453125, -0.049560546875, 0.013092041015625, -0.0213623046875, + -0.01404571533203125, -0.00946807861328125, 0.0299072265625, -0.025299072265625, + 0.014251708984375, 0.002437591552734375, -0.00875091552734375, 0.022064208984375, + -0.024658203125, 0.02569580078125, -0.0338134765625, 0.047088623046875, -0.01093292236328125, + -0.046875, -0.0083160400390625, 0.01546478271484375, -0.0040435791015625, -0.058563232421875, + -0.0023956298828125, -0.050201416015625, 0.00865936279296875, -0.0106048583984375, + 0.0341796875, 0.004566192626953125, 0.004459381103515625, 0.0011873245239257812, + 0.015472412109375, 0.0121307373046875, 0.0203399658203125, -0.0017757415771484375, + 0.0282135009765625, 0.0041656494140625, 0.00048351287841796875, -0.0225830078125, + 0.0163726806640625, 0.005153656005859375, 0.0158538818359375, 0.0008940696716308594, + 0.015899658203125, 0.011749267578125, -0.044281005859375, 0.01180267333984375, + -0.018218994140625, -0.041229248046875, 0.0030040740966796875, 0.014556884765625, + 0.0223388671875, -0.0274810791015625, -0.024688720703125, 0.0301361083984375, + -0.007549285888671875, -0.019256591796875, -0.01275634765625, -0.0011157989501953125, + -0.0142059326171875, 0.0133819580078125, 0.045623779296875, -0.00921630859375, + -0.04779052734375, 0.05218505859375, 0.00510406494140625, -0.00579071044921875, + -0.00858306884765625, -0.05023193359375, 0.01389312744140625, -0.0625, 0.01442718505859375, + -0.00591278076171875, -0.006622314453125, -0.04791259765625, -0.00010496377944946289, + 0.0251007080078125, 0.03485107421875, 0.0157928466796875, -0.048187255859375, + 0.0232696533203125, -0.0090789794921875, -0.00905609130859375, 0.0267181396484375, + 0.0138397216796875, 0.0021572113037109375, -0.0154266357421875, 0.00940704345703125, + -0.0175628662109375, 0.029327392578125, -0.01226806640625, 0.00496673583984375, + 0.044769287109375, -0.01641845703125, -0.03167724609375, 0.0214691162109375, + 0.0126190185546875, -0.0022830963134765625, 0.0021190643310546875, -0.0265655517578125, + -0.0159912109375, -0.0184478759765625, -0.0169677734375, 0.0175018310546875, + -0.03167724609375, -0.03216552734375, -0.023193359375, 0.0120849609375, -0.0230712890625, + -0.023406982421875, 0.0157012939453125, 0.0037841796875, -0.0310821533203125, + -0.00876617431640625, 0.0068359375, 0.010467529296875, 0.05096435546875, -0.0121917724609375, + -0.046844482421875, 0.0132293701171875, 0.006435394287109375, 0.0174407958984375, + 0.01268768310546875, 0.0161895751953125, 0.025299072265625, -0.046661376953125, + -0.0293121337890625, 0.0374755859375, -0.038970947265625, -0.019989013671875, + 0.041229248046875, 0.0021514892578125, -0.00661468505859375, 0.04083251953125, + -0.0098876953125, -0.0118408203125, 0.006572723388671875, -0.01557159423828125, + -0.0129852294921875, 0.00110626220703125, 0.01219940185546875, -0.0111846923828125, + -0.003459930419921875, 0.059600830078125, 0.034576416015625, 0.0303955078125, + 0.0196075439453125, 0.0021266937255859375, 0.0379638671875, -0.009674072265625, + 0.0212249755859375, -0.0277557373046875, -0.032684326171875, -0.00353240966796875, + -0.0288848876953125, 0.01001739501953125, -0.0254974365234375, -0.01041412353515625, + -0.0162200927734375, -0.041168212890625, -0.023193359375, 0.022186279296875, + -0.0184478759765625, 0.030670166015625, -0.0170135498046875, 0.007480621337890625, + -0.032379150390625, 0.0034637451171875, 0.0401611328125, 0.05401611328125, + -0.0225677490234375, -0.005321502685546875, 0.00021827220916748047, 0.01064300537109375, + 0.0012655258178710938, -0.036224365234375, 0.01312255859375, -0.00547027587890625, + 0.0263214111328125, 0.0082855224609375, 0.0068359375, 0.0160980224609375, + 0.0018453598022460938, -0.024383544921875, -0.0028972625732421875, 0.01715087890625, + 0.0031032562255859375, 0.0078277587890625, -0.033477783203125, 0.017669677734375, + 0.0212249755859375, 0.0219268798828125, 0.0294342041015625, -0.0067291259765625, + 0.01019287109375, -0.0017766952514648438, 0.005886077880859375, 0.029388427734375, + -0.00719451904296875, 0.01282501220703125, -0.0219573974609375, 0.0021076202392578125, + 0.00986480712890625, 0.011932373046875, 0.0062255859375, 0.026123046875, -0.0223236083984375, + 0.036041259765625, 0.00986480712890625, -0.005924224853515625, -0.0129241943359375, + -0.020111083984375, -0.001987457275390625, 0.007076263427734375, 0.009765625, + 0.0218048095703125, 0.01207733154296875, -0.0020904541015625, -0.036895751953125, + 0.0251922607421875, 0.031402587890625, -0.007152557373046875, 0.004486083984375, + 0.0123443603515625, -0.01708984375, -0.005657196044921875, -0.00807952880859375, + -0.03961181640625, 0.035919189453125, 0.033233642578125, -0.0176849365234375, -0.005126953125, + 0.0082244873046875, -0.014251708984375, -0.0226593017578125, 0.0125885009765625, + 0.00907135009765625, -0.0177001953125, -0.004169464111328125, 0.0115814208984375, + 0.03314208984375, 0.00899505615234375, -0.007732391357421875, -0.018524169921875, + 0.01270294189453125, -0.02392578125, -0.00048828125, 0.01285552978515625, + -0.0010547637939453125, -0.01434326171875, -0.0065460205078125, 0.028656005859375, + -0.0280609130859375, 0.044952392578125, 0.01282501220703125, -0.015869140625, + 0.037567138671875, 0.035888671875, -0.010101318359375, 0.005039215087890625, + -0.0104827880859375, -0.0165557861328125, 0.04498291015625, 0.00897979736328125, + -0.035736083984375, 0.01306915283203125, 0.0035076141357421875, 0.0105438232421875, + -0.003261566162109375, 0.0025577545166015625, 0.017303466796875, -0.0038127899169921875, + -0.037109375, -0.0035228729248046875, 0.007526397705078125, 0.0038318634033203125, + -0.0146636962890625, -0.0101776123046875, -0.0042877197265625, 0.007518768310546875, + -0.0084228515625, -0.00872802734375, 0.0066986083984375, -0.0128936767578125, + 0.006603240966796875, 0.0191497802734375, -0.023773193359375, 0.0197601318359375, + -0.0038089752197265625, -0.007457733154296875, -0.005306243896484375, 0.02728271484375, + -0.0050811767578125, 0.02349853515625, -0.0230712890625, 0.0022754669189453125, + -0.050201416015625, 0.0304718017578125, -0.0147552490234375, -0.003185272216796875, + -0.005340576171875, -0.0003628730773925781, -0.01476287841796875, -0.004825592041015625, + 0.008056640625, 0.027557373046875, 0.009552001953125, 0.02191162109375, + -0.0031986236572265625, -0.01248931884765625, 0.0207366943359375, -0.0188446044921875, + -0.020477294921875, -0.0215911865234375, 0.001613616943359375, 0.005832672119140625, + -0.028228759765625, 0.035552978515625, -0.014404296875, 0.0235443115234375, + -0.0091705322265625, 0.0245819091796875, 0.003635406494140625, -0.01947021484375, + 0.0138702392578125, 0.0194244384765625, 0.0048980712890625, -0.002742767333984375, + 0.0020618438720703125, -0.008148193359375, -0.004222869873046875, 0.0213470458984375, + 0.052734375, -0.007106781005859375, 0.0292816162109375, 0.005985260009765625, + 0.037200927734375, -0.04559326171875, 0.028839111328125, -0.0008401870727539062, + 0.0030727386474609375, 0.00531005859375, -0.034759521484375, 0.0102386474609375, + 0.0271148681640625, 0.002056121826171875, -0.0026645660400390625, 0.004688262939453125, + 0.006137847900390625, -0.02386474609375, 0.0096282958984375, -0.018707275390625, + 0.0081329345703125, -0.04217529296875, 0.0001760721206665039, 0.0010251998901367188, + 0.06353759765625, -0.0183868408203125, -0.003917694091796875, 0.0104522705078125, + 0.0163421630859375, 0.0021190643310546875, -0.01381683349609375, -0.0191802978515625, + -0.01007843017578125, -0.00958251953125, -0.0250701904296875, 0.003566741943359375, + 0.00440216064453125, -0.0158233642578125, 0.00847625732421875, 0.0133819580078125, + -0.00693511962890625, -0.0222015380859375, -0.00997161865234375, -0.028961181640625, + -0.01361846923828125, -0.004001617431640625, 0.00823211669921875, -0.03448486328125, + -0.007122039794921875, -0.039459228515625, -0.013641357421875, 0.01383209228515625, + 0.03717041015625, 0.0167694091796875, 0.02978515625, -0.007083892822265625, -0.0086669921875, + -0.0070953369140625, -0.0199127197265625, -0.005390167236328125, 0.0013866424560546875, + -0.040924072265625, -0.002880096435546875, -0.02789306640625, -0.023956298828125, + 0.0231781005859375, 0.024749755859375, -0.005641937255859375, 0.0170745849609375, + 0.0028076171875, -0.001758575439453125, -0.00821685791015625, 0.01739501953125, + -0.0045928955078125, 0.006977081298828125, 0.0026454925537109375, 0.0194549560546875, + -0.01080322265625, 0.00959014892578125, -0.031890869140625, 0.00881195068359375, + -0.0164337158203125, -0.0126800537109375, 0.01052093505859375, -0.0087432861328125, + -0.01149749755859375, -0.0230255126953125, -0.0161895751953125, -0.0176849365234375, + -0.0216827392578125, -0.035369873046875, -0.01221466064453125, -0.00850677490234375, + -0.01271820068359375, -0.0285797119140625, 0.0010309219360351562, 1.329183578491211e-5, + 0.0032215118408203125, 0.007152557373046875, -0.02191162109375, 0.01166534423828125, + 0.0034332275390625, 0.003414154052734375, -0.0157928466796875, -0.00726318359375, + 0.009796142578125, 0.0035858154296875, 0.007007598876953125, -0.00911712646484375, + -0.034210205078125, 0.0269622802734375, -0.026336669921875, 0.01451873779296875, + 0.00566864013671875, -0.01251983642578125, 0.05511474609375, 0.022613525390625, + 0.0198211669921875, 0.006031036376953125, -0.0010728836059570312, -0.0208282470703125, + -0.0021457672119140625, -0.0081939697265625, -0.019500732421875, 0.0086517333984375, + -0.02496337890625, -0.0460205078125, -0.00893402099609375, 0.027435302734375, + -0.051422119140625, -0.0209503173828125, -0.00891876220703125, -0.035400390625, + 0.0017366409301757812, 0.01300811767578125, -0.0094451904296875, -0.003383636474609375, + -0.0233612060546875, -0.017181396484375, -0.0173797607421875, -0.0386962890625, + -0.0252685546875, -0.033355712890625, 0.006732940673828125, 0.0102386474609375, + 0.0133209228515625, 0.0355224609375, 0.046295166015625, -0.0034580230712890625, + 0.029327392578125, 0.00038743019104003906, 0.0105438232421875, 0.0171661376953125, + -0.01404571533203125, -0.010040283203125, 0.02850341796875, -0.0114898681640625, + -0.021820068359375, -0.022308349609375, -0.027069091796875, -0.0013093948364257812, + 0.051544189453125, 0.0253448486328125, 0.016998291015625, -0.0238494873046875, + 0.052520751953125, -0.027862548828125, 0.002376556396484375, 0.0085906982421875, + -0.0003974437713623047, -4.2378902435302734e-5, 0.01444244384765625, -0.02593994140625, + 0.0028839111328125, -0.04473876953125, -0.004169464111328125, -0.03253173828125, 0.044921875, + 0.0679931640625, 0.00933837890625, -0.01210784912109375, 0.005046844482421875, + -0.018310546875, 0.0394287109375, -0.00395965576171875, -0.01123046875, -0.061553955078125, + -0.000713348388671875, 0.00658416748046875, -0.02783203125, 0.0025997161865234375, + -0.019256591796875, -0.0097808837890625, 0.018829345703125, 0.007537841796875, + 0.004848480224609375, -0.02801513671875, -0.03790283203125, -0.002109527587890625, + -0.0234222412109375, -0.0224609375, 0.0130462646484375, 0.0428466796875, -0.0042572021484375, + -0.0301055908203125, -0.0092010498046875, 0.0012464523315429688, 0.00865936279296875, + 0.004150390625, -0.025848388671875, -0.01270294189453125, -0.016510009765625, + -0.0078887939453125, 0.005645751953125, 0.0298004150390625, -0.0294036865234375, + -0.01326751708984375, 0.0228271484375, -0.0249176025390625, 0.02593994140625, + 0.020965576171875, -0.03778076171875, 0.01407623291015625, -0.04962158203125, + -0.0294036865234375, -0.0202178955078125, 0.035186767578125, 0.00727081298828125, + 0.0254364013671875, 0.0306243896484375, -0.0170135498046875, 0.01401519775390625, + -0.0164794921875, -0.01360321044921875, 0.00907135009765625, -0.0286865234375, + 0.0242462158203125, -0.025390625, -0.0031185150146484375, 0.01136016845703125, + 0.002559661865234375, -0.02496337890625, 0.006603240966796875, 0.0049591064453125, + 0.022674560546875, -0.021148681640625, -0.00632476806640625, -0.0570068359375, + -0.020111083984375, 0.0229949951171875, -0.0196380615234375, -0.01953125, -0.017913818359375, + -0.03509521484375, 0.0175628662109375, 0.00763702392578125, -0.0190887451171875, + -0.0025920867919921875, -0.0006475448608398438, 0.02264404296875, 0.0012636184692382812, + -0.0089569091796875, 0.0018873214721679688, 0.0312042236328125, -0.0117340087890625, + -0.0038433074951171875, 0.0036106109619140625, 0.0177001953125, -0.013671875, + 0.042510986328125, 0.0022792816162109375, 0.007568359375, -0.0194244384765625, + -0.021697998046875, 0.00800323486328125, -0.036468505859375, -0.00010639429092407227, + -0.054290771484375, 0.01105499267578125, -0.00528717041015625, 0.01324462890625, + -0.00824737548828125, 0.036346435546875, 0.01300811767578125, -0.0169219970703125, + 0.0209503173828125, -0.029388427734375, 0.033416748046875, -0.01068878173828125, + 0.0251007080078125, 0.0015821456909179688, 0.00043964385986328125, 0.008270263671875, + -0.004032135009765625, 0.01285552978515625, 0.042022705078125, -0.0273590087890625, + -0.01175689697265625, -0.0089874267578125, -0.02581787109375, 0.0166168212890625, + 0.00292205810546875, 0.04913330078125, 0.0028438568115234375, -0.022918701171875, + -0.0175628662109375, 0.0126190185546875, 0.018035888671875, 0.0215911865234375, + 0.003719329833984375, 0.036346435546875, -1.4424324035644531e-5, -0.0021038055419921875, + -0.01320648193359375, -0.007389068603515625, 0.050018310546875, -0.019256591796875, + 0.0029087066650390625, 0.0045623779296875, 0.0399169921875, 0.004032135009765625, + -0.0094451904296875, 0.003452301025390625, -0.005100250244140625, -0.0236663818359375, + 0.0132293701171875, 0.0298614501953125, -0.00524139404296875, 0.0025348663330078125, + 0.036041259765625, 0.0116119384765625, -0.0015392303466796875, 0.0280914306640625, + 0.0017299652099609375, 0.007518768310546875, -0.0124053955078125, -0.0059814453125, + 0.01119232177734375, 0.028289794921875, 0.01158905029296875, 0.019195556640625, + 0.0132293701171875, -0.04180908203125, 0.015411376953125, -0.037200927734375, + 0.035552978515625, 0.01209259033203125, 0.0299835205078125, -0.00780487060546875, + -0.005596160888671875, -0.02288818359375, -0.0073089599609375, -0.034515380859375, + -0.0005817413330078125, -0.0027103424072265625, 0.0146026611328125, -0.0095672607421875, + -0.02398681640625, 0.004253387451171875, 0.005397796630859375, -0.0193328857421875, + 0.01715087890625, 0.00418853759765625, 0.0009374618530273438, 0.0204925537109375, + 0.0149383544921875, -0.01348114013671875, 0.047698974609375, 0.0178070068359375, + 0.0043182373046875, 0.0175018310546875, 0.00506591796875, -0.005084991455078125, + 0.018951416015625, -0.04205322265625, -0.0025348663330078125, 0.02740478515625, + 0.012542724609375, 0.0173492431640625, 0.01329803466796875, 0.01216888427734375, + -0.0208892822265625, -0.0216522216796875, -0.00519561767578125, 0.00141143798828125, + 0.0019359588623046875, 0.003444671630859375, 0.0192718505859375, 0.01052093505859375, + -0.0237884521484375, 0.0096435546875, -0.0191497802734375, 0.043212890625, 0.040985107421875, + -0.0084381103515625, -0.03759765625, -0.002292633056640625, -0.0293121337890625, + -0.040252685546875, -0.0261383056640625, -0.008270263671875, 0.040435791015625, + 0.0011072158813476562, -0.044830322265625, -0.0102081298828125, -0.0161285400390625, + 0.002155303955078125, 0.0155487060546875, 0.02471923828125, 0.008544921875, + -0.0270843505859375, 0.003887176513671875, -0.0287322998046875 + ] + }, + { + "tag": "culture", + "description": "an event celebrating a specific nationality, ethnicity, heritage, or identity, often featuring traditional customs, language, holiday celebrations, or discussions on cultural heritage", + "embedding": [ + 0.0126800537109375, 0.01374053955078125, 0.0071868896484375, 0.015899658203125, + -0.0250701904296875, -0.0382080078125, -0.0006136894226074219, 0.022613525390625, + -0.0218505859375, 0.01116180419921875, -0.0004448890686035156, 0.022430419921875, + -0.021697998046875, -0.004192352294921875, 0.01605224609375, 0.048248291015625, + -0.060821533203125, 0.02691650390625, 0.0034694671630859375, -0.005954742431640625, + 0.08221435546875, 0.0190887451171875, -0.04205322265625, 0.059112548828125, + -0.00632476806640625, 0.046600341796875, -0.0546875, 0.048858642578125, 0.00983428955078125, + 0.01181793212890625, 0.036163330078125, -0.0281219482421875, 0.033050537109375, + -0.027679443359375, 0.01273345947265625, 0.0162353515625, 0.007659912109375, + -0.0291595458984375, -0.0092926025390625, 0.00811004638671875, -0.044769287109375, + -0.049530029296875, -0.003795623779296875, 0.07623291015625, 0.006702423095703125, + -0.02203369140625, -0.004215240478515625, -0.040740966796875, -0.022918701171875, + 0.043060302734375, -0.0281219482421875, -0.047882080078125, -0.0019779205322265625, + 0.01605224609375, -0.004558563232421875, -0.046142578125, 0.01541900634765625, + 0.024444580078125, -0.04681396484375, -0.0171051025390625, 0.005046844482421875, + -0.0235748291015625, 0.00726318359375, -0.0144195556640625, 0.029632568359375, + 0.030303955078125, 0.006710052490234375, 0.0102081298828125, 0.0168609619140625, + 0.02392578125, 0.05718994140625, 0.0306396484375, -0.0384521484375, -0.031982421875, + 0.034027099609375, -0.01081085205078125, -0.034881591796875, 0.039642333984375, + -0.0193939208984375, 0.03125, 0.0479736328125, -0.0019512176513671875, -0.050048828125, + 0.0275421142578125, 0.0288848876953125, -0.0300140380859375, -0.006824493408203125, + 0.019378662109375, -0.00897979736328125, 0.061065673828125, 0.03399658203125, + -0.026519775390625, -0.00675201416015625, 0.008056640625, 0.092529296875, -0.0125885009765625, + -0.0213470458984375, -0.01959228515625, 0.026519775390625, 0.057037353515625, + 0.0153961181640625, -0.0321044921875, -0.01666259765625, -0.01885986328125, + 0.0233612060546875, 0.006526947021484375, 0.0251312255859375, -0.01454925537109375, + -0.0153961181640625, 0.0117950439453125, -0.07958984375, -0.007518768310546875, + -0.006072998046875, 0.03814697265625, -0.0198211669921875, 0.0255279541015625, + 0.048065185546875, -0.06744384765625, 0.056671142578125, 0.03863525390625, -0.01898193359375, + 0.01001739501953125, 0.00917816162109375, -0.01122283935546875, -0.004917144775390625, + -0.00011527538299560547, -0.006526947021484375, 0.03076171875, -0.00797271728515625, + -0.0596923828125, 0.01456451416015625, 0.00885772705078125, -0.010711669921875, + -0.04083251953125, -0.016021728515625, -0.005706787109375, -0.0208587646484375, + 0.0242919921875, -0.064453125, 0.01479339599609375, 0.0208892822265625, 0.0206298828125, + 0.0372314453125, 0.03399658203125, 0.038726806640625, -0.0037860870361328125, + -0.01629638671875, 0.01256561279296875, -0.0172882080078125, 0.0309295654296875, + 0.005535125732421875, 0.04632568359375, 0.0211639404296875, 0.054779052734375, + -0.0484619140625, -0.035919189453125, 0.0245361328125, -0.037872314453125, -0.035400390625, + -0.0333251953125, 0.0211181640625, -0.010009765625, -0.042572021484375, 0.0004260540008544922, + -0.034210205078125, -0.0369873046875, -0.022735595703125, -0.018585205078125, + -0.0145263671875, -0.0203094482421875, -0.025421142578125, -0.022674560546875, + -0.03387451171875, 0.08880615234375, -0.00994873046875, -0.019073486328125, 0.031524658203125, + 0.0384521484375, -0.01070404052734375, 0.01375579833984375, 0.008544921875, + 0.0300445556640625, -0.06048583984375, -0.036102294921875, 0.005039215087890625, + 0.021270751953125, 0.0167388916015625, 0.0085906982421875, 0.00492095947265625, + 0.003002166748046875, 0.004436492919921875, 0.0399169921875, 0.050201416015625, + 0.004650115966796875, 0.017486572265625, -0.034759521484375, -0.0017404556274414062, + -0.0105133056640625, -0.0149383544921875, 0.024078369140625, -0.059234619140625, + -0.042022705078125, -0.007781982421875, -0.0311279296875, 0.059661865234375, 0.03363037109375, + -0.017669677734375, 0.0279998779296875, 0.01233673095703125, -0.01403045654296875, + -0.0164031982421875, -0.01129150390625, 0.0408935546875, 0.019744873046875, + 0.0262603759765625, 0.031890869140625, 0.0411376953125, -0.00461578369140625, + -0.0224456787109375, 0.0347900390625, 0.0283050537109375, 0.020355224609375, 0.09124755859375, + -0.01480865478515625, 0.00879669189453125, 0.006511688232421875, -0.048309326171875, + 0.004680633544921875, -0.040863037109375, -0.01537322998046875, -0.015380859375, + 0.014312744140625, 0.0105743408203125, -0.00943756103515625, 0.007251739501953125, + 0.024688720703125, -0.047149658203125, -0.034423828125, -0.0148773193359375, + -0.032257080078125, -0.0229644775390625, 0.0308685302734375, 0.02862548828125, + -0.00888824462890625, -0.01380157470703125, 0.0270233154296875, 0.015106201171875, + 0.019805908203125, -0.01458740234375, 0.00788116455078125, -0.00897216796875, + 0.021881103515625, -0.05462646484375, 0.02056884765625, -0.006069183349609375, + -0.0075836181640625, 0.021209716796875, -0.035430908203125, -0.0213470458984375, + -0.0182647705078125, 0.01094818115234375, -0.016510009765625, -0.028045654296875, + 0.004230499267578125, -0.017822265625, -0.01055908203125, -0.0023632049560546875, + 0.043853759765625, 0.0251007080078125, -0.0216217041015625, 0.01180267333984375, + -0.04791259765625, -0.00608062744140625, -0.0200347900390625, 0.0088348388671875, + 0.004833221435546875, 0.014984130859375, 0.04449462890625, 0.0494384765625, + 4.112720489501953e-6, -0.03326416015625, -0.036376953125, 0.04669189453125, + -0.0188446044921875, 0.00943756103515625, 0.0574951171875, -0.01422882080078125, + -0.0379638671875, -0.0108642578125, -0.03302001953125, -0.03228759765625, -0.08514404296875, + -0.03265380859375, 0.022186279296875, 0.016998291015625, 0.0131683349609375, + 0.0164642333984375, 0.04156494140625, 0.0043182373046875, -0.060089111328125, + -0.007904052734375, -0.0631103515625, -0.0033397674560546875, -0.0162353515625, + -0.016571044921875, 0.0411376953125, -0.0784912109375, -0.005550384521484375, + 0.061187744140625, 0.006916046142578125, -0.03167724609375, -0.057952880859375, + -0.045166015625, 0.0158538818359375, -0.00930023193359375, -0.0188446044921875, + -0.02337646484375, 0.054931640625, 0.03509521484375, -0.0289306640625, -0.003963470458984375, + -0.0065155029296875, 0.0233154296875, 0.0284271240234375, 0.03192138671875, -0.033935546875, + -0.0008378028869628906, -0.00261688232421875, -0.0006532669067382812, -0.0003407001495361328, + -0.034576416015625, -0.01399993896484375, -0.0274200439453125, 0.08489990234375, + 0.032562255859375, 0.005889892578125, 0.055328369140625, -0.027252197265625, + 0.023284912109375, 0.0012464523315429688, -0.0229034423828125, 0.002574920654296875, + -0.031463623046875, -0.0261077880859375, 0.043609619140625, 0.03338623046875, + -0.0025177001953125, -0.00047659873962402344, -0.0309295654296875, -0.02117919921875, + -0.0192108154296875, -0.0174407958984375, -0.04803466796875, 0.015838623046875, + -0.01593017578125, -0.045318603515625, 0.01800537109375, 0.02484130859375, -0.036102294921875, + 0.0114898681640625, -0.0059051513671875, -0.007457733154296875, 0.034423828125, + -0.011962890625, -0.050933837890625, -0.016387939453125, -0.0609130859375, + -0.01529693603515625, 0.0487060546875, -0.047149658203125, -0.02984619140625, + -0.028717041015625, -0.0162811279296875, -0.0012464523315429688, -0.040283203125, + 0.0699462890625, -0.025634765625, 0.019439697265625, -0.0015459060668945312, + -0.03582763671875, -0.039825439453125, -0.040924072265625, 0.002925872802734375, + -0.033355712890625, -0.006805419921875, 0.041961669921875, -0.0047760009765625, + -0.0194244384765625, -0.00018167495727539062, 0.0003421306610107422, 0.04620361328125, + -0.01406097412109375, -0.00714874267578125, 0.042816162109375, 0.01806640625, + 0.004329681396484375, -0.037445068359375, 0.01031494140625, 0.050445556640625, + 0.023712158203125, 0.00412750244140625, -0.01317596435546875, 0.00014150142669677734, + -0.044586181640625, 0.018829345703125, 0.011505126953125, -0.052093505859375, + 0.03802490234375, -0.01031494140625, -0.01091766357421875, -0.024383544921875, + -0.00787353515625, 0.045318603515625, 0.0141754150390625, -0.006038665771484375, + 0.003292083740234375, -0.04510498046875, -0.045318603515625, 0.034698486328125, + -0.002964019775390625, 0.06280517578125, -0.0124053955078125, -0.024017333984375, + -0.017608642578125, 0.02093505859375, 0.04754638671875, 0.01059722900390625, + -0.00200653076171875, -0.0104522705078125, -0.044403076171875, -0.0665283203125, + -0.0487060546875, 0.0340576171875, 0.035400390625, -0.0207672119140625, -0.00998687744140625, + -0.01824951171875, 0.02862548828125, 0.048614501953125, -0.01203155517578125, + -0.053253173828125, 0.04931640625, 0.059417724609375, 0.0249786376953125, 0.0246124267578125, + 0.0169219970703125, 0.00421142578125, 0.01503753662109375, 0.01849365234375, + -0.040435791015625, -0.0103759765625, -0.01080322265625, 0.00380706787109375, + -0.0002282857894897461, 0.00405120849609375, -0.0187835693359375, -0.02825927734375, + 0.050689697265625, -0.0196075439453125, -0.036865234375, 0.0709228515625, 0.04241943359375, + 0.033050537109375, 0.0526123046875, 0.0218505859375, -0.0302886962890625, -0.02874755859375, + -0.0173492431640625, 0.021514892578125, -0.02496337890625, 0.0028400421142578125, + 0.0516357421875, 0.004638671875, 0.04425048828125, -0.0380859375, 0.00040841102600097656, + 0.07318115234375, -0.0264739990234375, 0.003658294677734375, -0.0299072265625, + 0.0117034912109375, 0.0183563232421875, -0.005313873291015625, -0.01393890380859375, + 0.001613616943359375, -0.0050048828125, 0.037841796875, -0.006221771240234375, + -0.020660400390625, 0.021453857421875, -0.041961669921875, 0.01568603515625, -0.0274658203125, + -0.0122222900390625, -0.0213775634765625, 0.01276397705078125, -0.01461029052734375, + 0.0108489990234375, 0.011962890625, -0.006439208984375, -0.05517578125, -0.0242767333984375, + -0.0298309326171875, 0.0177764892578125, 0.02392578125, 0.05694580078125, -0.0626220703125, + -0.004199981689453125, 0.0012445449829101562, 0.022369384765625, -0.0195770263671875, + -0.043182373046875, 0.0014667510986328125, 0.004589080810546875, 0.0311126708984375, + 0.005725860595703125, -0.0290374755859375, 0.006298065185546875, -0.006107330322265625, + 0.0228424072265625, 0.01244354248046875, -0.020050048828125, 0.012420654296875, + -0.04425048828125, 0.00984954833984375, -0.01849365234375, 0.00432586669921875, + -0.034088134765625, -0.00785064697265625, -0.038482666015625, -0.01148223876953125, + 0.012451171875, -0.0199432373046875, -0.000347137451171875, 0.01035308837890625, + 0.034515380859375, -0.015228271484375, 0.0279693603515625, 0.01123046875, + 0.005344390869140625, 8.547306060791016e-5, -0.0146636962890625, 0.025482177734375, + -0.00994873046875, -0.00994873046875, 0.0235443115234375, -0.0309295654296875, + 0.0034084320068359375, -0.0267333984375, 0.0004506111145019531, -0.0008792877197265625, + -0.05633544921875, 0.0010929107666015625, -0.0380859375, 0.01361083984375, -0.02313232421875, + 0.01306915283203125, 0.0049591064453125, -0.0256500244140625, 0.00891876220703125, + -0.01129913330078125, -0.0260162353515625, 0.0005826950073242188, 0.007160186767578125, + -0.042236328125, -0.007633209228515625, 0.0256500244140625, 0.06378173828125, + 0.0204315185546875, 0.009002685546875, -0.02008056640625, 0.01132965087890625, + 0.006412506103515625, -0.00785064697265625, -0.0231781005859375, -0.011383056640625, + -0.0026569366455078125, -0.01531982421875, 0.00860595703125, -0.06414794921875, + 0.004772186279296875, 0.016937255859375, -0.04937744140625, -0.01552581787109375, + 0.000751495361328125, -0.01374053955078125, 0.038055419921875, -0.0153961181640625, + -0.00844573974609375, -0.00620269775390625, -0.0418701171875, -0.00853729248046875, + 0.01678466796875, 0.012939453125, 0.050140380859375, 0.01371002197265625, 0.037933349609375, + -0.0170440673828125, 0.005077362060546875, -0.00305938720703125, 0.01467132568359375, + 0.0129852294921875, -0.041656494140625, 0.006389617919921875, 0.035888671875, + -0.01207733154296875, -0.0161590576171875, 0.001800537109375, -0.05029296875, + 0.01263427734375, 0.013153076171875, 0.0198822021484375, 0.0169525146484375, -0.0194091796875, + 0.00243377685546875, 0.0157623291015625, -0.0159912109375, -0.00695037841796875, + -0.0174407958984375, 0.008697509765625, -2.8789043426513672e-5, -0.00948333740234375, + 0.039947509765625, 0.02239990234375, -0.0008444786071777344, 0.015228271484375, + -0.031524658203125, 0.0126495361328125, -0.004962921142578125, 0.0177154541015625, + 0.021484375, 0.0258941650390625, 0.003765106201171875, -0.0145416259765625, -0.02154541015625, + -0.0075225830078125, -0.0146484375, -0.02734375, -0.017486572265625, -0.020263671875, + 0.01995849609375, 0.018707275390625, 0.0165863037109375, -0.00868988037109375, + 0.044158935546875, -0.01837158203125, -0.013031005859375, -0.0050811767578125, + 0.034393310546875, 0.0222625732421875, 0.00811004638671875, 0.0169219970703125, + 0.017547607421875, -0.0131683349609375, 0.0283355712890625, -0.0070648193359375, + 0.0014553070068359375, 0.00931549072265625, 0.0067291259765625, -0.0006108283996582031, + -0.0258941650390625, 0.00720977783203125, 0.005619049072265625, -0.00505828857421875, + 0.00620269775390625, 0.05670166015625, 0.0180206298828125, -0.0224609375, -0.0185089111328125, + -0.00864410400390625, -0.01267242431640625, -0.0186309814453125, 0.0244598388671875, + 0.00330352783203125, -0.0114898681640625, -0.0183868408203125, 0.01474761962890625, + 7.706880569458008e-5, 0.0013885498046875, -0.0184783935546875, -0.023284912109375, + -0.0008244514465332031, -0.01361083984375, 0.01110076904296875, -0.023468017578125, + -0.02093505859375, 0.0560302734375, 0.006420135498046875, 0.0010519027709960938, + -0.01433563232421875, 0.0040283203125, -0.0255279541015625, -0.02618408203125, + 0.0209197998046875, 0.02471923828125, -0.00634765625, 0.00960540771484375, + -0.0231170654296875, -0.0272216796875, -0.07177734375, -0.017486572265625, 0.0151214599609375, + -0.03509521484375, -0.042510986328125, 0.0040130615234375, 0.0163421630859375, + 0.0189361572265625, 0.0017061233520507812, 0.014984130859375, -0.04400634765625, + -0.013153076171875, -0.013031005859375, 0.0060272216796875, 0.027587890625, + 0.0033206939697265625, -0.036895751953125, 0.00876617431640625, 0.03155517578125, + -0.014068603515625, 0.0296783447265625, -0.0024566650390625, -0.0027675628662109375, + -0.032989501953125, -0.00020134449005126953, 0.00908660888671875, 0.05194091796875, + 0.051361083984375, 0.026763916015625, -0.01812744140625, -0.004119873046875, 0.00286865234375, + -0.006679534912109375, 0.03594970703125, -0.0374755859375, 0.01348876953125, + 0.0281829833984375, -0.00556182861328125, 0.0035419464111328125, -0.0208740234375, + -0.0153961181640625, 0.034027099609375, 0.00814056396484375, 0.01479339599609375, + -0.00019049644470214844, -0.01163482666015625, -0.031585693359375, 0.004673004150390625, + -0.01947021484375, -0.005336761474609375, 0.023101806640625, 0.00623321533203125, + 0.0079193115234375, -0.01776123046875, 0.03619384765625, -0.0227203369140625, + -0.0160064697265625, -0.047821044921875, -0.038665771484375, 0.0023593902587890625, + -0.0228118896484375, 0.028167724609375, 0.01271820068359375, 0.05072021484375, 0.035888671875, + -0.00832366943359375, 0.035064697265625, 0.0034427642822265625, -0.0224609375, + -0.0018024444580078125, 0.0252227783203125, 0.02825927734375, -0.0132293701171875, + -0.02392578125, -0.00537109375, -0.01099395751953125, -0.0148773193359375, + -0.005878448486328125, -0.017486572265625, 0.0015420913696289062, 0.01611328125, + 0.0198974609375, -0.026092529296875, 0.004657745361328125, 0.006195068359375, + 0.006221771240234375, -0.00875091552734375, -0.003215789794921875, -0.03533935546875, + -0.0241851806640625, -0.056427001953125, 0.0023097991943359375, 0.008148193359375, + -0.0094757080078125, -0.015106201171875, -0.004791259765625, -0.032562255859375, + 0.00018525123596191406, 0.0027065277099609375, 0.0197906494140625, 0.0260467529296875, + -0.0095367431640625, 0.0014276504516601562, -0.0203399658203125, 0.006618499755859375, + -0.0168914794921875, 0.028411865234375, -0.042022705078125, 0.0166473388671875, + 0.0235595703125, -0.025360107421875, -0.02252197265625, 0.016937255859375, -0.0321044921875, + 0.0220947265625, 0.028167724609375, -0.046356201171875, 0.0321044921875, -0.01296234130859375, + 0.006252288818359375, 0.00925445556640625, 0.0225982666015625, 0.0026226043701171875, + 0.0465087890625, -0.028839111328125, -0.005382537841796875, 0.0244293212890625, + -0.00969696044921875, -0.02392578125, -0.005619049072265625, -0.024566650390625, + -0.006244659423828125, -0.005207061767578125, 0.00788116455078125, -0.0022296905517578125, + 0.0262298583984375, 0.01421356201171875, -0.01800537109375, 0.007633209228515625, + -0.00734710693359375, -0.035308837890625, -0.00705718994140625, 0.033294677734375, + 0.018585205078125, -0.0015993118286132812, -0.0106964111328125, -0.0019741058349609375, + 0.054840087890625, -0.015777587890625, -0.01117706298828125, 0.0037975311279296875, + 0.0236358642578125, -0.0338134765625, 0.033172607421875, -0.00417327880859375, + -0.054840087890625, 0.006103515625, -0.0086822509765625, -0.00998687744140625, + -0.005809783935546875, -0.01448822021484375, 0.004730224609375, -0.047393798828125, + 0.0178070068359375, -0.00666046142578125, 0.018798828125, -0.0015344619750976562, + -0.0029697418212890625, 0.033660888671875, -0.0260162353515625, -0.02288818359375, + 0.0093536376953125, -0.01263427734375, 0.010650634765625, -0.00933074951171875, + 0.010955810546875, 0.016326904296875, 0.0141448974609375, 0.00266265869140625, + 0.032073974609375, -0.0428466796875, 0.05841064453125, 0.005420684814453125, + 0.0216827392578125, 0.0018749237060546875, 0.025421142578125, 0.0020580291748046875, + 0.01451873779296875, 0.01128387451171875, -0.01708984375, 0.02978515625, -0.0052642822265625, + 0.0033245086669921875, -0.03839111328125, -0.04864501953125, 0.01025390625, + -0.0189056396484375, -0.028167724609375, 0.021270751953125, -0.0025386810302734375, + -0.0325927734375, -0.005435943603515625, 0.0019245147705078125, -0.012298583984375, + -0.01284027099609375, -0.006656646728515625, 0.0322265625, 0.0240936279296875, + 0.0262603759765625, -0.02813720703125, -0.0290985107421875, -0.0185394287109375, + -0.005382537841796875, -0.004009246826171875, 0.026397705078125, 0.005893707275390625, + 0.00634002685546875, -0.0215301513671875, 0.01202392578125, 0.01392364501953125, + -0.010711669921875, 0.035736083984375, 0.03167724609375, 0.005565643310546875, + -0.0006499290466308594, 0.004528045654296875, 0.0007014274597167969, -0.041656494140625, + 0.002193450927734375, -0.0037021636962890625, -0.0166015625, 0.0112762451171875, + 0.0128173828125, -0.00951385498046875, -0.0211181640625, 0.004962921142578125, + -0.0408935546875, -0.004161834716796875, 0.007335662841796875, 0.0021209716796875, + 0.001674652099609375, -0.00323486328125, 0.01422882080078125, -0.01403045654296875, + -0.0308380126953125, -0.01425933837890625, -0.007476806640625, -0.01611328125, + -0.03948974609375, 0.0014858245849609375, -0.00298309326171875, -0.01904296875, + 0.02056884765625, -0.005352020263671875, -0.01219940185546875, 0.0131988525390625, + -0.004703521728515625, 0.0227508544921875, -0.001056671142578125, -0.026641845703125, + 0.01250457763671875, 0.060760498046875, -0.00937652587890625, 0.022735595703125, + 0.0433349609375, 0.03643798828125, 0.0228729248046875, 0.01313018798828125, + -0.0205841064453125, -0.0194244384765625, 0.0160980224609375, -0.01108551025390625, + -0.0082550048828125, -0.017669677734375, 0.0248565673828125, 0.0169219970703125, + -0.01282501220703125, 0.04669189453125, -0.0035114288330078125, -0.01995849609375, + 0.0238494873046875, -0.007053375244140625, 0.02581787109375, 0.045562744140625, + 0.0271453857421875, -0.0095672607421875, -0.01015472412109375, 0.00203704833984375, + 0.006328582763671875, 0.02593994140625, -0.004573822021484375, -0.027801513671875, + -0.00384521484375, -0.03521728515625, -0.01239013671875, 0.011322021484375, + -0.007015228271484375, 0.0297088623046875, -0.01184844970703125, 0.01065826416015625, + -0.003292083740234375, -0.00034618377685546875, -0.043853759765625, 0.004535675048828125, + -0.0030727386474609375, 0.00897216796875, 0.0239715576171875, 0.061920166015625, + -0.0258026123046875, 0.032989501953125, -0.047607421875, 0.0374755859375, 0.037567138671875, + 0.01139068603515625, -0.01032257080078125, -0.0012416839599609375, -0.01275634765625, + -0.015411376953125, 0.03924560546875, -0.0163421630859375, -0.0201568603515625, + 0.019866943359375, 0.004062652587890625, 0.045562744140625, -0.004550933837890625, + -0.0192108154296875, -0.016632080078125, -0.0131072998046875, -0.01470947265625, + -0.01611328125, 0.021728515625, 0.00141143798828125, 0.02301025390625, -0.025054931640625, + 0.00174713134765625, 0.0277557373046875, -0.026275634765625, 0.02398681640625, + 0.007648468017578125, -0.00806427001953125, -0.035064697265625, 0.00975799560546875, + -0.021392822265625, -0.01187896728515625, -0.0281219482421875, 0.0037860870361328125, + 0.027801513671875, 0.01983642578125, 0.022369384765625, 0.001659393310546875, + 0.044342041015625, 0.00408172607421875, -0.007083892822265625, -0.017913818359375, + 0.0087432861328125, 0.0201263427734375, -0.006450653076171875, -0.016632080078125, + -0.037139892578125, 0.00691986083984375, -0.015625, -0.0184173583984375, 0.01094818115234375, + -0.003955841064453125, -0.006534576416015625, 0.0255279541015625, -0.01116180419921875, + -0.02484130859375, 0.0210723876953125, 0.00016939640045166016, 0.009063720703125, + 0.0081939697265625, 0.0116424560546875, -0.0005502700805664062, -0.0009889602661132812, + -0.0159454345703125, -0.01568603515625, 0.005767822265625, -0.0215301513671875, + 0.01145172119140625, -0.015655517578125, -0.00911712646484375, 0.00431060791015625, + 0.035186767578125, -0.021148681640625, -0.0230560302734375, 0.006103515625, + 0.0164642333984375, -0.06884765625, -0.0089874267578125, 0.006500244140625, + -0.0030975341796875, 0.0205841064453125, -0.005092620849609375, 0.002593994140625, + -0.023590087890625, -0.01103973388671875, 0.033538818359375, 0.0262298583984375, + -0.006313323974609375, -0.041229248046875, 0.00019443035125732422, 0.0019474029541015625, + 0.0121002197265625, -0.0296783447265625, 0.00894927978515625, 0.0232391357421875, + -0.0300445556640625, -0.007778167724609375, 0.02734375, 0.0557861328125, -0.0243072509765625, + 0.004673004150390625, 0.00018930435180664062, -0.00030803680419921875, -0.01250457763671875, + -0.007282257080078125, 0.001186370849609375, -0.01052093505859375, 0.010040283203125, + -0.0021839141845703125, -0.0204315185546875, -0.00675201416015625, -0.0297088623046875, + 0.041748046875, -0.0211029052734375, -0.0067291259765625, 0.0181884765625, -0.008544921875, + -0.00797271728515625, -0.00681304931640625, 0.0067291259765625, 0.008056640625, + 0.0274810791015625, -0.0179443359375, -0.03338623046875, 0.0227813720703125, + -0.01433563232421875, -0.01311492919921875, 0.00484466552734375, 0.0286865234375, + -0.0118560791015625, -0.0131988525390625, -0.049560546875, 0.0283050537109375, + -0.003932952880859375, -0.0308685302734375, 0.005069732666015625, 0.059661865234375, + -0.01171875, -0.0226593017578125, 0.05682373046875, 0.002567291259765625, -0.02655029296875, + 0.01617431640625, 0.025970458984375, 0.0076904296875, 0.00928497314453125, + -0.001262664794921875, 0.0280914306640625, 0.017547607421875, 0.0216217041015625, + -0.025604248046875, 0.03594970703125, -0.03021240234375, -0.0029544830322265625, + 0.021087646484375, -0.004657745361328125, 0.033111572265625, 0.01013946533203125, + 0.008026123046875, -0.006038665771484375, -0.004245758056640625, -0.051300048828125, + 0.002819061279296875, 0.01473236083984375, 0.0014486312866210938, 0.04864501953125, + -0.0019140243530273438, -0.01197052001953125, -0.017791748046875, 0.033843994140625, + 0.0009794235229492188, -0.0187835693359375, 0.0194244384765625, -0.0281219482421875, + 0.0156402587890625, -0.0146026611328125, 0.0066680908203125, -0.0189666748046875, + 0.0102386474609375, 0.00952911376953125, 0.0171356201171875, 0.0173187255859375, + 0.018157958984375, -0.0126495361328125, -0.00830841064453125, 0.0289306640625, + -0.031768798828125, 0.0205230712890625, 0.005462646484375, 0.00684356689453125, + -0.0055084228515625, -0.049072265625, -0.0216217041015625, -0.0290985107421875, + 0.01352691650390625, -0.0137176513671875, 0.0142364501953125, 0.01186370849609375, + -0.028594970703125, -0.033416748046875, 0.0176544189453125, -0.02056884765625, + -0.0172119140625, -0.023590087890625, 0.00392913818359375, 0.031707763671875, + -0.0037097930908203125, -0.0284576416015625, 0.0252685546875, 0.0214080810546875, + -0.01081085205078125, -0.00554656982421875, 0.0238800048828125, 0.014129638671875, + 0.0002849102020263672, -0.004039764404296875, 0.008209228515625, 0.047607421875, + -0.0197906494140625, 0.0169219970703125, -0.04656982421875, -0.05853271484375, + -0.0209197998046875, -0.0350341796875, 0.0236053466796875, 0.03302001953125, + 0.01216888427734375, 0.03082275390625, -0.0010433197021484375, 0.0162353515625, + 0.01013946533203125, -0.0080108642578125, 0.0145263671875, -0.0439453125, -0.031494140625, + -0.0019407272338867188, -0.0109405517578125, -0.017669677734375, 0.000202178955078125, + 0.055206298828125, -0.007450103759765625, -0.062103271484375, -0.0293426513671875, + -0.0006508827209472656, -0.0285491943359375, -0.00555419921875, 0.0159912109375, + 0.0123138427734375, -0.0042724609375, -0.0308837890625, -0.035736083984375, + 0.01500701904296875, -0.01136016845703125, -0.07354736328125, -0.04931640625, + 0.005352020263671875, 0.015777587890625, -0.00853729248046875, 0.0152130126953125, + 0.0157012939453125, 0.01617431640625, 0.0184173583984375, 0.0139007568359375, + -0.0117034912109375, 0.0419921875, -0.0205078125, 0.0134429931640625, 0.0098419189453125, + 7.152557373046875e-6, -0.0020008087158203125, -0.0037097930908203125, -0.02496337890625, + 0.006267547607421875, -0.01012420654296875, 0.0061187744140625, 0.025848388671875, + -0.0185699462890625, 0.011444091796875, -0.0276031494140625, -0.0027484893798828125, + 0.0211181640625, 0.0040740966796875, 0.0260009765625, -0.0148162841796875, + -0.0213165283203125, -0.047637939453125, 0.0009469985961914062, -0.046722412109375, + -0.039093017578125, 0.00829315185546875, 0.03948974609375, 0.005321502685546875, + -0.01116180419921875, -0.00865936279296875, -0.035552978515625, 0.0182342529296875, + -0.002399444580078125, 0.01222991943359375, 0.0164337158203125, -0.00090789794921875, + 0.0169219970703125, 0.01212310791015625, -0.004230499267578125, 0.00559234619140625, + 0.027099609375, 0.0310821533203125, 0.0009965896606445312, -0.06903076171875, + 0.038909912109375, 0.01290130615234375, 0.0007724761962890625, -0.0179443359375, + -0.00830841064453125, 0.0036792755126953125, 0.004589080810546875, -0.01554107666015625, + -0.0159454345703125, -0.03125, 0.00846099853515625, 0.0401611328125, 0.035491943359375, + -0.041290283203125, -0.018310546875, -0.0302581787109375, 0.0121612548828125, + -0.037139892578125, 0.0169525146484375, -0.005245208740234375, 0.03326416015625, + -0.0205230712890625, -0.0159759521484375, 0.0291595458984375, -0.01392364501953125, + 0.0250701904296875, -0.007747650146484375, -0.04217529296875, -0.0264739990234375, + 0.007648468017578125, -0.014373779296875, 0.0019140243530273438, 0.0110931396484375, + -0.0005879402160644531, -0.007144927978515625, 0.0256805419921875, 0.00127410888671875, + -0.038421630859375, 0.01445770263671875, -0.00890350341796875, 0.022491455078125, + 0.01727294921875, -0.003231048583984375, -0.00022459030151367188, -0.0031070709228515625, + 0.0246734619140625, -0.004817962646484375, -0.004547119140625, 0.01364898681640625, + 0.013458251953125, 0.011138916015625, -0.07110595703125, 0.002193450927734375, + -0.0004246234893798828, -0.014190673828125, -0.01165771484375, -0.023895263671875, + -0.0174407958984375, 0.0033359527587890625, 0.054595947265625, -0.019500732421875, + 0.0301666259765625, -0.006389617919921875, 0.0084381103515625, -0.0117645263671875, + 0.0352783203125, -0.0283050537109375, 0.01983642578125, 0.00684356689453125, + -0.0208282470703125, -0.020965576171875, 0.0078125, -0.0162811279296875, 0.032684326171875, + -0.0127410888671875, -0.0113372802734375, 0.005580902099609375, 0.0005898475646972656, + 0.004817962646484375, -0.01361083984375, 0.0186920166015625, -0.0239105224609375, + 0.0276641845703125, -0.005237579345703125, -0.029296875, -0.012969970703125, + -0.0171356201171875, -0.006927490234375, 0.01546478271484375, -0.034942626953125, + 0.006526947021484375, 0.050384521484375, -0.01812744140625, 0.03155517578125, + 0.002017974853515625, 0.0218505859375, -0.0170440673828125, 0.00017392635345458984, + -0.0013713836669921875, 0.0227203369140625, -0.05450439453125, -0.0052947998046875, + 0.0017538070678710938, -0.0017175674438476562, 0.03076171875, -0.0033416748046875, + 0.01197052001953125, -0.0093536376953125, -0.006885528564453125, 0.0216827392578125, + -0.026092529296875, -0.0006165504455566406, 0.027923583984375, -0.0228118896484375, + 0.02801513671875, 0.017333984375, 0.0014200210571289062, 0.00516510009765625, + -0.003231048583984375, 0.019805908203125, -0.0125732421875, -0.006069183349609375, + 0.0003705024719238281, 0.0155792236328125, -0.0102996826171875, -0.0032711029052734375, + -0.01898193359375, -0.01364898681640625, 0.004428863525390625, -0.0281219482421875, + -0.0297088623046875, 0.00010597705841064453, 8.112192153930664e-5, 0.038421630859375, + 0.022003173828125, 0.005283355712890625, -0.0171356201171875, 0.00016129016876220703, + 0.027587890625, 0.005157470703125, 0.007678985595703125, -0.00864410400390625, + 0.004993438720703125, 0.009918212890625, 0.0178070068359375, 0.0283355712890625, + -0.0268096923828125, 0.02850341796875, -0.001708984375, 0.021759033203125, + -0.0025424957275390625, 0.00908660888671875, 0.022674560546875, -0.018157958984375, + -0.0271453857421875, -0.03662109375, 0.017486572265625, -0.00444793701171875, + -0.0083465576171875, -0.0088348388671875, -0.035919189453125, -0.00788116455078125, + 0.02301025390625, -0.0024013519287109375, 0.00629425048828125, -0.005336761474609375, + -0.0034503936767578125, -0.005340576171875, -0.00733184814453125, 0.003086090087890625, + 0.007373809814453125, 0.048553466796875, 0.0109100341796875, 0.035675048828125, + -0.0003218650817871094, 0.006221771240234375, -0.00634002685546875, 0.0404052734375, + 0.00858306884765625, -0.01136016845703125, 0.01010894775390625, -0.006526947021484375, + -0.0234375, -0.023712158203125, 0.046539306640625, -0.0325927734375, 0.0233612060546875, + -0.01177978515625, 0.0237884521484375, 0.0036163330078125, -0.00666046142578125, + 0.0189971923828125, 0.0053558349609375, 0.036376953125, 0.00640106201171875, + 0.01192474365234375, 0.037872314453125, 0.05010986328125, -0.0328369140625, + -0.006988525390625, 0.03326416015625, -0.00885009765625, -0.0250091552734375, + -0.01812744140625, 0.00960540771484375, -0.0030231475830078125, 0.01373291015625, + -0.0257568359375, -0.007534027099609375, -0.035186767578125, -0.0290985107421875, + 0.00902557373046875, 0.010009765625, -0.01898193359375, -0.0186004638671875, + -0.0232391357421875, -0.0274810791015625 + ] + }, + { + "tag": "music", + "description": "a musical event including a cappella concerts, orchestra or symphony performances, band gigs, jam sessions, or open mics primarily focused on singing or playing instruments", + "embedding": [ + 0.01044464111328125, -0.01244354248046875, 0.0297698974609375, -0.0003514289855957031, + -0.0005908012390136719, 0.0023021697998046875, -0.0294036865234375, -0.026824951171875, + 0.002422332763671875, -0.0185394287109375, -0.0111846923828125, -0.0265350341796875, + -0.03570556640625, 0.059051513671875, 0.031097412109375, 0.046112060546875, -0.0511474609375, + 0.0005030632019042969, 0.0333251953125, -0.0160369873046875, 0.0513916015625, + 0.006092071533203125, -0.027496337890625, 0.061920166015625, -0.054779052734375, + -0.017974853515625, -0.08221435546875, 0.07598876953125, 0.024261474609375, + 0.01508331298828125, -0.01140594482421875, -0.036102294921875, 0.004123687744140625, + -0.039093017578125, -0.05450439453125, 0.04595947265625, 0.031402587890625, + -0.0139923095703125, -0.017333984375, -0.038848876953125, -0.0197296142578125, + -0.021331787109375, 0.0206146240234375, 0.0274505615234375, -0.014617919921875, + 0.0219879150390625, -0.04486083984375, -0.050048828125, -0.0021457672119140625, + 0.018310546875, -0.0229644775390625, -0.02838134765625, 0.042816162109375, 0.042877197265625, + 0.0513916015625, 0.006542205810546875, -0.00968170166015625, -0.0092010498046875, + -0.01097869873046875, 0.009796142578125, 0.01065826416015625, 0.00861358642578125, + 0.034149169921875, 0.03594970703125, -0.040130615234375, 0.036834716796875, 0.01666259765625, + 0.0419921875, 0.0037403106689453125, 0.0266571044921875, 0.032684326171875, 0.01788330078125, + -0.03619384765625, 0.018524169921875, -0.031524658203125, 0.01357269287109375, + 0.0078582763671875, 0.056427001953125, -0.00923919677734375, 0.0063934326171875, + 0.057159423828125, -0.054168701171875, -0.032958984375, -0.0074005126953125, + 0.00036525726318359375, 0.000980377197265625, -0.0753173828125, 0.01093292236328125, + -0.01256561279296875, 0.035614013671875, -0.00969696044921875, -0.0233154296875, + 0.039306640625, 0.033843994140625, 0.0229034423828125, 0.00449371337890625, + -0.014190673828125, -0.036834716796875, 0.03277587890625, 0.0704345703125, + 0.00228118896484375, -0.0511474609375, -0.0209808349609375, -0.043304443359375, + -0.007476806640625, -0.00360870361328125, -0.01401519775390625, 0.0098114013671875, + 0.004039764404296875, -0.041107177734375, -0.0305633544921875, -0.0198211669921875, + -0.0242919921875, 0.006282806396484375, -0.0206298828125, 0.0009250640869140625, + 0.09051513671875, -0.0516357421875, -0.0266571044921875, -0.007266998291015625, -0.0322265625, + 0.0338134765625, -0.0162200927734375, -0.026641845703125, 0.017669677734375, + 0.00119781494140625, -0.0182952880859375, 0.0179595947265625, -0.01036834716796875, + 0.01235198974609375, 0.037353515625, 0.003978729248046875, -0.0016202926635742188, + -0.07427978515625, -0.034942626953125, -0.02337646484375, -0.0289154052734375, + 0.018096923828125, -0.061279296875, -0.032073974609375, 0.0673828125, -0.0180816650390625, + 0.0022678375244140625, -0.01023101806640625, 0.03399658203125, -0.01390838623046875, + -0.009429931640625, 0.0269775390625, -0.04998779296875, 0.0032196044921875, -0.04595947265625, + 0.0270843505859375, -0.034881591796875, 0.052398681640625, 0.0217132568359375, + -0.045989990234375, -0.024932861328125, 0.0293426513671875, 0.034515380859375, + -0.02508544921875, 0.03533935546875, -0.0197296142578125, -0.0033054351806640625, + 0.01788330078125, -0.0244598388671875, -0.00881195068359375, -0.050018310546875, + 0.0293426513671875, -0.0029506683349609375, -0.006832122802734375, -0.0733642578125, + 0.003936767578125, -0.0467529296875, 0.040008544921875, 0.0209197998046875, -0.02996826171875, + 0.02777099609375, 0.0118255615234375, -0.052520751953125, 0.0307159423828125, + 0.043914794921875, 0.0283355712890625, -0.0225372314453125, -0.0257568359375, + -0.020111083984375, 0.0379638671875, 0.033905029296875, 0.031494140625, 0.01019287109375, + -0.00878143310546875, 0.01885986328125, 0.0144805908203125, 0.010955810546875, 0.053466796875, + 0.020263671875, -0.04022216796875, -0.0242156982421875, 0.0225372314453125, + 0.0051727294921875, 0.034271240234375, -0.03497314453125, -0.05816650390625, 0.025634765625, + -0.0261993408203125, -0.020172119140625, -0.005123138427734375, -0.01276397705078125, + 0.0242462158203125, 0.06787109375, 0.03924560546875, 0.033447265625, 0.009063720703125, + 0.004764556884765625, 0.0009398460388183594, -0.0142364501953125, -0.0233154296875, + 0.038970947265625, 0.081298828125, -0.0010576248168945312, -0.01959228515625, + 0.01427459716796875, 0.00995635986328125, 0.02996826171875, 0.050079345703125, + 0.05218505859375, 0.0244903564453125, -0.0163421630859375, -0.0194244384765625, + 0.007457733154296875, -0.0232391357421875, -0.0033206939697265625, -0.0250701904296875, + -0.06494140625, 0.043853759765625, -0.01134490966796875, 0.006103515625, -0.044219970703125, + -0.0173492431640625, 0.0150146484375, -0.01401519775390625, 0.020843505859375, + -0.0307769775390625, 0.05645751953125, 0.0258026123046875, 0.04425048828125, + 0.032928466796875, -0.0014944076538085938, -0.01433563232421875, -0.01617431640625, + 0.0399169921875, -0.0070037841796875, 0.039093017578125, -0.0718994140625, 0.026580810546875, + -0.0004093647003173828, -0.01369476318359375, 0.0132293701171875, 0.015106201171875, + -0.0034732818603515625, -0.03009033203125, -0.00350189208984375, 0.03369140625, + -0.05499267578125, 0.009246826171875, -0.0513916015625, -0.0222320556640625, + -0.022247314453125, -0.01541900634765625, 0.0198516845703125, 0.012451171875, + -0.01378631591796875, 0.0270233154296875, -0.033447265625, -0.0003535747528076172, + 0.0219268798828125, -0.0090179443359375, 0.0272979736328125, 0.0305938720703125, + 0.04046630859375, 0.0272674560546875, 0.0199737548828125, -0.0399169921875, + -0.0216217041015625, 0.02117919921875, 0.017242431640625, 0.02935791015625, 0.029083251953125, + -0.039031982421875, -0.04107666015625, 0.0177154541015625, -0.0171661376953125, + -0.022003173828125, -0.0003819465637207031, -0.007541656494140625, -0.02093505859375, + -0.00302886962890625, 0.0379638671875, 0.005340576171875, 0.01212310791015625, + -0.0260467529296875, 0.035797119140625, -0.0225677490234375, -0.04046630859375, + 0.027618408203125, -0.027862548828125, 0.061279296875, -0.076171875, 0.0271759033203125, + 0.0179290771484375, 0.0164947509765625, 0.0168914794921875, 0.0174102783203125, + -0.01290130615234375, 0.0556640625, -0.005474090576171875, -0.006267547607421875, + -0.0206756591796875, 0.0718994140625, 0.043243408203125, -0.052276611328125, + -0.01104736328125, 0.0131072998046875, -0.0303955078125, -0.001148223876953125, + 0.059051513671875, 0.0303192138671875, -0.00403594970703125, 0.031219482421875, + -0.06365966796875, -0.036041259765625, -0.017547607421875, -0.047210693359375, + -0.0015897750854492188, 0.047119140625, -0.0113525390625, 0.0266876220703125, + 0.034454345703125, -0.024200439453125, -0.041473388671875, -0.037933349609375, + -0.0052337646484375, 0.005214691162109375, -0.060577392578125, 0.04803466796875, + 0.0008378028869628906, 0.010986328125, -0.019775390625, 0.0123138427734375, + 0.0190277099609375, -0.01389312744140625, 0.0281829833984375, -0.052642822265625, + 0.00917816162109375, 0.0311737060546875, 0.007793426513671875, 0.0012054443359375, + 0.02001953125, 0.002407073974609375, -0.0181427001953125, 0.006237030029296875, + -0.0009489059448242188, -0.017822265625, 0.00839996337890625, -0.0213165283203125, + 0.0248870849609375, 0.07427978515625, -0.016021728515625, 0.014801025390625, + -0.01352691650390625, -0.0467529296875, 0.01198577880859375, -0.00753021240234375, + 0.0447998046875, -0.00322723388671875, -0.0282135009765625, 0.052886962890625, + -0.005977630615234375, 0.015655517578125, -0.00044155120849609375, 0.00922393798828125, + -0.01898193359375, 0.01336669921875, -0.002475738525390625, -0.021575927734375, + -0.0168304443359375, 0.05804443359375, -0.0256805419921875, 0.00618743896484375, + -0.0197296142578125, 0.046630859375, 0.00125885009765625, -0.0225677490234375, + -0.0199737548828125, 0.0005512237548828125, -0.003841400146484375, 0.00835418701171875, + -0.01523590087890625, 0.03369140625, -0.00498199462890625, 0.0012922286987304688, + 0.03076171875, -0.0102081298828125, -0.0149993896484375, 0.00711822509765625, + -0.02203369140625, -0.01959228515625, 0.01023101806640625, -0.035919189453125, + -0.055328369140625, -0.033203125, 0.006519317626953125, -0.0167083740234375, + 0.0196685791015625, 0.050323486328125, 0.0264434814453125, -0.007259368896484375, + -0.0156097412109375, -0.030609130859375, 0.0195770263671875, 0.054931640625, + 0.0129241943359375, -0.0304718017578125, -0.0430908203125, 0.0309295654296875, + -0.004032135009765625, 0.03582763671875, 0.0166778564453125, -0.0170135498046875, + -0.017364501953125, -0.010528564453125, -0.06787109375, 0.0168304443359375, + -0.0284576416015625, -0.005702972412109375, -0.01256561279296875, -0.038543701171875, + -0.0035686492919921875, 0.04095458984375, 0.021240234375, 0.011993408203125, + 0.001102447509765625, 0.034454345703125, 0.00749969482421875, 0.031463623046875, + -0.053070068359375, -0.003688812255859375, -0.0277862548828125, -0.001453399658203125, + 0.0005631446838378906, -0.0137481689453125, -0.042999267578125, -0.0357666015625, + -0.0216827392578125, -0.02569580078125, 0.040557861328125, -0.0246734619140625, + 0.00804901123046875, 0.02252197265625, -0.0175933837890625, -0.047637939453125, + -0.0277099609375, -0.021514892578125, 0.0250091552734375, -0.0251617431640625, + 0.01526641845703125, 0.033233642578125, 0.003932952880859375, 0.001194000244140625, + -0.0003552436828613281, -0.020416259765625, -0.010528564453125, -0.0167388916015625, + 0.03973388671875, 0.0216064453125, -0.0229644775390625, -0.005199432373046875, 0.075927734375, + 0.004169464111328125, 0.0182342529296875, 0.01885986328125, 0.0198974609375, + -0.01357269287109375, -0.01528167724609375, 0.0226898193359375, 0.017791748046875, + -0.05902099609375, 0.009857177734375, -0.03765869140625, 0.0229644775390625, + -0.019317626953125, -0.0308837890625, 0.01306915283203125, 0.00618743896484375, + -0.0122222900390625, 0.0281524658203125, -0.0193328857421875, -0.06500244140625, + 0.01473236083984375, -0.04443359375, -0.01026153564453125, -0.0277862548828125, + -0.038848876953125, -0.0204010009765625, 0.0006651878356933594, 0.021575927734375, + 0.0272216796875, -0.007617950439453125, 0.01336669921875, 0.0511474609375, 0.0076904296875, + -0.0148162841796875, -0.0251922607421875, 0.01294708251953125, -0.017974853515625, + 0.004512786865234375, -0.018280029296875, -0.033843994140625, 0.0223846435546875, + 0.00850677490234375, 0.018829345703125, -0.034027099609375, -0.01154327392578125, + -0.044342041015625, -0.02587890625, 0.00505828857421875, -0.01105499267578125, + -0.006038665771484375, -0.0006227493286132812, -0.00801849365234375, -0.045684814453125, + 0.01268768310546875, 0.0164794921875, -0.01140594482421875, -0.0085296630859375, + -0.010040283203125, 0.0015001296997070312, -0.00579071044921875, 0.01593017578125, + 0.022979736328125, 0.01763916015625, -0.033477783203125, -6.461143493652344e-5, + -0.0152587890625, -0.0085296630859375, 0.01837158203125, 0.003231048583984375, + -0.00730133056640625, -0.0167999267578125, -0.01471710205078125, 0.0224609375, + -0.0244598388671875, -0.01509857177734375, 0.0033931732177734375, 0.01204681396484375, + 0.0264129638671875, 0.0038204193115234375, 0.0212860107421875, -0.0312042236328125, + -0.0108489990234375, 0.0223388671875, 0.01255035400390625, -0.01397705078125, + 0.014434814453125, -0.0155029296875, -0.01157379150390625, -0.01316070556640625, + -0.01219940185546875, 0.015655517578125, 0.0037746429443359375, 0.042266845703125, + -0.00919342041015625, 0.0123138427734375, 0.004367828369140625, -0.017791748046875, + -0.0263824462890625, -0.0180816650390625, 0.0126800537109375, 0.0006952285766601562, + -0.01190948486328125, 0.0101470947265625, -0.0086822509765625, -0.0300750732421875, + -0.0280609130859375, -0.01346588134765625, -0.041259765625, -0.00044155120849609375, + 0.0026264190673828125, 0.029022216796875, 0.020538330078125, -0.00450897216796875, + -0.0134429931640625, -0.01788330078125, 0.005817413330078125, -0.0186004638671875, + 0.028472900390625, 0.007740020751953125, -0.004947662353515625, 0.0143585205078125, + -0.020721435546875, -0.031829833984375, 0.00104522705078125, 0.036773681640625, + 0.014984130859375, 0.02191162109375, -0.0078125, 0.016845703125, -0.01309967041015625, + -0.0199127197265625, 0.00930023193359375, 0.00864410400390625, 0.009674072265625, + 0.0024166107177734375, -0.01535797119140625, -0.022186279296875, -0.0183868408203125, + 0.004055023193359375, -0.028717041015625, 0.01496124267578125, -0.00843048095703125, + -0.00225830078125, -0.0163421630859375, 0.01485443115234375, 0.0017948150634765625, + 0.057830810546875, 0.03948974609375, 0.031158447265625, -0.0025272369384765625, + -0.022430419921875, 0.0197296142578125, 0.0175933837890625, 0.00890350341796875, + 0.0140380859375, 0.0261688232421875, -0.0333251953125, -0.0201568603515625, + -0.027496337890625, -0.0206146240234375, -0.004199981689453125, 0.0013275146484375, + -0.016754150390625, 0.05743408203125, -0.020904541015625, 0.022064208984375, + -0.0258026123046875, 0.023956298828125, 0.0222015380859375, 0.0218505859375, + -0.04559326171875, -0.001071929931640625, -0.0176239013671875, -0.0025997161865234375, + 0.01309967041015625, -0.0013189315795898438, -0.0309295654296875, 0.01047515869140625, + 0.018463134765625, -0.01294708251953125, -0.0301666259765625, 0.01220703125, 0.0311279296875, + -0.0038394927978515625, 0.011322021484375, 0.027008056640625, -0.01503753662109375, + -0.004840850830078125, 0.04803466796875, -0.003574371337890625, 0.0261688232421875, + -0.015960693359375, 0.0299072265625, 0.00955963134765625, 0.0114593505859375, + -0.00463104248046875, 0.01666259765625, 0.0499267578125, -0.01528167724609375, + 0.0020465850830078125, -0.006282806396484375, 0.0006771087646484375, -0.004886627197265625, + -0.015899658203125, -0.0022945404052734375, -0.004573822021484375, -0.037689208984375, + 0.007427215576171875, -0.0263214111328125, 0.025970458984375, -0.018157958984375, + 0.01971435546875, -0.0665283203125, -0.0167236328125, 0.01558685302734375, 0.0200042724609375, + 0.038238525390625, 0.0089569091796875, -0.0034236907958984375, 0.00989532470703125, + -0.0264892578125, -0.0016965866088867188, -0.0191650390625, 0.0256500244140625, + 0.030364990234375, 0.046600341796875, -0.026702880859375, -0.0177459716796875, + 0.0557861328125, 0.052398681640625, -0.0007352828979492188, 0.00942230224609375, + -0.01087188720703125, -0.00901031494140625, -0.01531982421875, -0.048248291015625, + -0.01354217529296875, 0.0252838134765625, -0.033660888671875, 0.0127410888671875, + -0.059814453125, 0.01428985595703125, -0.006763458251953125, -0.0013446807861328125, + 0.030487060546875, -0.043121337890625, -0.005268096923828125, 0.0018548965454101562, + 0.00821685791015625, 0.019989013671875, 0.0052947998046875, -0.055023193359375, + -0.037689208984375, -0.003993988037109375, 0.023895263671875, 0.001129150390625, + -0.02490234375, -0.035430908203125, 0.00930023193359375, 0.00640106201171875, + -0.0156707763671875, -0.052764892578125, -0.0166778564453125, 0.0704345703125, + -0.01059722900390625, -0.00908660888671875, 0.01800537109375, -0.016021728515625, + -0.01690673828125, 0.01218414306640625, -0.0109100341796875, -0.02264404296875, + 0.0196685791015625, -0.029266357421875, 0.0084686279296875, 0.0010766983032226562, + -0.000579833984375, 0.0015249252319335938, -0.0263671875, -0.00775146484375, + 0.0043487548828125, 0.049896240234375, -0.00254058837890625, 0.01467132568359375, + -0.007762908935546875, 0.0217132568359375, 0.0262908935546875, 0.0052947998046875, + 0.00969696044921875, 0.0005483627319335938, -0.007740020751953125, 0.035919189453125, + -0.00441741943359375, -0.012939453125, -0.021240234375, -0.00749969482421875, + 0.0088348388671875, -0.0169219970703125, 0.02154541015625, -0.0009908676147460938, + -0.00926971435546875, 0.0006537437438964844, 0.05499267578125, -0.011444091796875, + -0.004772186279296875, -0.004283905029296875, 0.017425537109375, -0.02947998046875, + -0.0020313262939453125, 0.002117156982421875, 0.006671905517578125, -0.0499267578125, + 0.007442474365234375, -0.00899505615234375, 0.01047515869140625, -0.003971099853515625, + -0.043487548828125, -0.01788330078125, -0.02142333984375, 0.01690673828125, -0.00897216796875, + 0.010589599609375, -0.0012941360473632812, 0.0012798309326171875, -0.02130126953125, + 0.007228851318359375, 0.0157318115234375, 0.01491546630859375, -0.01108551025390625, + -0.0191802978515625, 0.007724761962890625, -0.01360321044921875, -0.022796630859375, + 0.0010547637939453125, 0.0004813671112060547, 0.0029354095458984375, -0.0160064697265625, + 0.012847900390625, -0.042388916015625, 0.006771087646484375, 0.030609130859375, + 0.032073974609375, -0.00518035888671875, -0.00937652587890625, -0.0106201171875, + 0.0181732177734375, 0.00018835067749023438, 0.052764892578125, 0.046234130859375, + 0.005039215087890625, 0.04656982421875, -0.01678466796875, 0.023956298828125, + -0.0018978118896484375, 0.058807373046875, -0.0245361328125, 0.00919342041015625, + -0.00743865966796875, 0.02374267578125, 0.01232147216796875, -0.01971435546875, + -0.021759033203125, -0.0088043212890625, -0.01119232177734375, 0.026641845703125, + 0.02899169921875, 0.00933837890625, 0.014801025390625, 0.00568389892578125, + 0.002605438232421875, -0.02288818359375, -0.004474639892578125, 0.032318115234375, + 0.0088043212890625, -0.01206207275390625, 0.028228759765625, -0.0175628662109375, + 0.006443023681640625, 0.00873565673828125, -0.0018644332885742188, 0.0223541259765625, + 0.01042938232421875, -0.01128387451171875, 0.0196990966796875, -0.0142974853515625, + 0.0056915283203125, -0.0435791015625, 0.034698486328125, 0.0228729248046875, + 0.006683349609375, 0.028961181640625, -0.0248565673828125, -0.031768798828125, + -0.0204925537109375, 0.0163726806640625, 0.0091094970703125, -0.0193328857421875, + 0.04345703125, -0.00609588623046875, 0.01214599609375, 0.04669189453125, 0.0254364013671875, + -0.0030193328857421875, 0.0087738037109375, 0.00830078125, -0.018951416015625, + 0.0182342529296875, -0.0240020751953125, -0.018646240234375, 0.002288818359375, + 0.022552490234375, -0.040618896484375, 0.02783203125, 0.01377105712890625, + 2.6464462280273438e-5, 0.0254364013671875, -0.043609619140625, -0.0035533905029296875, + -0.0015087127685546875, 0.0034027099609375, 0.0509033203125, 0.01369476318359375, + -0.0171661376953125, -0.001331329345703125, 0.0139923095703125, -0.02069091796875, + -0.0430908203125, -0.02532958984375, 0.0261383056640625, -0.0280609130859375, + 0.045562744140625, -0.04742431640625, -0.02850341796875, -0.0516357421875, + -0.0166168212890625, 0.0052947998046875, -0.01041412353515625, 0.024505615234375, + -0.016693115234375, 0.005481719970703125, -0.034454345703125, -0.040863037109375, + -0.053802490234375, 0.006786346435546875, 0.05572509765625, 0.03399658203125, + -0.0328369140625, 0.012237548828125, -0.005889892578125, 0.007053375244140625, + 0.0275115966796875, 0.01346588134765625, 0.01010894775390625, -0.001308441162109375, + 0.01471710205078125, 0.02191162109375, -0.0167236328125, 0.0173797607421875, + -0.00012922286987304688, -0.008819580078125, 0.001224517822265625, -0.03558349609375, + 0.00986480712890625, -0.004955291748046875, 0.00881195068359375, -0.0112152099609375, + -0.007068634033203125, 0.054351806640625, -0.035797119140625, 0.0308380126953125, + -0.02215576171875, -0.0204315185546875, -0.005889892578125, -0.003246307373046875, + -0.0283355712890625, 0.00774383544921875, -0.024200439453125, 0.016143798828125, + 0.0091552734375, -0.020721435546875, -0.0078125, -0.0144805908203125, 0.00849151611328125, + -0.017303466796875, -0.0017642974853515625, 0.025726318359375, 0.0012645721435546875, + -0.01026153564453125, 0.03875732421875, -0.028717041015625, -0.00585174560546875, + -0.0213623046875, -0.0089263916015625, -0.0242156982421875, -0.0111541748046875, + 0.0156707763671875, 0.006927490234375, -0.0038471221923828125, 0.012969970703125, + 0.0028743743896484375, -0.026885986328125, -0.0155487060546875, -0.0096588134765625, + -0.0003376007080078125, 0.0192108154296875, -0.006862640380859375, 0.00376129150390625, + 0.029205322265625, -0.026702880859375, -0.03570556640625, 0.0048065185546875, + 0.031829833984375, 0.0086212158203125, -0.0204010009765625, -0.01082611083984375, + -0.0154266357421875, -0.0233306884765625, 0.0011444091796875, 0.0192413330078125, + 0.039642333984375, -0.016998291015625, 0.01959228515625, 0.008544921875, + 0.0027294158935546875, -0.0268096923828125, -0.0276947021484375, -0.0101470947265625, + 0.041961669921875, 0.0004298686981201172, 0.0169525146484375, 0.0018768310546875, + 0.014923095703125, -0.0075531005859375, 0.03900146484375, 0.0153045654296875, + -0.019561767578125, 0.00959014892578125, 0.0008578300476074219, 0.0017671585083007812, + -0.01212310791015625, -0.003261566162109375, -0.01209259033203125, -0.036346435546875, + 0.0517578125, 0.0174407958984375, 0.024932861328125, 0.004047393798828125, + -0.0114898681640625, -0.0594482421875, 0.0194091796875, 0.027587890625, -0.0037384033203125, + 0.01384735107421875, 0.036773681640625, 0.054901123046875, 0.0237579345703125, + -0.01218414306640625, 0.0096588134765625, -0.008697509765625, -0.00518035888671875, + -0.011932373046875, 0.01471710205078125, 0.032562255859375, -0.0231170654296875, + 0.00357818603515625, -0.036346435546875, 0.0007305145263671875, 0.024505615234375, + 0.0380859375, 0.026458740234375, 0.00827789306640625, 0.0195159912109375, 0.0283355712890625, + 0.0016889572143554688, 0.048858642578125, 0.01678466796875, -0.0058746337890625, + -0.00449371337890625, -0.02337646484375, -0.030364990234375, -0.031890869140625, + 0.01319122314453125, -0.04400634765625, -0.022613525390625, 0.0382080078125, + 0.024627685546875, -0.03607177734375, 0.01043701171875, -0.0144805908203125, + 0.01538848876953125, -0.008209228515625, -0.042724609375, 0.031951904296875, + 0.0022029876708984375, 0.0306854248046875, 0.01427459716796875, -0.0089263916015625, + -0.033935546875, -0.016632080078125, 0.020599365234375, 0.023773193359375, 0.050384521484375, + -0.01189422607421875, 0.0240020751953125, 0.002063751220703125, 0.039093017578125, + 0.01036834716796875, 0.00527191162109375, -0.0188751220703125, 0.0275726318359375, + -0.04962158203125, 0.00360870361328125, -0.0217742919921875, -0.040008544921875, + -0.009490966796875, 0.00324249267578125, 0.0015726089477539062, 0.0168609619140625, + 0.00768280029296875, 0.0163421630859375, -0.0010862350463867188, -0.0034332275390625, + -0.0132293701171875, -0.024139404296875, 0.012054443359375, 0.00147247314453125, + -0.028350830078125, 0.0099029541015625, -0.0255279541015625, -0.0196075439453125, + -0.0271759033203125, 0.03753662109375, 0.03662109375, -0.00836944580078125, + 0.0007519721984863281, -0.00879669189453125, -0.05364990234375, -0.039886474609375, + 0.01294708251953125, 0.051513671875, 0.0135650634765625, -0.01300811767578125, + -0.002010345458984375, -0.0257720947265625, -0.037017822265625, -0.0163421630859375, + 0.0450439453125, -0.0017232894897460938, 0.004364013671875, -0.00574493408203125, + 0.0233612060546875, -0.0229949951171875, 0.0293121337890625, 0.006946563720703125, + -0.036529541015625, 0.005054473876953125, -0.015625, -0.0178375244140625, 0.0182342529296875, + 0.004055023193359375, -0.0174407958984375, -0.005817413330078125, 0.01326751708984375, + -0.0249786376953125, -0.00846099853515625, 0.0174407958984375, 0.003810882568359375, + -0.019195556640625, 0.005687713623046875, 0.022125244140625, 0.04473876953125, + -0.003940582275390625, -0.021820068359375, 0.00963592529296875, 0.03460693359375, + 0.0034427642822265625, 0.0020618438720703125, 0.02294921875, -0.005252838134765625, + -0.022674560546875, -0.0007748603820800781, 0.026611328125, 0.0011444091796875, + -0.0145721435546875, -0.011871337890625, -0.0164794921875, -0.0220184326171875, + -0.0103607177734375, 0.0030498504638671875, -0.020721435546875, -0.0205535888671875, + 0.0145111083984375, 0.03497314453125, 0.0276641845703125, 0.014434814453125, + -0.07171630859375, 0.0296783447265625, 0.016571044921875, 0.0079345703125, 0.02337646484375, + 0.0211181640625, -0.01030731201171875, -0.0089111328125, 0.0177001953125, 0.0213623046875, + 0.0089874267578125, -0.0254364013671875, -0.00890350341796875, 0.004840850830078125, + -0.0244140625, -0.003276824951171875, -0.01490020751953125, 0.0472412109375, + -0.0009975433349609375, 0.048248291015625, -0.02410888671875, -0.00861358642578125, + 0.00511932373046875, 0.0316162109375, -0.0264434814453125, -0.0235748291015625, + 0.02850341796875, 0.0197906494140625, 0.01262664794921875, -0.0117645263671875, + -0.0265350341796875, -0.00994873046875, -0.005878448486328125, -0.0025920867919921875, + -0.045623779296875, 0.0016527175903320312, 0.0164337158203125, 0.0253753662109375, + 0.01522064208984375, 0.0037097930908203125, -0.034881591796875, -0.039581298828125, + -0.033416748046875, 0.01276397705078125, 0.027374267578125, 0.0013551712036132812, + -0.00102996826171875, 0.015777587890625, 0.017608642578125, 0.00931549072265625, + -0.0238037109375, 0.028839111328125, -0.0204925537109375, 0.004009246826171875, + -0.062103271484375, 0.0007772445678710938, -0.00295257568359375, -0.004802703857421875, + 0.0047149658203125, -0.0628662109375, 0.0202484130859375, -0.0196075439453125, + -0.0295867919921875, -0.0118255615234375, 0.012786865234375, -0.0007071495056152344, + 0.00502777099609375, -0.0062713623046875, 0.0294647216796875, 0.0224151611328125, + 0.003814697265625, 0.0225677490234375, 0.0249786376953125, 0.0217742919921875, + -0.0261688232421875, 0.01611328125, -0.0250244140625, -0.0109710693359375, -0.0379638671875, + -0.012725830078125, -0.036956787109375, 0.0171051025390625, 0.0204925537109375, + -0.036102294921875, -0.00543212890625, 0.0161590576171875, 0.00146484375, + -0.0016880035400390625, -0.028228759765625, -0.0006833076477050781, -0.0074310302734375, + -0.0034770965576171875, 0.0012884140014648438, -0.01806640625, -0.0032196044921875, + 0.042083740234375, -0.0112457275390625, 0.02032470703125, -0.017791748046875, 0.0328369140625, + 0.07794189453125, 0.01160430908203125, -0.01262664794921875, 0.0175018310546875, + -0.00870513916015625, 0.0127410888671875, 0.0078582763671875, -0.00273895263671875, + -0.031646728515625, 0.0192718505859375, -0.0007128715515136719, 0.04339599609375, + -0.01131439208984375, 0.0225982666015625, 0.0282745361328125, -0.02191162109375, + 0.032958984375, -0.05804443359375, -0.0167083740234375, -0.03424072265625, -0.033447265625, + 0.0028972625732421875, 0.0060882568359375, -0.0290679931640625, -0.01320648193359375, + -0.040374755859375, 0.0145721435546875, -0.0007853507995605469, 0.03717041015625, + 0.018218994140625, 0.0246124267578125, -0.033355712890625, 0.0086212158203125, + -0.027252197265625, 0.0112457275390625, 0.0151824951171875, 0.0101165771484375, + 0.00675201416015625, -0.0195159912109375, 0.0192718505859375, -0.031829833984375, + -0.00969696044921875, -0.006168365478515625, 0.0308990478515625, -0.035675048828125, + 0.021636962890625, -0.01824951171875, -0.02569580078125, -0.01451873779296875, + -0.0238189697265625, -0.01354217529296875, 0.006923675537109375, -0.01056671142578125, + 0.0185089111328125, -0.0035648345947265625, -0.017852783203125, -0.032135009765625, + 0.00942230224609375, 0.003513336181640625, 0.032562255859375, -0.0025348663330078125, + -0.0063629150390625, -0.0121002197265625, -0.01324462890625, 0.0214691162109375, + 0.0157623291015625, -0.0007381439208984375, 0.0250091552734375, 0.009857177734375, + -0.00341796875, -0.018402099609375, 0.0005855560302734375, -0.0214385986328125, + -0.00885009765625, -0.048583984375, -0.038726806640625, -0.016876220703125, + -0.0014801025390625, 0.014007568359375, -0.0004630088806152344, 0.0207366943359375, + 0.01361083984375, 0.0204925537109375, 0.006000518798828125, 0.032440185546875, + 0.0034942626953125, -0.00576019287109375, 0.03759765625, 0.0244293212890625, + -0.0024051666259765625, 0.0295867919921875, 0.0008974075317382812, 0.012359619140625, + -0.0123443603515625, 0.0080718994140625, 0.02569580078125, 0.01044464111328125, + 0.00797271728515625, -0.029998779296875, -0.0283355712890625, 0.042327880859375, + -0.0168609619140625, -0.008148193359375, 0.01666259765625, -0.00832366943359375, + 0.00534820556640625, 0.0148162841796875, -0.0172119140625, -0.0003426074981689453, + -0.003154754638671875, 0.005889892578125, -0.01413726806640625, 0.009063720703125, + -0.024993896484375, 0.02130126953125, 0.046661376953125, -0.027130126953125, + 0.0021533966064453125, 0.004791259765625, 0.0053253173828125, 0.04254150390625, + -0.006008148193359375, -0.00931549072265625, -0.037017822265625, -0.042510986328125, + -0.00899505615234375, 0.01174163818359375, 0.0110931396484375, -0.0308380126953125, + 0.0193634033203125, 0.014190673828125, -0.014495849609375, -0.0153656005859375, + 0.0030574798583984375, 0.001617431640625, -0.0258941650390625, 0.0231475830078125, + -0.02410888671875, 0.0202178955078125, -0.03607177734375, 0.049530029296875, 0.0089111328125, + -0.0309295654296875, -0.0196685791015625, -0.01497650146484375, -0.01491546630859375, + 0.0400390625, -0.0399169921875, -0.0209503173828125, 0.01142120361328125, + -0.01096343994140625, 0.040802001953125, 0.010528564453125, 0.003498077392578125, + -0.0203704833984375, 0.007633209228515625, -0.0146331787109375, -0.02947998046875, + 0.00978851318359375, 0.0160675048828125, -0.02935791015625, 0.0303955078125, 0.01617431640625, + 0.01390838623046875, -0.0054168701171875, -0.0004813671112060547, 0.01166534423828125, + -0.025726318359375, 0.0199432373046875, 0.0019083023071289062, 0.009857177734375, + -0.00321197509765625, 0.00013744831085205078, 0.035430908203125, -0.01294708251953125, + 0.0268096923828125, -0.00910186767578125, 0.017669677734375, 0.041229248046875, + 0.0016965866088867188, 0.021728515625, -0.0242919921875, 0.0162200927734375, + 0.003204345703125, -0.00815582275390625, 0.05389404296875, -0.015167236328125, + -0.044097900390625, 0.0005726814270019531, 0.023834228515625, 0.031036376953125, + 0.01290130615234375, 0.022186279296875, -0.0504150390625, 0.002445220947265625, + -0.0311279296875, 0.00711822509765625, 0.00797271728515625, -0.0112152099609375, + -0.00024259090423583984, -0.006420135498046875, -0.0006899833679199219, -0.0110626220703125, + 0.0201873779296875, -0.0224456787109375, 0.00254058837890625, 0.00731658935546875, + 0.01059722900390625, 0.0006394386291503906, -0.01523590087890625, 0.014129638671875, + -0.035858154296875, 0.005924224853515625, -0.01451873779296875, -0.007007598876953125, + 0.04364013671875, -0.019683837890625, 0.01490020751953125, 0.0272979736328125, + -0.00264739990234375, 0.006031036376953125, 0.012176513671875, 0.03717041015625, + 0.0010480880737304688, 0.01161956787109375, -0.00785064697265625, -0.004650115966796875, + -0.0283966064453125, 0.04638671875, -0.01300811767578125, 0.0008115768432617188, + 0.020050048828125, 0.00817108154296875, -0.044189453125, -0.00817108154296875, + 0.03656005859375, -0.00574493408203125, 0.032196044921875, 0.005802154541015625, + -0.0284576416015625, 0.007762908935546875, -0.035888671875, -0.006282806396484375, + 0.01258087158203125, 0.0241851806640625, -0.0157928466796875, -0.035247802734375, + 0.02996826171875, -0.0670166015625, -0.0263671875, -0.0075531005859375, + 0.00038123130798339844, 0.043701171875, -0.032684326171875, 0.00872039794921875, + -0.01465606689453125, -0.0038204193115234375, 0.027496337890625, 0.00534820556640625, + 0.00696563720703125, -0.0156707763671875, -0.01172637939453125, -0.0182342529296875, + -0.00803375244140625 + ] + }, + { + "tag": "gaming", + "description": "a recreational event centered around playing board games, video games, tabletop role-playing games (like Dungeons & Dragons), card games, or esports tournaments", + "embedding": [ + 0.0114288330078125, 0.0284576416015625, 0.053497314453125, 0.0209808349609375, + 0.00913238525390625, -0.005828857421875, -0.01543426513671875, 0.03179931640625, + 0.00800323486328125, 0.0328369140625, 0.0031261444091796875, -0.002315521240234375, + 0.00502777099609375, -0.0159912109375, 0.004405975341796875, 0.0278778076171875, + -0.041229248046875, -0.021820068359375, -0.01136016845703125, 0.04315185546875, + 0.03546142578125, 0.05108642578125, 0.03466796875, 0.012054443359375, -0.01233673095703125, + 0.051361083984375, 0.0161895751953125, 0.04534912109375, 0.02593994140625, + -0.0104522705078125, 0.0151824951171875, -0.0325927734375, 0.0003523826599121094, + -0.0379638671875, 0.007801055908203125, 0.00316619873046875, 0.0025634765625, + 0.01242828369140625, 0.0035152435302734375, 0.01043701171875, 0.0138397216796875, + -0.0552978515625, -0.00408935546875, 0.02923583984375, -0.047515869140625, + -0.001049041748046875, -0.051849365234375, -0.043975830078125, 0.048553466796875, + 0.025299072265625, -0.0556640625, -0.03619384765625, 0.027984619140625, 0.0450439453125, + 0.0237274169921875, -0.00691986083984375, 0.001163482666015625, 0.0032806396484375, + 0.022247314453125, -0.00543975830078125, 0.05181884765625, 0.026641845703125, 0.0543212890625, + 0.0244598388671875, -0.0097198486328125, 0.0032749176025390625, -0.0152130126953125, + -0.0016717910766601562, 0.04351806640625, 0.0401611328125, -0.000701904296875, + 0.005687713623046875, -0.0307769775390625, -0.0174407958984375, 0.07305908203125, + 0.017852783203125, -0.030181884765625, 0.0201873779296875, 0.0013685226440429688, + -0.0020294189453125, 0.031829833984375, 0.0460205078125, 0.01291656494140625, + 0.00907135009765625, -0.0224761962890625, -0.043304443359375, -0.031951904296875, + 0.009490966796875, -0.0038509368896484375, 0.04400634765625, 0.0108642578125, + -0.041534423828125, 0.00281524658203125, 0.0009140968322753906, 0.0257110595703125, + -0.027313232421875, -0.014434814453125, -0.060028076171875, 0.04534912109375, + 0.061981201171875, 0.01959228515625, -0.0570068359375, -0.04083251953125, -0.0198211669921875, + 0.01363372802734375, -0.019683837890625, -0.05462646484375, 0.052215576171875, + 0.0193023681640625, -0.0411376953125, -0.07177734375, 0.01068878173828125, -0.031280517578125, + 0.00896453857421875, -0.0265045166015625, 0.02056884765625, 0.06915283203125, + -0.0604248046875, 0.02081298828125, -0.0147552490234375, 0.00940704345703125, 0.06005859375, + 0.0014410018920898438, -0.02496337890625, -0.0047760009765625, 0.01158905029296875, + -0.01163482666015625, -0.052337646484375, 0.023895263671875, -0.031280517578125, + 0.01280975341796875, -0.022430419921875, 0.0338134765625, -0.048980712890625, + -0.0307769775390625, 0.0105438232421875, -0.0760498046875, -0.034423828125, + -0.022064208984375, -0.032562255859375, -0.035552978515625, -6.079673767089844e-5, + -0.0142822265625, 0.0202484130859375, 0.008514404296875, -0.01548004150390625, + 0.0124664306640625, 0.02099609375, -0.00893402099609375, 0.020416259765625, + -0.01505279541015625, -0.0297698974609375, -0.026397705078125, 0.03497314453125, + -0.0002372264862060547, -0.078369140625, -0.03460693359375, 0.0029430389404296875, + -0.025665283203125, -0.048492431640625, -0.0267181396484375, -0.0230255126953125, + 0.01355743408203125, -0.002941131591796875, 0.03021240234375, -0.0265350341796875, + -0.019775390625, 0.072265625, -0.03271484375, 0.04559326171875, 0.0216217041015625, + -0.01378631591796875, -0.068603515625, 0.08050537109375, -0.00850677490234375, + -0.002414703369140625, -0.004062652587890625, 0.02227783203125, -0.037139892578125, + -0.035919189453125, -0.0251617431640625, -0.046173095703125, -0.0758056640625, + 0.0021114349365234375, 0.00011539459228515625, 0.040924072265625, -0.00499725341796875, + -0.003124237060546875, 0.02886962890625, -0.00215911865234375, 0.0177001953125, + 0.06744384765625, 0.01947021484375, 0.0164642333984375, 0.06256103515625, -0.040557861328125, + 0.05169677734375, 0.036163330078125, 0.0011501312255859375, -0.03521728515625, + -0.01409912109375, -0.03912353515625, 0.0277252197265625, -0.01415252685546875, + -0.0014600753784179688, 0.0018739700317382812, 0.0004742145538330078, 0.0208587646484375, + 0.0474853515625, 0.0256805419921875, 0.023834228515625, -0.035430908203125, + 0.01479339599609375, -0.0027256011962890625, -0.00933074951171875, -0.0131072998046875, + 0.02130126953125, 0.050384521484375, 0.040374755859375, 0.0266876220703125, + -0.007747650146484375, 0.048004150390625, -0.0006546974182128906, 0.029510498046875, + 0.040802001953125, -0.00318145751953125, -0.0185699462890625, 0.0058441162109375, + 0.0146026611328125, -0.025054931640625, -0.05938720703125, 0.02728271484375, -0.026611328125, + -0.0284576416015625, 0.03759765625, 0.025482177734375, -0.0307769775390625, + -0.0013551712036132812, 0.001552581787109375, -0.0022373199462890625, 0.0253753662109375, + -0.00537109375, -0.00968170166015625, -0.04925537109375, -0.00240325927734375, + 0.00041747093200683594, 0.0182342529296875, -0.01309967041015625, -0.0284271240234375, + 0.00742340087890625, 0.03173828125, -0.01346588134765625, -0.0654296875, 0.0196685791015625, + 0.004528045654296875, -0.0168914794921875, -0.017425537109375, -0.01214599609375, + -0.0180816650390625, -0.024932861328125, 0.01611328125, 0.034454345703125, + -0.0167083740234375, -0.053497314453125, -0.01708984375, 0.01013946533203125, -0.030517578125, + -0.0264129638671875, -0.0227203369140625, -0.0352783203125, 0.0164947509765625, + 0.006290435791015625, -0.0673828125, -0.041534423828125, 0.0216064453125, -0.0148773193359375, + 0.059326171875, -0.00408172607421875, -0.002716064453125, -0.0142364501953125, + -0.0005645751953125, -0.0176239013671875, 0.0218963623046875, -0.017547607421875, + 0.0101165771484375, 0.03875732421875, 0.0296630859375, -0.01300048828125, -0.024078369140625, + -0.0074615478515625, -0.029327392578125, -0.013153076171875, -0.0196533203125, + -6.657838821411133e-5, 0.03631591796875, -0.042449951171875, 0.01483154296875, + 0.0164947509765625, 0.00959014892578125, -0.0281982421875, -0.031829833984375, + -0.0374755859375, -0.043243408203125, 0.0239105224609375, -0.034210205078125, + 0.0032291412353515625, -0.0171661376953125, 0.007541656494140625, 0.030181884765625, + 0.0276031494140625, 0.00270843505859375, 0.013031005859375, -0.006107330322265625, + 0.031494140625, -0.01163482666015625, -0.01465606689453125, -0.00493621826171875, + 0.06915283203125, 0.04443359375, -0.059234619140625, 0.0011997222900390625, + -0.0034732818603515625, 0.045928955078125, -0.021575927734375, 0.056427001953125, + 0.00716400146484375, 0.0176239013671875, 0.0176849365234375, -0.0292816162109375, + -0.01129150390625, 0.01168060302734375, 0.0257415771484375, -0.01030731201171875, + 0.057586669921875, 0.0178070068359375, -0.025146484375, 0.03759765625, 0.012939453125, + -0.00010347366333007812, 0.00646209716796875, -0.018829345703125, 0.028472900390625, + -0.01412200927734375, 0.0059661865234375, -0.046783447265625, 0.044342041015625, + -0.0108184814453125, 0.00739288330078125, -0.0006308555603027344, 0.00406646728515625, + -0.032806396484375, -0.0231781005859375, 0.04345703125, -0.0178070068359375, + 0.0019397735595703125, -0.05633544921875, 0.01351165771484375, 0.03765869140625, + 0.0199432373046875, 0.006866455078125, 0.0306243896484375, -0.013763427734375, + -0.0195465087890625, -0.0135040283203125, 0.0478515625, 0.021514892578125, -0.0848388671875, + 0.06695556640625, 0.00516510009765625, -0.057647705078125, -0.0290985107421875, 0.05712890625, + -0.030914306640625, 0.011932373046875, 0.024200439453125, 0.029510498046875, + 0.0083465576171875, 0.04632568359375, -0.016265869140625, 0.02447509765625, + -0.01134490966796875, -0.00713348388671875, 0.01238250732421875, -0.06536865234375, + -0.01068878173828125, 0.05389404296875, -0.01343536376953125, -0.0255126953125, + -0.060699462890625, -0.027191162109375, 0.01190185546875, -0.033447265625, -0.0198974609375, + 0.0061187744140625, -0.005542755126953125, -0.0004875659942626953, 0.030181884765625, + -0.0254058837890625, -0.01222991943359375, -0.0026187896728515625, 0.0211334228515625, + 0.038665771484375, -0.0287628173828125, -0.0305023193359375, -0.01861572265625, + 0.033416748046875, 0.056640625, -0.0164794921875, -0.0232391357421875, -0.0033893585205078125, + 0.01873779296875, 0.0225982666015625, 0.033843994140625, 0.0233154296875, -0.021270751953125, + -0.036865234375, -0.0413818359375, -0.07098388671875, 0.033050537109375, 0.07476806640625, + 0.0245208740234375, -0.04534912109375, -0.0139923095703125, 0.0084991455078125, + 0.004024505615234375, 0.07354736328125, 0.004337310791015625, -0.02252197265625, + -0.07257080078125, -0.023895263671875, -0.06304931640625, -0.014862060546875, 0.059326171875, + -0.004428863525390625, 0.03656005859375, -0.01348876953125, 0.044921875, 0.0095062255859375, + -0.02728271484375, -0.00963592529296875, -0.038604736328125, 0.01406097412109375, + -0.0042572021484375, 0.00897979736328125, -0.0182037353515625, 0.04193115234375, + -0.024810791015625, 0.0014190673828125, 0.022247314453125, -0.0419921875, + 0.002117156982421875, -0.0280609130859375, 0.01409912109375, -0.00713348388671875, + -0.02044677734375, -0.0180511474609375, 0.04754638671875, 0.002376556396484375, + -0.0220489501953125, 0.0018558502197265625, 0.025054931640625, 0.026123046875, + -0.0005712509155273438, -0.0224151611328125, 0.0291290283203125, 0.0189971923828125, + -0.0125274658203125, 0.042449951171875, -0.005603790283203125, -0.0179290771484375, + 0.0108795166015625, 0.048583984375, 0.045928955078125, 0.0243988037109375, -0.02667236328125, + -0.0294952392578125, 0.0596923828125, 0.020965576171875, -0.0152740478515625, 0.0078125, + -0.0236053466796875, -0.031402587890625, 0.01212310791015625, -0.00760650634765625, + 0.059234619140625, 0.0215301513671875, -0.0435791015625, -0.016510009765625, + -0.03936767578125, 0.024200439453125, -0.059844970703125, 0.01488494873046875, + 0.02325439453125, -0.0144500732421875, -0.0008115768432617188, -0.005710601806640625, + -0.032257080078125, 0.004009246826171875, 0.0194854736328125, 0.0209808349609375, + 0.01214599609375, -0.025482177734375, -0.057647705078125, 0.002960205078125, + 0.039398193359375, 0.0303955078125, -0.01702880859375, 0.017608642578125, + 0.005817413330078125, 0.053802490234375, 0.006351470947265625, -0.068115234375, + 0.038330078125, 0.012786865234375, 0.026947021484375, -0.03741455078125, -0.06982421875, + -0.02642822265625, 0.016632080078125, 0.0012483596801757812, -0.038238525390625, + -0.02423095703125, 0.0036144256591796875, 0.01201629638671875, 0.0009021759033203125, + -0.0208892822265625, -0.0155181884765625, -0.08245849609375, 0.00021660327911376953, + -0.034576416015625, -0.02935791015625, 0.0099029541015625, -0.016632080078125, + 0.0146942138671875, 0.004726409912109375, -0.0003895759582519531, -0.0170135498046875, + 0.0208740234375, 0.0174102783203125, -0.042999267578125, 0.01198577880859375, + 0.044647216796875, 0.00958251953125, -0.00916290283203125, -0.0003218650817871094, + 0.009918212890625, -0.0295867919921875, 0.01029205322265625, -0.037139892578125, + 0.026947021484375, -0.020843505859375, -0.05364990234375, -0.01168060302734375, + -0.0185394287109375, 0.032073974609375, 0.021759033203125, 0.022369384765625, + -0.0484619140625, -0.02716064453125, 0.015869140625, 0.006977081298828125, -0.013336181640625, + -0.00780487060546875, 0.005733489990234375, -0.0087432861328125, 0.0083770751953125, + -0.0046844482421875, 0.044525146484375, -0.0008358955383300781, 0.0158538818359375, + -0.043792724609375, 0.03338623046875, 0.0163726806640625, -0.031494140625, + -0.005260467529296875, -0.024200439453125, -0.00547027587890625, -0.012115478515625, + -0.0128021240234375, -0.0272064208984375, -0.00922393798828125, -0.0219879150390625, + 0.00843048095703125, -0.023345947265625, -0.036376953125, 0.005779266357421875, + 0.00820159912109375, 0.0235443115234375, -0.01070404052734375, 0.003101348876953125, + 0.01116180419921875, 0.0156402587890625, -0.02734375, 0.0236968994140625, 0.0168914794921875, + 0.01404571533203125, 0.041412353515625, -0.006107330322265625, -0.039031982421875, + -0.018951416015625, 0.0025634765625, -0.003955841064453125, -0.03436279296875, + -0.01110076904296875, -0.0115814208984375, -0.00199127197265625, 0.019744873046875, + -0.0282135009765625, -0.0085296630859375, -0.0081787109375, 0.0126190185546875, + 0.01078033447265625, 0.006771087646484375, 0.0030918121337890625, -0.0196075439453125, + -0.0192108154296875, -0.033721923828125, -0.0156097412109375, 0.00030684471130371094, + 0.002460479736328125, -0.0159149169921875, 0.0014858245849609375, 0.0172119140625, + -0.0069580078125, 0.037811279296875, 0.0161590576171875, -0.0116424560546875, + 0.004741668701171875, -0.03021240234375, -0.0161590576171875, 0.015533447265625, + 0.037384033203125, 0.01447296142578125, -0.002777099609375, -0.043701171875, + -0.012664794921875, 0.0026569366455078125, 0.00595855712890625, 0.00949859619140625, + -0.02099609375, 0.0140228271484375, -0.0168609619140625, 0.039337158203125, + 0.005680084228515625, 0.025146484375, -0.0013456344604492188, -0.0031890869140625, + -0.0027370452880859375, 0.03094482421875, 0.01049041748046875, 0.0083465576171875, + 0.0006971359252929688, 0.0215911865234375, 0.0113067626953125, 0.006572723388671875, + -0.0193328857421875, 0.0157470703125, -0.007541656494140625, 0.0173492431640625, + -0.0002739429473876953, 0.010711669921875, -0.04437255859375, -0.036407470703125, + 0.01218414306640625, 0.005084991455078125, 0.056610107421875, 9.02414321899414e-5, + -0.0250701904296875, -0.027984619140625, 0.00830078125, -0.0101776123046875, + -0.00473785400390625, -0.00711822509765625, -0.016082763671875, 0.01465606689453125, + 0.00409698486328125, -0.006561279296875, 0.01045989990234375, 0.028839111328125, + 0.0287628173828125, 0.000640869140625, -0.0182647705078125, -0.0190582275390625, + -0.0019512176513671875, -0.006374359130859375, -0.01568603515625, 0.049163818359375, + -0.0181427001953125, 0.021148681640625, 0.01080322265625, 0.005069732666015625, + -0.00560760498046875, 0.012115478515625, 0.01522064208984375, -0.01462554931640625, + -0.01136016845703125, 0.01519775390625, 0.002109527587890625, -0.035919189453125, + -0.05633544921875, 0.014190673828125, 0.045562744140625, 0.01702880859375, -0.08209228515625, + 0.01812744140625, -0.0202484130859375, 0.046844482421875, 0.01715087890625, + -0.003292083740234375, 0.00983428955078125, -0.0031490325927734375, -0.0238189697265625, + -0.01727294921875, 0.0227813720703125, -0.01023101806640625, 0.004730224609375, + 0.0426025390625, 0.0113372802734375, 0.023101806640625, 0.0099639892578125, + -0.0265350341796875, 0.0379638671875, -0.033660888671875, -0.03216552734375, + -0.00226593017578125, 0.0030803680419921875, 0.011444091796875, -0.01812744140625, + -0.045684814453125, -0.0002503395080566406, 0.0267181396484375, -0.00928497314453125, + 0.00885772705078125, 0.01023101806640625, 0.00034165382385253906, 0.007244110107421875, + 0.01092529296875, -0.038299560546875, -0.0323486328125, -0.0106353759765625, 0.03594970703125, + -0.01165771484375, 0.004116058349609375, -0.03326416015625, -0.0215301513671875, + -0.00675201416015625, 0.00859832763671875, 0.025115966796875, -0.03460693359375, + 0.016265869140625, -0.0013418197631835938, 0.01020050048828125, -0.007785797119140625, + 0.007694244384765625, -0.01495361328125, -0.0172882080078125, 0.01097869873046875, + -0.00998687744140625, 0.00833892822265625, -0.015045166015625, 0.0165252685546875, + -0.002986907958984375, -0.0031719207763671875, 0.033355712890625, 0.013031005859375, + 0.009490966796875, 3.36766242980957e-5, -0.008026123046875, -0.035308837890625, + 0.011688232421875, 0.0535888671875, 0.0082855224609375, -0.0271148681640625, + -0.04339599609375, 0.030548095703125, -0.00250244140625, 0.01300811767578125, + 0.0204620361328125, 0.041259765625, 0.0244903564453125, -0.038726806640625, + -0.0183258056640625, 0.024200439453125, 0.016082763671875, -0.0281982421875, -0.025634765625, + 0.041717529296875, -0.00356292724609375, -0.0044708251953125, -0.0299072265625, + -0.034210205078125, -0.04620361328125, -0.00792694091796875, -0.01541900634765625, + 0.0085296630859375, -0.0243377685546875, 0.00502777099609375, -0.0257568359375, 0.048828125, + 0.045257568359375, 0.02471923828125, -0.0202789306640625, 0.0022182464599609375, + 0.01018524169921875, 0.0311431884765625, 0.03289794921875, -0.041412353515625, + 0.0013103485107421875, -0.045684814453125, -0.00386810302734375, -0.02276611328125, + 0.029754638671875, -0.0038967132568359375, -0.006969451904296875, 0.0214080810546875, + -0.00885772705078125, 0.0041961669921875, 0.0228424072265625, 0.0189361572265625, + -0.004985809326171875, 0.03277587890625, -0.0232696533203125, 0.042236328125, + 0.00598907470703125, 0.0036144256591796875, 0.0252838134765625, -0.00012177228927612305, + 0.048919677734375, 0.0192108154296875, -0.032379150390625, -0.016357421875, + 0.00504302978515625, 0.01678466796875, 0.018157958984375, 0.01110076904296875, + 0.007396697998046875, -0.01540374755859375, 0.016326904296875, -0.02203369140625, + -0.01436614990234375, -0.020355224609375, 0.00605010986328125, 0.0115509033203125, + -0.03228759765625, 0.03424072265625, 0.0252532958984375, 0.0281982421875, -0.025787353515625, + -0.002460479736328125, -0.0209808349609375, -0.004970550537109375, -0.0223388671875, + 0.028045654296875, 0.0019664764404296875, -0.040252685546875, 0.0036640167236328125, + 0.0197906494140625, -0.00547027587890625, -0.0206146240234375, -0.036590576171875, + -0.04095458984375, -0.0134735107421875, 0.0024242401123046875, -0.00670623779296875, + 0.00434112548828125, -0.0150299072265625, -0.00616455078125, -0.003795623779296875, + -0.036895751953125, -0.00952911376953125, -0.01079559326171875, -0.0240020751953125, + 0.007801055908203125, 0.0035953521728515625, 0.049224853515625, 0.0219879150390625, + 0.0200042724609375, 0.01029205322265625, -0.0137481689453125, -0.030731201171875, + -0.012603759765625, 0.0215911865234375, -0.0193328857421875, -0.00904083251953125, + -0.0013895034790039062, -0.050994873046875, 0.0015735626220703125, 0.0116729736328125, + -7.045269012451172e-5, 0.04095458984375, -0.0289459228515625, 0.04296875, + 0.0034084320068359375, -0.056915283203125, -0.0035953521728515625, 0.004985809326171875, + -0.01654052734375, 0.0060577392578125, 0.00803375244140625, -0.0070037841796875, + 0.02752685546875, 0.0036220550537109375, 0.016571044921875, -0.0100555419921875, + -0.00775909423828125, 0.00679779052734375, -0.007373809814453125, 0.0275726318359375, + -0.005519866943359375, -0.034576416015625, -0.030181884765625, 0.006618499755859375, + 0.01395416259765625, -0.00975799560546875, 0.0208892822265625, 0.03094482421875, + -0.02813720703125, -0.0120391845703125, -0.0015134811401367188, -0.0294952392578125, + 0.02398681640625, 0.036285400390625, 0.057586669921875, -0.00319671630859375, + 0.004726409912109375, -0.0340576171875, -0.024383544921875, 0.0035152435302734375, + 0.045654296875, -0.02459716796875, 0.0260772705078125, -0.01142120361328125, + -0.011077880859375, -0.050445556640625, 0.045135498046875, 0.037811279296875, + 0.0028209686279296875, -0.005229949951171875, -0.02337646484375, -0.0340576171875, + 0.021636962890625, 0.0167083740234375, 0.0004825592041015625, -0.0234832763671875, + 0.00598907470703125, -0.0224609375, -0.01013946533203125, -0.01180267333984375, + -0.01441192626953125, -0.00911712646484375, -0.0202789306640625, -0.003261566162109375, + 0.0242156982421875, -0.00052642822265625, 0.0007610321044921875, 0.00933837890625, + 0.035858154296875, 0.0068206787109375, -0.0176239013671875, -0.035980224609375, + 0.00765228271484375, -0.0166168212890625, 0.0166473388671875, 0.01251983642578125, + -0.003711700439453125, 0.002353668212890625, -0.04376220703125, -0.0177154541015625, + -0.046966552734375, 0.0164337158203125, -0.00225830078125, 0.0155181884765625, + 0.015716552734375, -0.0031795501708984375, 0.01291656494140625, 0.0128631591796875, + 0.0245513916015625, 0.004222869873046875, -0.01329803466796875, -0.019378662109375, + 0.00597381591796875, 0.034423828125, -0.0028228759765625, 0.0164642333984375, + -0.021820068359375, 0.009368896484375, -0.01389312744140625, 0.0167236328125, + 0.033416748046875, 0.006351470947265625, -0.0272064208984375, -0.01482391357421875, + -0.0226287841796875, -0.01499176025390625, 0.01041412353515625, 0.0204010009765625, + 0.0219879150390625, -0.01287078857421875, 0.00010120868682861328, 0.01084136962890625, + -0.0012264251708984375, -0.0289154052734375, -0.025238037109375, 0.01335906982421875, + 0.0126495361328125, -0.0303192138671875, 0.046966552734375, 0.0210723876953125, + 0.0202484130859375, 0.002033233642578125, 0.0288238525390625, 0.044281005859375, + -0.002071380615234375, 0.007442474365234375, 0.0178070068359375, -0.047119140625, + -0.0142364501953125, -0.007965087890625, -0.0246429443359375, 0.03759765625, + -0.01055908203125, 0.021697998046875, 0.0323486328125, -0.024383544921875, 0.032562255859375, + -0.037506103515625, -0.01108551025390625, 0.0019130706787109375, -0.022705078125, + 0.0209197998046875, -0.0034885406494140625, 0.0009613037109375, -0.01078033447265625, + 0.0157318115234375, 0.023101806640625, 0.0016603469848632812, 0.008087158203125, + -0.00890350341796875, 0.01560211181640625, -0.01076507568359375, -0.01012420654296875, + 0.010223388671875, -0.041656494140625, 0.00644683837890625, -0.0037059783935546875, + 0.0192413330078125, 0.005130767822265625, 0.006435394287109375, 0.0129547119140625, + 0.000988006591796875, 0.01308441162109375, 0.00010448694229125977, -0.0157928466796875, + -0.01428985595703125, 0.0005826950073242188, 0.00798797607421875, -0.01393890380859375, + -0.0208740234375, 0.00691986083984375, 0.0192413330078125, -0.00994873046875, + -0.0203857421875, 0.002086639404296875, -0.015625, -0.013763427734375, 0.01116180419921875, + -0.01300811767578125, -0.0085296630859375, -0.00971221923828125, 0.019561767578125, + -0.008087158203125, 0.0013589859008789062, -0.00661468505859375, -0.0146026611328125, + -0.048583984375, 0.003582000732421875, 0.0078582763671875, 0.0163116455078125, + 0.021392822265625, 0.00907135009765625, 0.049407958984375, 0.0311279296875, + 0.0195465087890625, -0.01560211181640625, -0.0242919921875, -0.0018644332885742188, + 0.016693115234375, -0.0158538818359375, 0.0191497802734375, -0.00997161865234375, + -0.0095672607421875, 0.022125244140625, 0.0097808837890625, 0.0157470703125, + -0.044342041015625, 0.02105712890625, 0.0011501312255859375, 0.033843994140625, + -0.01320648193359375, -0.019073486328125, -0.0134735107421875, 0.009857177734375, + -0.00534820556640625, 0.01153564453125, 0.0186004638671875, 0.0019159317016601562, + -0.0265045166015625, -0.019195556640625, -0.02728271484375, 0.039459228515625, + 0.0202484130859375, -0.0148773193359375, 0.0270538330078125, 0.00933837890625, + -0.01168060302734375, -0.019256591796875, -0.01073455810546875, -0.031646728515625, + 0.0036830902099609375, 0.000392913818359375, 0.01212310791015625, -0.055450439453125, + -0.03302001953125, 0.049102783203125, -0.01293182373046875, 0.025146484375, -0.02191162109375, + 0.055206298828125, -0.0207977294921875, -0.0074310302734375, -0.005950927734375, + -0.01410675048828125, 0.0006465911865234375, -0.0265960693359375, -0.01551055908203125, + 0.0255584716796875, -0.001613616943359375, -0.0197906494140625, -0.0089874267578125, + 0.034912109375, -0.007198333740234375, -0.010040283203125, -0.0018072128295898438, + 0.004322052001953125, -0.023468017578125, 0.00739288330078125, -0.0245819091796875, + 0.076416015625, 0.007720947265625, -0.017364501953125, 0.0330810546875, 0.048614501953125, + 0.0028858184814453125, -0.039031982421875, 0.00531768798828125, 0.00739288330078125, + 0.006072998046875, 0.0267486572265625, 0.04693603515625, 0.01788330078125, + -0.0129241943359375, -0.0309600830078125, -0.002971649169921875, -0.0092620849609375, + -0.005619049072265625, 0.00637054443359375, 0.00975799560546875, 0.00598907470703125, + -0.04229736328125, 0.005207061767578125, -0.00021922588348388672, 0.0198516845703125, + -0.033905029296875, 0.0163421630859375, 0.031768798828125, 0.04638671875, + -0.0016231536865234375, 0.004642486572265625, -0.0100860595703125, -0.0299530029296875, + 0.037200927734375, 0.0423583984375, 0.0273590087890625, -0.01346588134765625, + -0.00443267822265625, 0.042724609375, -0.0136566162109375, 0.00024127960205078125, + -0.01389312744140625, 0.0084075927734375, -0.0308074951171875, 0.00251007080078125, + 0.00927734375, 0.05267333984375, -0.0296630859375, -0.0143280029296875, -0.0063934326171875, + -0.00783538818359375, 0.0124664306640625, 0.0183868408203125, 0.031707763671875, + -0.023895263671875, -0.00800323486328125, 0.00977325439453125, 0.0208892822265625, + 0.0091552734375, -0.0213623046875, -0.017852783203125, 0.0020580291748046875, + -0.01016998291015625, -0.007717132568359375, -0.033660888671875, -0.027130126953125, + -0.0302734375, -0.033111572265625, 0.02984619140625, 0.0166473388671875, 0.0172119140625, + -0.0278778076171875, 0.00229644775390625, -0.00717926025390625, -0.0242462158203125, + 0.01617431640625, 0.01378631591796875, 0.0251617431640625, 0.006618499755859375, + 0.0160369873046875, 0.0198211669921875, 0.01456451416015625, 0.024627685546875, + 0.034759521484375, -0.033111572265625, -0.010711669921875, -0.007080078125, 0.0208740234375, + -0.0193939208984375, 0.0257415771484375, 0.01412200927734375, 0.006778717041015625, + -0.061004638671875, 0.0002593994140625, 0.0110626220703125, 0.031524658203125, + -0.0018110275268554688, 0.015838623046875, -0.023681640625, -0.031890869140625, + 0.00713348388671875, 0.00852203369140625, -0.03143310546875, 0.01264190673828125, + 0.00936126708984375, -0.00826263427734375, -0.0012750625610351562, -0.004444122314453125, + 0.0138092041015625, 0.018096923828125, -0.006687164306640625, -0.001934051513671875, + -0.0103912353515625, -0.0273895263671875, -0.0269775390625, 0.022216796875, + -0.01229095458984375, -0.02398681640625, -0.00711822509765625, -0.037811279296875, + 0.01910400390625, 0.006114959716796875, 0.02716064453125, 0.01318359375, 0.013153076171875, + 0.028533935546875, -0.0264129638671875, -0.037933349609375, 0.051605224609375, + -0.0250701904296875, 0.041778564453125, 0.04510498046875, -0.01264190673828125, + -0.0061798095703125, 0.033294677734375, 0.0123138427734375, 0.03009033203125, + -0.0011444091796875, -0.0206146240234375, -0.0116729736328125, -0.052825927734375, + 0.044464111328125, -0.01517486572265625, -0.00470733642578125, 0.029388427734375, + -0.0482177734375, -0.01250457763671875, 0.0099334716796875, 4.9173831939697266e-5, + -0.008544921875, -0.039154052734375, -3.039836883544922e-5, 0.016937255859375, + 0.031951904296875, -0.0174560546875, 0.014068603515625, -0.0222320556640625, + 0.005764007568359375, -0.01523590087890625, -0.00540924072265625, -0.047210693359375, + 0.011444091796875, -0.024169921875, -0.01177215576171875, 0.039031982421875, 0.011962890625, + 0.0005879402160644531, 0.002674102783203125, 0.0218658447265625, 0.023345947265625, + 0.015838623046875, -0.037445068359375, -0.0186614990234375, -0.01328277587890625, + -0.0265045166015625, -0.006885528564453125, -0.01432037353515625, -0.0180511474609375, + 0.01352691650390625, -0.0028839111328125, -0.0073089599609375, 0.0001500844955444336, + 0.0218658447265625, 0.01284027099609375, 0.0147552490234375, -0.020263671875, + 0.00696563720703125, -0.01093292236328125, 0.00928497314453125, -0.0284576416015625, + 0.0274200439453125, -0.01073455810546875, -0.0242919921875, 0.00647735595703125, + 0.0007677078247070312, 0.00945281982421875, -0.01540374755859375, -0.007320404052734375, + 0.0025310516357421875, 0.003734588623046875, 0.007183074951171875, 0.0025787353515625, + -0.017059326171875, 0.00284576416015625, -0.00601959228515625, 0.00031375885009765625, + 0.0032901763916015625, 0.0213623046875, 0.00243377685546875, -0.00897979736328125, + -0.01242828369140625, 0.0040740966796875, 0.017578125, 0.0357666015625, -0.00386810302734375, + 0.0092010498046875, 0.024627685546875, 0.03680419921875, 0.00347900390625, 0.035247802734375, + -0.00077056884765625, -0.016632080078125, -0.0196685791015625, -0.011199951171875, + 0.006229400634765625, 0.005725860595703125, -0.001567840576171875, -0.0191497802734375, + -0.0163726806640625, -0.01378631591796875, -0.024627685546875, 0.039215087890625, + -0.0214996337890625, 0.0222320556640625, -0.007404327392578125, -0.01146697998046875, + -0.02423095703125, 0.02197265625, -0.00853729248046875, 0.0257415771484375, + -0.0275421142578125, 0.0194244384765625, -0.0362548828125, 0.002017974853515625, + -0.034271240234375, 0.034515380859375, -0.01244354248046875, -0.0173187255859375, + 0.0130615234375, -0.01523590087890625, 0.00849151611328125, 0.0140838623046875, + -0.039794921875, -0.0022296905517578125, 0.04498291015625, 0.01531219482421875, + -0.00830078125, -0.0115966796875, -0.0118865966796875, -0.0008096694946289062, + 0.042877197265625, 0.0242462158203125, -0.006031036376953125, -0.005828857421875, + -0.0021419525146484375, -0.0102996826171875, -0.0160980224609375, 0.002288818359375, + -0.021728515625, -0.00970458984375, 0.00431060791015625, 0.03985595703125, -0.025299072265625, + -0.005615234375, -0.01313018798828125, -0.01117706298828125, 0.01178741455078125, + 0.0091094970703125, 0.03680419921875, -0.050506591796875, -0.01354217529296875, + -0.01296234130859375, -0.0066070556640625, 0.002811431884765625, 0.0212249755859375, + -0.053009033203125, -0.01470947265625, 0.0015554428100585938, 0.0303497314453125, + -0.033905029296875, -0.0205841064453125, 0.0146026611328125, -0.01049041748046875, + -0.020538330078125, -0.01142120361328125, 0.0233917236328125, -0.0211334228515625, + -0.016265869140625, 0.0011224746704101562, -0.00024127960205078125, 0.02374267578125, + 0.0242767333984375, 0.0160980224609375, 0.0059967041015625, -0.0210723876953125, + -0.01221466064453125, 0.00504302978515625, 0.0036563873291015625, 0.004474639892578125, + -0.006763458251953125, 0.0183868408203125, -0.0205841064453125, 0.01039886474609375, + -0.007415771484375, 0.0282135009765625, -0.01198577880859375, 0.01328277587890625, + 0.0116729736328125, -0.012603759765625, 0.00815582275390625, -0.004489898681640625, + 0.0238800048828125, -0.007587432861328125, -0.004619598388671875, -0.00424957275390625, + -0.0027751922607421875, -0.007625579833984375, -0.00467681884765625, -0.0028362274169921875, + -0.00750732421875, 0.00760650634765625, -0.01458740234375, -0.01348876953125, + -0.0105133056640625, -0.01096343994140625, 0.035858154296875, -0.012420654296875, + 0.04693603515625, 0.00826263427734375, -0.048095703125, -0.0250244140625, 0.0282135009765625, + -0.00777435302734375, 0.045623779296875, 0.0233001708984375, 0.006031036376953125, + 0.033721923828125, 0.032958984375, 0.0023651123046875, -0.0017347335815429688, + 0.014678955078125, -0.01505279541015625, 0.014495849609375, -0.0198516845703125, + -0.009735107421875, -0.0340576171875, -0.00655364990234375, 0.00830841064453125, + 0.00395965576171875, 0.0108489990234375, 0.055877685546875, 0.026458740234375, + 0.0154571533203125, -0.01247406005859375, -0.029571533203125, -0.0148468017578125, + 0.0122528076171875, 0.0017576217651367188, 0.042449951171875, 0.0254364013671875, + -0.01885986328125, -0.03594970703125, -0.007244110107421875, -0.01428985595703125, + 0.003795623779296875, -0.034515380859375, -0.032806396484375, 0.0114898681640625, + -0.037017822265625, -0.051177978515625, -0.00042891502380371094, -0.0184326171875, + 0.0015544891357421875, 0.0190887451171875, 0.0098419189453125, -0.0048828125, + -0.0037670135498046875, 0.003025054931640625, 0.023956298828125 + ] + }, + { + "tag": "athletics", + "description": "an athletic event, intramural game, club sports practice, tournament, or competitive fitness match involving physical exertion, teamwork, or gameplay", + "embedding": [ + -0.004047393798828125, 0.0299224853515625, 0.018218994140625, 0.0011730194091796875, + 0.030914306640625, 0.0227813720703125, 0.03326416015625, 0.006900787353515625, + 0.019561767578125, 0.05029296875, 0.050506591796875, 0.00945281982421875, -0.017822265625, + -0.00582122802734375, 0.01210784912109375, 0.032318115234375, -0.0290679931640625, + -0.06829833984375, -0.046142578125, 0.01087188720703125, 0.07598876953125, 0.0233001708984375, + -0.0201873779296875, -0.016357421875, -0.0305023193359375, -0.007965087890625, + -0.0029163360595703125, -0.01410675048828125, 0.002475738525390625, 0.01224517822265625, + 0.014068603515625, -0.0161590576171875, 0.0175018310546875, -0.05450439453125, + 0.057342529296875, 0.03369140625, 0.0036792755126953125, 0.044891357421875, 0.028778076171875, + -0.004772186279296875, 0.006862640380859375, -0.05474853515625, -0.053985595703125, + 0.004573822021484375, -0.028076171875, 0.01235198974609375, -0.02386474609375, + -0.0157928466796875, -0.010040283203125, 0.0262451171875, -0.051025390625, + -0.003025054931640625, 0.046142578125, 0.0621337890625, 0.002979278564453125, + 0.00954437255859375, 0.0260467529296875, 0.0261077880859375, -0.0010499954223632812, + -0.003360748291015625, 0.0024356842041015625, 0.0163726806640625, 0.0279998779296875, + 0.00811767578125, -0.041534423828125, 0.0102996826171875, 0.036651611328125, + 0.045745849609375, 0.014495849609375, 0.015869140625, 0.0291900634765625, 0.01629638671875, + 0.00952911376953125, 0.04345703125, 0.03778076171875, -0.004169464111328125, + -0.036163330078125, -0.039031982421875, 0.004486083984375, 0.0110015869140625, + 0.0136260986328125, 0.0149078369140625, 0.0296630859375, 0.04754638671875, + -0.0276947021484375, -0.051788330078125, -0.07568359375, -0.006771087646484375, + 0.0243682861328125, 0.01560211181640625, 0.0038471221923828125, 0.0029315948486328125, + 0.00623321533203125, 0.0478515625, 0.0377197265625, -0.02880859375, 0.005153656005859375, + -0.0731201171875, 0.0292510986328125, 0.0693359375, 0.00521087646484375, -0.057159423828125, + -0.0303955078125, 0.00836181640625, 0.017791748046875, -0.036590576171875, -0.059967041015625, + 0.0352783203125, 0.002902984619140625, -0.019744873046875, -0.0404052734375, + 0.01172637939453125, -0.0239105224609375, 0.03985595703125, 0.003662109375, + 0.0147552490234375, 0.06524658203125, -0.037994384765625, -0.0123291015625, -0.07427978515625, + 0.01244354248046875, 0.057861328125, 0.0328369140625, -0.0986328125, -0.0031566619873046875, + 0.01013946533203125, -0.0058746337890625, -0.0087127685546875, -0.01154327392578125, + -0.04547119140625, 0.0111083984375, -0.00095367431640625, -4.2498111724853516e-5, + -0.060791015625, -0.0184783935546875, 0.0228729248046875, -0.060150146484375, + 0.01253509521484375, -0.0831298828125, -0.049346923828125, -0.00408172607421875, + 0.0029125213623046875, -0.00091552734375, 0.01134490966796875, 0.0023288726806640625, + -0.01338958740234375, 0.021636962890625, -0.01338958740234375, 0.0222320556640625, + -0.042999267578125, 0.0180206298828125, -0.00737762451171875, -0.042572021484375, + 0.0155181884765625, 0.017822265625, -0.03765869140625, -0.0278472900390625, 0.03466796875, + 0.01123046875, -0.061767578125, -0.01259613037109375, -0.009185791015625, -0.050567626953125, + 0.0081024169921875, 0.041778564453125, -0.0211944580078125, -0.0294342041015625, + 0.0222320556640625, -0.03106689453125, 0.0271453857421875, 0.021636962890625, + -0.0058746337890625, -0.074462890625, 0.057098388671875, 0.05084228515625, + -0.00026679039001464844, -0.0050201416015625, 0.0283966064453125, -0.07196044921875, + -0.0233001708984375, -0.003887176513671875, -0.00878143310546875, -0.053985595703125, + 0.0028362274169921875, 0.0212860107421875, 0.04949951171875, 0.0044708251953125, + 0.06671142578125, 0.005855560302734375, 0.0257720947265625, 0.02880859375, 0.034027099609375, + -0.0006842613220214844, 0.00772857666015625, 0.026702880859375, -0.0291900634765625, + 0.00750732421875, 0.0029888153076171875, -0.00994110107421875, 0.0221405029296875, + 0.006252288818359375, -0.023773193359375, 0.0027904510498046875, -0.002971649169921875, + -0.01788330078125, -0.035430908203125, -0.0257568359375, 0.026397705078125, + 0.0004105567932128906, 0.038787841796875, 0.003582000732421875, -0.0169830322265625, + 0.039276123046875, -0.025848388671875, -0.021728515625, 0.0196380615234375, 0.06512451171875, + 0.0260162353515625, 0.0200653076171875, 0.037078857421875, -0.02392578125, 0.06298828125, + 0.0390625, 0.0390625, -0.02655029296875, 0.0106353759765625, -0.0005793571472167969, + -0.049774169921875, 0.048095703125, -0.07977294921875, -0.044097900390625, + -0.0118255615234375, -0.040679931640625, -0.027374267578125, 0.00858306884765625, + 0.01235198974609375, 0.01549530029296875, -0.008514404296875, 0.0166778564453125, + -0.0489501953125, 0.037994384765625, 0.005275726318359375, 0.029541015625, + -0.01363372802734375, 0.0242462158203125, -0.0019178390502929688, -0.006870269775390625, + 0.0140533447265625, 0.00974273681640625, 0.004512786865234375, 0.047454833984375, + -0.033843994140625, -0.0615234375, -0.0089569091796875, 0.006439208984375, 0.0122222900390625, + -0.0009698867797851562, 0.033538818359375, -0.03692626953125, 0.00011324882507324219, + -0.0193328857421875, 0.00974273681640625, 0.0021610260009765625, -0.038970947265625, + -0.0116119384765625, 0.019317626953125, 0.0004978179931640625, 0.01175689697265625, + 0.01776123046875, 0.0011739730834960938, -0.01558685302734375, 0.054229736328125, + -0.0271148681640625, -0.04864501953125, -0.004680633544921875, -0.02130126953125, + 0.018951416015625, 0.061614990234375, 0.01319122314453125, -0.018829345703125, + 0.0181884765625, -0.0028362274169921875, -0.031341552734375, -0.0380859375, + 0.00580596923828125, 0.038330078125, -0.0159149169921875, -0.0156707763671875, -0.0322265625, + 0.004817962646484375, -0.04608154296875, 0.024566650390625, -0.0207672119140625, + 0.0423583984375, 0.054443359375, -0.032867431640625, -0.023895263671875, -0.01541900634765625, + 0.025299072265625, 0.0274810791015625, -0.01226043701171875, 0.004795074462890625, + -0.03973388671875, 0.0343017578125, -0.001720428466796875, 0.0214385986328125, 0.01806640625, + 0.005153656005859375, 0.0208740234375, -0.0212554931640625, -0.0009374618530273438, + 0.052764892578125, 0.005695343017578125, 0.04766845703125, -0.0156402587890625, + 0.0026264190673828125, -0.0161285400390625, 0.09393310546875, 0.017364501953125, + 0.01363372802734375, 0.0406494140625, -0.0014190673828125, 0.0245361328125, + -0.0220794677734375, 0.06805419921875, -0.0007081031799316406, -0.01074981689453125, + 0.0302581787109375, -0.01308441162109375, -0.045745849609375, -0.0113067626953125, + 0.042510986328125, -0.025848388671875, 0.045196533203125, 0.045196533203125, 0.013427734375, + 0.0270843505859375, 0.006561279296875, 0.035369873046875, -0.0158538818359375, + -0.07989501953125, -0.0162353515625, -0.02984619140625, 0.042236328125, 0.001953125, + 0.0200653076171875, 0.0134429931640625, -0.005702972412109375, -0.03564453125, 0.025390625, + 0.001834869384765625, -0.0237579345703125, 0.023468017578125, 0.0268096923828125, + 0.0012044906616210938, -0.046051025390625, 0.0171966552734375, -0.0199737548828125, + 0.0123748779296875, 0.01117706298828125, 0.002532958984375, 0.01308441162109375, + 0.004268646240234375, 0.005275726318359375, 0.01036834716796875, 0.0643310546875, + -0.005428314208984375, 0.007213592529296875, 0.0160064697265625, -0.0237579345703125, + -0.021636962890625, 0.0189361572265625, -0.006946563720703125, 0.00533294677734375, + -0.0267791748046875, 0.04461669921875, 0.016082763671875, 0.07708740234375, + -0.002132415771484375, -0.01788330078125, 0.00946044921875, 0.0220947265625, + 0.01276397705078125, -0.0340576171875, -0.01209259033203125, 0.054229736328125, + -0.01239776611328125, 0.01215362548828125, -0.07830810546875, 0.04046630859375, + 0.03704833984375, -0.045745849609375, -0.0491943359375, -0.033721923828125, + -0.01407623291015625, 0.004268646240234375, 0.060791015625, -0.00492095947265625, + 0.0369873046875, -0.018707275390625, -0.01409149169921875, 0.011505126953125, + -0.05645751953125, -0.0162200927734375, -0.0257568359375, -0.0180206298828125, + 0.06353759765625, -0.062225341796875, -0.04449462890625, 0.0255126953125, 0.029449462890625, + 0.022247314453125, 0.046875, 0.04852294921875, -0.00688934326171875, -0.034881591796875, + 0.0167083740234375, -0.039154052734375, 0.0222320556640625, 0.05157470703125, + 0.002857208251953125, -0.0574951171875, -0.0091094970703125, 0.033416748046875, + -0.00809478759765625, 0.037506103515625, 0.0089569091796875, -0.0343017578125, + -0.0212860107421875, -0.0182647705078125, -0.028289794921875, -0.01221466064453125, + 0.052520751953125, 0.019989013671875, 0.017486572265625, -0.041168212890625, 0.02935791015625, + -0.0029926300048828125, -0.034332275390625, -0.002834320068359375, -0.0261688232421875, + 0.0201873779296875, 0.0266265869140625, 0.020416259765625, -0.036407470703125, 0.084228515625, + 0.0008516311645507812, -0.0261993408203125, 0.00051116943359375, -0.00630950927734375, + 0.021697998046875, -0.01090240478515625, -0.018768310546875, -0.0080718994140625, + 0.014556884765625, -0.04302978515625, 0.04254150390625, -0.0037078857421875, + 0.044281005859375, 0.0292510986328125, 0.016815185546875, 0.022918701171875, + 0.041717529296875, -0.007350921630859375, 0.01812744140625, 0.0129241943359375, + 0.0269927978515625, 0.01445770263671875, 0.0261993408203125, -0.0126495361328125, + 0.023345947265625, -0.00601959228515625, 0.0618896484375, 0.0003662109375, -0.022735595703125, + -0.00860595703125, 0.035186767578125, 0.03936767578125, -0.013702392578125, + 0.01073455810546875, -0.0013475418090820312, -0.0299530029296875, 0.0020160675048828125, + 0.0150146484375, 0.040069580078125, 0.0007448196411132812, 0.0290374755859375, + -0.00904083251953125, -0.03363037109375, -0.004337310791015625, 0.018341064453125, + -0.0005922317504882812, 0.0162353515625, -0.01515960693359375, 0.032562255859375, + -0.005153656005859375, -0.0101165771484375, -0.0086669921875, -0.0015954971313476562, + -0.0127105712890625, -0.006130218505859375, -0.0029239654541015625, -0.066650390625, + -0.00580596923828125, 0.03094482421875, 0.03253173828125, -0.0026149749755859375, + -0.00024390220642089844, 0.0281524658203125, 0.0124969482421875, 0.00754547119140625, + -0.03131103515625, 0.06011962890625, 0.041595458984375, -0.01206207275390625, + -0.00031375885009765625, -0.049591064453125, 0.04486083984375, 0.02777099609375, + -0.01178741455078125, -0.041473388671875, 0.007537841796875, -0.025787353515625, + 0.01485443115234375, 0.0099334716796875, -0.038299560546875, -0.0255126953125, + -0.059906005859375, -0.0110626220703125, -0.03460693359375, -0.035491943359375, + -0.004730224609375, 0.0126190185546875, 0.0012636184692382812, -0.01313018798828125, + 0.003082275390625, -0.0228424072265625, 0.0308380126953125, 0.027008056640625, + -0.018524169921875, -0.0316162109375, 0.049407958984375, 0.0228729248046875, + 0.00017023086547851562, -0.0007529258728027344, 0.03668212890625, -0.0253143310546875, + -0.0450439453125, -0.0033702850341796875, 0.001811981201171875, -0.01317596435546875, + -0.004421234130859375, -0.034271240234375, -0.0283660888671875, 0.01560211181640625, + 0.052398681640625, 0.01116943359375, -0.04766845703125, -0.037322998046875, 0.0059814453125, + 0.0006895065307617188, -0.0203399658203125, -0.00933074951171875, -0.024383544921875, + -0.0250244140625, -0.00029921531677246094, 0.004795074462890625, 0.021026611328125, + 0.0029354095458984375, 0.0390625, -0.0185699462890625, 0.0228729248046875, -0.032012939453125, + -0.043609619140625, -0.0023899078369140625, -0.0015668869018554688, -0.0030536651611328125, + 0.0103302001953125, 0.0157470703125, -0.0043792724609375, 0.001560211181640625, + -0.035186767578125, 0.018829345703125, -0.03924560546875, -0.034912109375, 0.0273284912109375, + 0.00388336181640625, -0.0033111572265625, -0.02130126953125, 0.02252197265625, + 0.0227508544921875, 0.0030460357666015625, 0.0167236328125, 0.00879669189453125, + 0.023712158203125, 0.0355224609375, -0.01258087158203125, -0.00542449951171875, + -0.02703857421875, -0.0303955078125, 0.00508880615234375, -0.03070068359375, + 0.029815673828125, -0.029998779296875, 0.0037403106689453125, -0.018035888671875, + 0.00972747802734375, -0.0115966796875, -0.005035400390625, 0.0006685256958007812, + 0.041351318359375, 0.0113372802734375, 0.0060577392578125, 0.033294677734375, + 0.00616455078125, -0.004978179931640625, -0.0013608932495117188, 0.006618499755859375, + 0.0075531005859375, 0.007671356201171875, -0.0179595947265625, -0.021240234375, + 0.0281524658203125, -0.0022830963134765625, 0.0151824951171875, 0.0199127197265625, + -0.0234832763671875, -0.0150909423828125, 0.00853729248046875, -0.0031528472900390625, + -0.0223541259765625, -0.00920867919921875, 0.031341552734375, -0.005046844482421875, + -0.0164642333984375, -0.0465087890625, -0.059478759765625, 0.00788116455078125, + 0.0021190643310546875, 0.00701141357421875, 0.0291900634765625, 0.015960693359375, + 0.03277587890625, -0.016357421875, 0.041900634765625, -0.00809478759765625, + -0.017791748046875, -0.0192108154296875, 0.01239776611328125, 0.000873565673828125, + 0.00261688232421875, -0.00495147705078125, 0.0108642578125, -0.0210113525390625, + -0.0003509521484375, 0.0089874267578125, -0.0237579345703125, -0.036956787109375, + -0.0076751708984375, -0.031097412109375, 0.0164947509765625, -0.010345458984375, + -0.0155181884765625, -0.002166748046875, -0.0018405914306640625, 0.0501708984375, + -0.00036144256591796875, -0.000701904296875, -0.019317626953125, 0.00891876220703125, + -0.00811004638671875, 0.00017452239990234375, -0.0009965896606445312, 0.0005288124084472656, + 0.0209197998046875, -0.01383209228515625, -0.00653076171875, 0.01971435546875, + 0.0174102783203125, 0.00884246826171875, -0.022430419921875, -0.03607177734375, + -0.019622802734375, 0.01045989990234375, 0.00531768798828125, -0.0156402587890625, + 0.014923095703125, 0.0272979736328125, -0.0023860931396484375, 0.00103759765625, + 0.0221710205078125, -0.01123046875, 0.003444671630859375, 0.00013816356658935547, + -0.05340576171875, 0.00823211669921875, 0.0018215179443359375, 0.017791748046875, + -0.02752685546875, -0.016815185546875, 0.0149993896484375, 0.071533203125, 0.02252197265625, + -0.041473388671875, -0.056671142578125, -0.0285186767578125, 0.0198211669921875, + 0.033782958984375, 0.0177764892578125, -0.029449462890625, -0.01074981689453125, + 0.0083160400390625, 0.005481719970703125, 0.0269317626953125, -0.0252227783203125, + -0.0184783935546875, 0.0109710693359375, 0.03948974609375, -0.005767822265625, + -0.0020046234130859375, 0.017425537109375, 0.01715087890625, -0.0462646484375, + -0.004833221435546875, -0.037628173828125, 0.0186767578125, -0.00942230224609375, + 0.0077362060546875, -0.020843505859375, 0.007537841796875, 0.02056884765625, + -0.0101165771484375, -0.0306243896484375, -0.019134521484375, -0.0022716522216796875, + -0.004962921142578125, 0.0080108642578125, -0.0245208740234375, -0.03497314453125, + 0.0012645721435546875, 0.0156707763671875, -0.019622802734375, -0.004917144775390625, + -0.00811767578125, -0.049285888671875, -0.00684356689453125, -0.011077880859375, + 0.026153564453125, -0.006561279296875, 0.0379638671875, -0.02703857421875, + 0.00992584228515625, -0.01488494873046875, -0.00812530517578125, 0.013671875, + -0.046234130859375, -0.01049041748046875, -0.000492095947265625, -0.021728515625, + 0.005863189697265625, 0.0311431884765625, 0.002166748046875, 0.03265380859375, + -0.0005774497985839844, 0.030029296875, 0.009674072265625, 0.01030731201171875, + -0.006626129150390625, 0.037689208984375, 0.0162200927734375, 0.00728607177734375, + 0.0239410400390625, -0.007579803466796875, -0.02825927734375, -0.0012731552124023438, + -0.01161956787109375, -0.031280517578125, 0.0224761962890625, 0.07110595703125, + -0.0010538101196289062, -0.0033702850341796875, 0.0002658367156982422, 0.002544403076171875, + 0.030364990234375, -0.002590179443359375, -0.0411376953125, 0.0205841064453125, + -0.0164337158203125, 0.00209808349609375, -0.03546142578125, 0.004940032958984375, + -0.021820068359375, -0.0186767578125, -0.040283203125, -0.001171112060546875, + -0.0024166107177734375, 0.01471710205078125, -0.03265380859375, 0.018829345703125, + 0.0191802978515625, 0.007144927978515625, -0.005535125732421875, -0.00719451904296875, + 0.005702972412109375, 0.0037689208984375, 0.019805908203125, -0.045562744140625, + -0.00278472900390625, -0.023101806640625, 0.00943756103515625, 0.0181884765625, + 0.043853759765625, -0.0015850067138671875, -0.007617950439453125, 0.0055999755859375, + -0.034088134765625, -0.01641845703125, 0.027923583984375, -0.02569580078125, + -0.0184783935546875, -0.004024505615234375, -0.03778076171875, 0.067626953125, + -0.002079010009765625, -0.010772705078125, 0.00952911376953125, -0.00893402099609375, + 0.0390625, 0.034576416015625, 0.02392578125, 0.012542724609375, -0.0011014938354492188, + 0.042938232421875, 0.0026073455810546875, -0.00732421875, 0.02569580078125, + -0.006870269775390625, 0.0263824462890625, -0.0285186767578125, -0.009735107421875, + -0.0224761962890625, 0.028228759765625, -0.03448486328125, 0.00759124755859375, + -0.002552032470703125, 0.0185699462890625, -0.03167724609375, 0.003276824951171875, + -0.0163421630859375, 0.0135955810546875, 0.01605224609375, -0.034881591796875, + 0.052581787109375, -0.032867431640625, -0.00010097026824951172, -0.04119873046875, + 0.0192108154296875, -0.00388336181640625, -0.0251007080078125, -0.032928466796875, + -0.0111236572265625, -0.0075531005859375, 0.0081329345703125, 0.0037078857421875, + 0.004810333251953125, -0.004512786865234375, 0.005985260009765625, 0.0531005859375, + -0.02093505859375, -0.012969970703125, 0.006748199462890625, 0.00640106201171875, + 0.00939178466796875, -0.034423828125, 0.0015439987182617188, -0.01971435546875, + -0.01751708984375, 0.054901123046875, -0.01271820068359375, 0.020477294921875, + 0.0360107421875, 0.01092529296875, -0.0068817138671875, -0.008575439453125, + -0.040191650390625, -0.026702880859375, -0.01294708251953125, 0.0204925537109375, + -0.0225067138671875, 0.03973388671875, 0.00144195556640625, -0.004619598388671875, + 0.001911163330078125, -0.0257720947265625, -0.032318115234375, 0.0350341796875, + -0.0021915435791015625, -0.0174560546875, 0.030181884765625, 0.0285491943359375, + 0.00417327880859375, -0.0221710205078125, -0.0038547515869140625, -0.005634307861328125, + 0.0100555419921875, 0.00867462158203125, -0.0231781005859375, 0.036773681640625, + -0.028594970703125, -0.03326416015625, -0.0138702392578125, -0.0196075439453125, + -0.02239990234375, -0.035064697265625, 0.0002008676528930664, 0.01303863525390625, + -0.022308349609375, -0.043792724609375, 0.008941650390625, -0.04931640625, + 0.00047659873962402344, 0.037322998046875, 0.040130615234375, 0.0085296630859375, + 0.00872802734375, 0.01029205322265625, 0.0283050537109375, 0.0192108154296875, + 0.042694091796875, -0.037139892578125, 0.01094818115234375, -0.0236663818359375, + 0.0012760162353515625, -0.01064300537109375, -0.00415802001953125, 0.0157012939453125, + 0.0023975372314453125, 0.01317596435546875, -0.0243988037109375, 0.0167999267578125, + 0.00543212890625, 0.00879669189453125, 0.00246429443359375, 0.0016965866088867188, + 0.0210113525390625, -0.0300750732421875, -0.0157623291015625, -0.006740570068359375, + -0.021331787109375, 0.0010290145874023438, -0.0127410888671875, 0.00710296630859375, + 0.05316162109375, -0.019012451171875, 0.018310546875, -0.0323486328125, 0.025238037109375, + 0.003139495849609375, 0.01338958740234375, -0.0201873779296875, 0.00814056396484375, + -0.010894775390625, 0.0213165283203125, 0.01340484619140625, 0.03558349609375, + 0.0061492919921875, 0.002124786376953125, 0.0026397705078125, 0.01074981689453125, + -0.00978851318359375, -0.05078125, 0.01372528076171875, 0.0367431640625, 0.043243408203125, + -0.01166534423828125, -0.004642486572265625, 0.02093505859375, -0.007350921630859375, + -0.0098419189453125, -0.0006518363952636719, 0.0135345458984375, 0.0216064453125, + 0.005523681640625, -0.0016851425170898438, 0.005340576171875, -0.0040740966796875, + 0.021820068359375, -0.0066375732421875, 0.0295867919921875, -0.0276336669921875, + -0.027069091796875, -0.018707275390625, 0.0036144256591796875, -0.02740478515625, + -0.00044798851013183594, 0.0167083740234375, 0.01287841796875, -0.010833740234375, + -0.01348114013671875, 0.00543975830078125, -0.0269317626953125, -0.03448486328125, + -0.007488250732421875, 0.008758544921875, 0.0133056640625, -0.0196380615234375, 0.03369140625, + -0.005008697509765625, 0.0212860107421875, 0.0222320556640625, 0.01494598388671875, + -0.00254058837890625, 0.00688934326171875, -0.040985107421875, -0.00742340087890625, + 0.00170135498046875, 0.006103515625, -0.020721435546875, -0.00534820556640625, + 0.005245208740234375, -0.0215911865234375, 0.0305938720703125, -0.00933074951171875, + 0.002079010009765625, 0.017791748046875, -0.01337432861328125, -0.0026378631591796875, + -0.0252838134765625, 0.04107666015625, -0.024505615234375, -0.006805419921875, + 0.035675048828125, 0.008941650390625, 0.0241851806640625, 0.004581451416015625, + -0.00949859619140625, 0.002452850341796875, -0.0054168701171875, 0.021453857421875, + -0.01442718505859375, -0.01514434814453125, 0.006633758544921875, -0.0182952880859375, + 0.02294921875, 0.0029544830322265625, 0.0009617805480957031, 0.0025310516357421875, + 0.00860595703125, 0.0026416778564453125, 0.00998687744140625, 0.01038360595703125, + -0.005146026611328125, 0.037445068359375, 0.00201416015625, 0.034149169921875, + -0.02105712890625, -0.02288818359375, -0.039947509765625, 0.033477783203125, + 0.00975799560546875, -0.007167816162109375, -0.0020465850830078125, -0.0037136077880859375, + -0.01345062255859375, -0.020843505859375, 0.027374267578125, -0.01050567626953125, + -0.0004203319549560547, -0.00618743896484375, 0.00348663330078125, 0.00927734375, + 0.0179901123046875, 0.0279998779296875, -0.01461029052734375, -0.042144775390625, + -0.02935791015625, 0.0185546875, -0.00299072265625, 0.002742767333984375, 0.01085662841796875, + 0.0181121826171875, 0.032379150390625, 0.027557373046875, 0.02410888671875, + -0.006622314453125, -0.00024628639221191406, 0.01216888427734375, -0.0015430450439453125, + 0.03955078125, -0.0162353515625, -0.018035888671875, 0.024932861328125, 0.0015001296997070312, + -0.0006852149963378906, -0.016632080078125, 0.021575927734375, 0.0374755859375, + 0.015289306640625, 0.005645751953125, -0.0267791748046875, 0.01390838623046875, + 0.020355224609375, 0.01091766357421875, -0.0202178955078125, 0.018218994140625, + 0.00025963783264160156, -0.0309906005859375, -0.055328369140625, 0.0014781951904296875, + 0.04522705078125, 0.0223541259765625, -0.001068115234375, 0.038482666015625, + -0.03094482421875, -0.01348114013671875, -0.0160064697265625, 0.0390625, 0.004535675048828125, + -0.01428985595703125, 0.0017824172973632812, -0.01116943359375, -0.0290069580078125, + -0.01325225830078125, 0.0196990966796875, -0.02716064453125, 0.0399169921875, + -0.02459716796875, 0.009857177734375, -0.045196533203125, -0.01520538330078125, + 0.0158843994140625, -0.020050048828125, 0.01001739501953125, -0.0176544189453125, + -0.029693603515625, -0.00975799560546875, -0.006816864013671875, -0.01012420654296875, + 0.02069091796875, 0.005390167236328125, 0.0235748291015625, -0.01084136962890625, + -0.01025390625, -0.0137939453125, -0.00383758544921875, -0.025970458984375, + -0.01363372802734375, 0.073974609375, 0.04150390625, -0.00348663330078125, 0.00262451171875, + 0.0285491943359375, 0.005184173583984375, 0.0055999755859375, 0.00634002685546875, + 0.0221405029296875, 0.007434844970703125, -0.0123138427734375, 0.005168914794921875, + 0.01904296875, -0.0111236572265625, 0.00830078125, 0.0002505779266357422, -0.042388916015625, + -0.00434112548828125, -0.0277862548828125, -0.01477813720703125, 0.01471710205078125, + -0.01934814453125, 0.02874755859375, 0.0144195556640625, -0.00951385498046875, + -0.0692138671875, 0.04779052734375, 0.0221710205078125, 0.02825927734375, + -0.00557708740234375, 0.01433563232421875, -0.0091705322265625, 0.0054779052734375, + -0.0011663436889648438, 0.0164642333984375, 0.006702423095703125, 0.01280975341796875, + -0.0299835205078125, 0.045623779296875, -0.0221099853515625, -0.0255279541015625, + -0.0238800048828125, -0.007110595703125, -0.04888916015625, 0.041656494140625, + -0.0176849365234375, 0.0207672119140625, -0.00933074951171875, 0.0261077880859375, + -0.0101165771484375, -0.00014829635620117188, 0.0256805419921875, 0.0255889892578125, + 0.0014238357543945312, -0.008697509765625, -0.0104522705078125, -0.012603759765625, + 0.0181732177734375, -0.0301513671875, -0.037353515625, 0.003856658935546875, + -0.0143280029296875, -0.00994110107421875, 0.01039886474609375, -0.040435791015625, + -0.01236724853515625, -0.058349609375, -0.021209716796875, 0.018096923828125, + 0.0194549560546875, 0.0208282470703125, -0.007293701171875, 0.00661468505859375, + -0.018035888671875, -0.04052734375, -0.0249481201171875, 0.0163116455078125, 0.02813720703125, + -0.00470733642578125, -0.017791748046875, 0.01070404052734375, -0.01435089111328125, + -0.00888824462890625, 0.0019063949584960938, -0.038360595703125, -0.02069091796875, + -0.016693115234375, 0.0103302001953125, -0.0217742919921875, 0.00858306884765625, + 0.02252197265625, 0.0033416748046875, 0.008270263671875, -0.0257110595703125, + 0.00693511962890625, 0.0109100341796875, 0.01113128662109375, -0.01971435546875, + -0.0212249755859375, -0.0263214111328125, -0.0203399658203125, -0.0205841064453125, + -0.01209259033203125, -0.01044464111328125, -0.0159912109375, 0.0068511962890625, + 0.0020046234130859375, -0.002262115478515625, 0.020843505859375, 0.006290435791015625, + 0.0220947265625, 0.017333984375, 0.01959228515625, -0.0257568359375, 0.007965087890625, + 0.0550537109375, -0.0227203369140625, -0.0220489501953125, -0.002773284912109375, + -0.01409149169921875, 0.0257720947265625, -0.01264190673828125, 0.0276947021484375, + 0.0223846435546875, 0.00641632080078125, 0.062744140625, -0.0056915283203125, + -0.01116943359375, 0.044921875, 0.00992584228515625, -0.0130157470703125, 0.0211181640625, + 0.0018787384033203125, -0.0077362060546875, -0.0029163360595703125, -0.01209259033203125, + -0.0028934478759765625, -0.0379638671875, 0.01309967041015625, -0.026702880859375, + -0.034149169921875, 0.023956298828125, -0.00823211669921875, -0.0229644775390625, + 0.0097808837890625, -0.019561767578125, 0.00617218017578125, 0.004505157470703125, + -0.0028820037841796875, -0.0188446044921875, -0.010162353515625, 0.00806427001953125, + -0.0013866424560546875, 0.0185089111328125, -0.007648468017578125, 0.00556182861328125, + -0.02020263671875, 0.00974273681640625, -0.00745391845703125, -0.0094146728515625, + -0.01049041748046875, -0.012176513671875, -0.0007572174072265625, 0.0009732246398925781, + 0.040985107421875, 0.015167236328125, 0.0023059844970703125, 0.026214599609375, + 0.0047607421875, 0.01134490966796875, 0.00386810302734375, -0.01953125, -0.01337432861328125, + -0.00891876220703125, -0.0537109375, -0.0182342529296875, 0.002529144287109375, + -0.0182037353515625, -0.035247802734375, -0.01392364501953125, -0.048370361328125, + -0.01137542724609375, -0.0121612548828125, 0.0172576904296875, -0.000213623046875, + -0.01427459716796875, 0.0157623291015625, -0.009246826171875, 0.00507354736328125, + -0.016387939453125, 0.0216064453125, 0.0052947998046875, -0.035308837890625, + 0.0039215087890625, 0.012176513671875, -0.015838623046875, -0.05792236328125, + -0.01230621337890625, 0.0250701904296875, -0.03057861328125, -0.004268646240234375, + -0.00705718994140625, -0.01885986328125, 0.01515960693359375, -0.002056121826171875, + 0.01496124267578125, 0.019256591796875, 0.021484375, -0.006130218505859375, + -0.033966064453125, -0.00714874267578125, -0.009674072265625, 0.004673004150390625, + -0.01153564453125, -0.011871337890625, 0.02655029296875, 0.002979278564453125, + 0.0118255615234375, 0.0027179718017578125, -0.0003921985626220703, -0.000720977783203125, + -0.0020351409912109375, -0.02386474609375, -0.034332275390625, 0.016693115234375, + -0.0018768310546875, 0.001735687255859375, -0.0007305145263671875, 0.022064208984375, + 0.021514892578125, -0.00508880615234375, 0.02093505859375, -0.039459228515625, + 0.004154205322265625, -0.0005230903625488281, -0.0134124755859375, -0.0226898193359375, + -0.00382232666015625, 0.007312774658203125, 0.0088653564453125, -0.01016998291015625, + -0.005584716796875, -0.0279541015625, 0.0222015380859375, -0.019805908203125, + -0.0267333984375, 0.0177764892578125, 0.0016155242919921875, 0.0217132568359375, + -0.0323486328125, 0.0419921875, 0.021514892578125, -0.0256805419921875, -0.013427734375, + 0.025146484375, -0.01285552978515625, 0.02484130859375, -0.0185699462890625, + 3.987550735473633e-5, -0.00476837158203125, 0.018035888671875, 0.0292205810546875, + -0.00482940673828125, 0.0183868408203125, 0.0283355712890625, 0.029144287109375, + -0.03216552734375, -0.0148162841796875, -0.0101776123046875, -0.026397705078125, + -0.00217437744140625, 0.025482177734375, -0.03167724609375, -0.017486572265625, + -0.0121002197265625, -0.0170135498046875, 0.01291656494140625, 0.00811004638671875, + 0.031982421875, -0.0234222412109375, -0.0290374755859375, -0.03076171875, -0.012969970703125, + 0.04248046875, 0.009368896484375, -0.034149169921875, 0.00862884521484375, 0.0194091796875, + 0.01366424560546875, -0.018768310546875, 0.00749969482421875, -0.01306915283203125, + -0.013671875, -0.0109405517578125, -0.018402099609375, 0.0184326171875, -0.0087127685546875, + -0.0255584716796875, 0.0163116455078125, 0.0137939453125, -0.01241302490234375, + 0.0117950439453125, 0.013092041015625, 0.00783538818359375, 0.00689697265625, + -0.005710601806640625, 0.0010776519775390625, 0.02294921875, 0.0081024169921875, + 0.0338134765625, 0.0176849365234375, -0.0250396728515625, -0.01763916015625, + -0.05584716796875, 0.0213470458984375, 0.004497528076171875, -0.004913330078125, + 0.0227203369140625, -0.0014410018920898438, 0.0299835205078125, -0.0235443115234375, + 0.03033447265625, -0.0230255126953125, -0.003887176513671875, 0.01507568359375, + 0.019439697265625, -0.006134033203125, 0.017608642578125, -0.00672149658203125, + -0.038665771484375, 0.010101318359375, 0.021942138671875, 0.0008449554443359375, + 0.004802703857421875, -0.004749298095703125, 0.0093231201171875, -0.0201416015625, + 0.040679931640625, -0.0011873245239257812, -0.032928466796875, -0.007442474365234375, + 0.036651611328125, 0.0253753662109375, 0.000301361083984375, -0.00611114501953125, + 0.0159759521484375, 0.05548095703125, 0.040283203125, 0.04608154296875, 0.0029506683349609375, + -0.00439453125, 0.0033473968505859375, 0.002010345458984375, -0.0193939208984375, + -0.0240478515625, -0.024444580078125, 0.04052734375, 0.0135955810546875, -0.0172271728515625, + 0.0206451416015625, -0.00609588623046875, 0.031524658203125, 0.0240325927734375, + 0.018829345703125, -0.03631591796875, -0.0155487060546875, 0.00801849365234375, + 0.01096343994140625, 0.0380859375, 0.004802703857421875, -0.03851318359375, -0.04083251953125, + 0.030548095703125, -0.0213623046875, 0.037750244140625, -0.01068878173828125, + 0.00772857666015625, 0.00591278076171875, -0.0167236328125, -0.0254364013671875, + -0.03466796875, -0.041351318359375, 0.010711669921875, 0.0061798095703125, -0.025848388671875, + 0.01082611083984375, 0.012603759765625, -0.0090484619140625, 0.042388916015625 + ] + }, + { + "tag": "religion", + "description": "a spiritual or faith-based gathering, including worship services, prayer groups, religious holiday observations, scripture study, or interfaith dialogues.", + "embedding": [ + -0.051177978515625, -0.006282806396484375, 0.03857421875, 0.0186004638671875, + -0.05474853515625, 0.00855255126953125, -0.048492431640625, 0.015777587890625, + 0.021331787109375, 0.0056610107421875, 0.0170440673828125, -0.00487518310546875, + -0.021240234375, 0.008331298828125, 0.0225067138671875, 0.05084228515625, + 0.004230499267578125, 0.001712799072265625, 0.04278564453125, 0.0294189453125, + 0.0207977294921875, -0.0200042724609375, -0.0404052734375, 0.06158447265625, + -0.06683349609375, -0.00585174560546875, -0.0019054412841796875, 0.02093505859375, + 0.0133819580078125, 0.0121917724609375, 0.052703857421875, -0.0240936279296875, + 0.030364990234375, -0.0253753662109375, -0.0039520263671875, 0.039337158203125, + -0.02215576171875, -0.003215789794921875, 0.015869140625, -0.0228729248046875, + -0.0188140869140625, -0.034454345703125, 0.0023403167724609375, 0.051116943359375, + 0.0134124755859375, -0.0191650390625, -0.032745361328125, -0.03839111328125, + 0.0225982666015625, 0.0011548995971679688, -0.0638427734375, -0.03985595703125, + 0.004970550537109375, 0.065185546875, -0.007091522216796875, -0.048187255859375, + -0.01776123046875, 0.0251922607421875, -0.0386962890625, 0.028533935546875, 0.034393310546875, + 0.0180511474609375, 0.06689453125, 0.0009851455688476562, 0.0290069580078125, + 0.0173797607421875, 0.051849365234375, 0.028961181640625, -0.00838470458984375, + 0.037994384765625, 0.0258636474609375, 0.033172607421875, -0.03411865234375, 0.012451171875, + 0.03155517578125, 0.07501220703125, 0.0010881423950195312, -0.027801513671875, + -0.0309295654296875, 0.0195159912109375, 0.0592041015625, -0.01154327392578125, + -0.024932861328125, -0.022796630859375, 0.0196533203125, -0.033660888671875, + -0.0116729736328125, 0.03533935546875, -0.0124664306640625, 0.07281494140625, 0.0408935546875, + -0.025360107421875, -0.007671356201171875, 0.043365478515625, 0.023681640625, + -0.06463623046875, 0.029815673828125, -0.039337158203125, 0.0002911090850830078, + 0.03369140625, 0.038604736328125, -0.04864501953125, -0.01800537109375, + -0.0009446144104003906, -0.002887725830078125, 0.004535675048828125, -0.03192138671875, + -0.0792236328125, -0.002597808837890625, -0.001667022705078125, -0.064453125, + -0.0266265869140625, -0.035003662109375, 0.0261077880859375, 0.004703521728515625, + -0.042327880859375, 0.023406982421875, -0.0310211181640625, 0.01568603515625, + 0.03448486328125, 0.01483154296875, 0.028228759765625, 0.06024169921875, 0.00991058349609375, + 0.0222015380859375, -0.0284881591796875, -0.01174163818359375, 0.027618408203125, + 0.01104736328125, -0.01312255859375, 0.018768310546875, 0.0144500732421875, 0.016357421875, + -0.06549072265625, 0.01513671875, -0.046966552734375, -0.040985107421875, 0.039703369140625, + -0.04443359375, -0.01442718505859375, 0.0189056396484375, -0.0169219970703125, 0.03515625, + 0.02587890625, 0.062469482421875, -0.038055419921875, -0.009979248046875, -0.0156402587890625, + -0.0313720703125, -0.039703369140625, -0.055389404296875, 0.00533294677734375, + -0.0095062255859375, 0.06524658203125, 0.01171875, 0.006465911865234375, -0.02801513671875, + -1.1444091796875e-5, -0.006916046142578125, 0.036468505859375, -0.0173187255859375, + -0.014862060546875, -0.0125579833984375, -0.0019779205322265625, -0.018890380859375, + -0.02362060546875, -0.0009241104125976562, 0.00795745849609375, -0.039031982421875, + 0.02850341796875, -0.046875, 0.00435638427734375, -0.03472900390625, 0.06280517578125, + -0.018768310546875, -0.01081085205078125, 0.0278778076171875, 0.042999267578125, + 0.0081329345703125, 0.0311431884765625, 0.020782470703125, 0.007415771484375, + -0.06866455078125, -0.01251983642578125, 0.036468505859375, 0.0185089111328125, + 0.0051422119140625, 0.02685546875, 0.01261138916015625, -0.0224456787109375, + -0.0106964111328125, 0.0169219970703125, 0.04754638671875, 0.0009546279907226562, + 0.053924560546875, -0.025177001953125, -0.016265869140625, 0.00728607177734375, + -0.004268646240234375, 0.048370361328125, -0.01515960693359375, -0.01020050048828125, + 0.009124755859375, -0.024932861328125, -0.0231781005859375, -0.0168914794921875, + 0.0225372314453125, -0.02703857421875, 0.032470703125, -0.015716552734375, 0.011077880859375, + -0.006816864013671875, 0.0016374588012695312, -0.0284881591796875, 0.0068206787109375, + 0.01043701171875, -0.009429931640625, 0.00887298583984375, -0.032989501953125, + 0.036773681640625, 0.018310546875, -0.004901885986328125, 0.03375244140625, 0.07147216796875, + 0.005496978759765625, -0.00942230224609375, -0.0103759765625, 0.00881195068359375, + 0.01251983642578125, -0.0009179115295410156, -0.0175018310546875, -0.0183868408203125, + -0.060272216796875, 0.01177215576171875, 0.017852783203125, 0.007289886474609375, + -0.0386962890625, 0.00815582275390625, -0.00103759765625, -0.05633544921875, + 0.0172882080078125, -0.01378631591796875, 0.0219879150390625, 0.00017261505126953125, + -0.0007152557373046875, -0.002063751220703125, -0.01111602783203125, -0.0333251953125, + 0.0283050537109375, 0.042236328125, -0.007389068603515625, 0.0015420913696289062, + -0.08154296875, -0.006298065185546875, 0.00568389892578125, -0.00847625732421875, + 0.0230255126953125, 0.006992340087890625, 0.0071563720703125, -0.009735107421875, + -0.0296478271484375, 0.01067352294921875, 0.0269622802734375, 0.0018949508666992188, + -0.036865234375, -0.015777587890625, -0.0169219970703125, -0.00647735595703125, + -0.005779266357421875, -0.01195526123046875, 0.00901031494140625, 0.00510406494140625, + -0.01727294921875, -0.02294921875, 0.0255584716796875, -0.046173095703125, + -0.004108428955078125, 0.01103973388671875, 0.058837890625, 0.006504058837890625, + -0.02020263671875, -0.0007882118225097656, 0.038421630859375, -0.015625, + 0.0025997161865234375, 0.0261077880859375, 0.05963134765625, -0.0626220703125, + -0.040069580078125, 0.00499725341796875, -0.032623291015625, -0.015625, -0.020050048828125, + 0.03631591796875, 0.032623291015625, -0.005840301513671875, 0.054107666015625, + 0.0246124267578125, 0.060882568359375, 0.03302001953125, -0.0240478515625, + -0.0014801025390625, -0.033721923828125, 0.0197296142578125, -0.042694091796875, + 0.022308349609375, -0.045196533203125, -0.014617919921875, 0.06982421875, -0.0205230712890625, + 0.023345947265625, 0.0194244384765625, -0.02410888671875, 0.04547119140625, + -0.028411865234375, 0.004856109619140625, -0.023956298828125, 0.1275634765625, + 0.0198211669921875, -0.0234527587890625, -0.0012636184692382812, -0.0123748779296875, + 0.05401611328125, -0.023956298828125, 0.0394287109375, -0.03045654296875, -0.01434326171875, + -0.01244354248046875, -0.057952880859375, -0.02056884765625, -0.00589752197265625, + -0.02569580078125, 0.0092620849609375, 0.0845947265625, 0.0313720703125, 0.00890350341796875, + 0.059326171875, -0.004001617431640625, 0.0413818359375, -0.01163482666015625, + -0.023345947265625, -0.010894775390625, -0.054534912109375, 0.006900787353515625, + -0.01247406005859375, 0.00826263427734375, -0.038604736328125, 0.00849151611328125, + 0.0242767333984375, 0.0399169921875, 0.025970458984375, 0.006069183349609375, + -0.0244293212890625, -0.0283660888671875, -0.00873565673828125, -0.0157470703125, + 0.0234527587890625, 0.000621795654296875, -0.0127105712890625, 0.038909912109375, + -0.01544189453125, -0.01128387451171875, 0.0229949951171875, -0.023040771484375, + -0.0250701904296875, 0.03564453125, -0.063720703125, 0.0275726318359375, + -0.0020694732666015625, -0.049072265625, 0.013702392578125, -0.0269927978515625, + 0.0240020751953125, 0.00324249267578125, -0.04302978515625, 0.044464111328125, + 0.00429534912109375, 0.0217742919921875, -0.00919342041015625, 0.02203369140625, + -0.0298919677734375, -0.020721435546875, -0.01064300537109375, -0.00695037841796875, + 0.014007568359375, 0.042205810546875, -0.0258331298828125, 0.042236328125, + -0.0233612060546875, 0.0445556640625, 0.030181884765625, 0.018402099609375, + 0.01216888427734375, -0.007411956787109375, -0.03814697265625, 0.006805419921875, + 0.00659942626953125, 0.03021240234375, 0.0027217864990234375, 0.0264739990234375, + 0.004428863525390625, -0.012542724609375, -0.01457977294921875, -0.0014257431030273438, + 0.016632080078125, 0.003787994384765625, 0.005687713623046875, -0.006809234619140625, + -0.0174560546875, -0.032012939453125, -0.005168914794921875, -0.03973388671875, 0.03173828125, + -0.0167694091796875, -0.04107666015625, 0.0141754150390625, -0.0550537109375, + -0.01422119140625, -0.01326751708984375, 0.03558349609375, 0.039031982421875, + -0.019500732421875, -0.033111572265625, -0.0127716064453125, 0.035675048828125, + 0.03302001953125, 0.036224365234375, -0.029296875, 0.002223968505859375, -0.0212249755859375, + 0.0057830810546875, 0.02020263671875, 0.037445068359375, -0.0136566162109375, + -0.006153106689453125, -0.035003662109375, -0.00452423095703125, 0.003726959228515625, + 0.0024776458740234375, 0.021728515625, -0.07928466796875, 0.006175994873046875, + 0.024322509765625, -0.0225830078125, -0.01532745361328125, 0.005863189697265625, + -0.019439697265625, -0.0264434814453125, -0.0117645263671875, -0.07452392578125, + -0.02691650390625, -0.0014896392822265625, 0.028533935546875, 0.00733184814453125, + 0.01776123046875, -0.03497314453125, -0.04803466796875, -0.001956939697265625, + 0.05084228515625, -0.06707763671875, 0.0533447265625, 0.0041656494140625, 0.043731689453125, + 0.01070404052734375, 0.06585693359375, -0.0041046142578125, 0.0119171142578125, + 0.00894927978515625, -0.03765869140625, -7.021427154541016e-5, -0.00021851062774658203, + 0.04461669921875, -0.00215911865234375, 0.0294647216796875, -0.03619384765625, + 0.0015916824340820312, 0.0498046875, -0.046875, 0.00414276123046875, 0.0305023193359375, + 0.009033203125, -0.01026153564453125, 4.607439041137695e-5, -0.00623321533203125, + 0.038421630859375, 0.00441741943359375, 0.0163726806640625, -0.0028438568115234375, + 0.011016845703125, 0.00550079345703125, 0.0180206298828125, -0.01141357421875, + -0.0186767578125, -0.00960540771484375, 0.007099151611328125, -0.01021575927734375, + -0.041351318359375, -0.00812530517578125, 0.007663726806640625, -0.01349639892578125, + -0.0305023193359375, 0.0246734619140625, -0.061553955078125, -0.02923583984375, + 0.0121002197265625, 0.0645751953125, -0.034637451171875, -0.0259246826171875, + 0.00286865234375, 0.003871917724609375, 0.0228118896484375, -0.01422882080078125, + 0.0169219970703125, 0.0150909423828125, 0.020233154296875, -0.0022869110107421875, + -0.0228118896484375, 0.0182952880859375, -0.015411376953125, 0.0067596435546875, + -0.01074981689453125, 0.037109375, -0.0300750732421875, -0.00963592529296875, + 0.042266845703125, -0.01448822021484375, -0.019256591796875, -0.052215576171875, + 0.01462554931640625, -0.06292724609375, -0.036407470703125, 0.059051513671875, + -0.008880615234375, -0.014556884765625, 0.0310516357421875, 0.0133056640625, -0.0457763671875, + 0.015106201171875, 0.016357421875, -0.03436279296875, -0.006549835205078125, 0.01409912109375, + -0.01226806640625, -0.0038318634033203125, 0.005321502685546875, 0.01123809814453125, + -0.0265350341796875, -0.0157470703125, -0.03240966796875, 0.004638671875, 0.016326904296875, + -0.0335693359375, 0.01326751708984375, -0.0242462158203125, 0.01229095458984375, + -0.0053558349609375, 0.0408935546875, -0.0265655517578125, 0.0017986297607421875, + -0.004474639892578125, -0.0172119140625, -0.0273590087890625, -0.00844573974609375, + -0.0253753662109375, -0.055328369140625, -0.007610321044921875, 0.006679534912109375, + 0.021453857421875, -0.0212249755859375, 0.00951385498046875, 0.0172271728515625, + 0.034637451171875, -0.0281524658203125, -0.005153656005859375, -0.00977325439453125, + -0.02154541015625, -0.0189361572265625, 0.002262115478515625, -0.0006842613220214844, + -0.0265655517578125, -0.0105743408203125, -0.016815185546875, -0.031829833984375, + -0.026214599609375, -0.02423095703125, 0.0175933837890625, 0.026336669921875, + 0.00467681884765625, 0.048004150390625, -0.0235748291015625, 0.006481170654296875, + 0.0148468017578125, 0.00812530517578125, -0.0288543701171875, 0.0740966796875, + 0.0204010009765625, -0.0178070068359375, 0.0138092041015625, -0.024017333984375, + 0.025970458984375, -0.01209259033203125, -0.023773193359375, -0.02960205078125, + -0.00897216796875, 0.003276824951171875, -0.027374267578125, -0.0271759033203125, + -0.043548583984375, -0.0212860107421875, -0.008758544921875, 6.508827209472656e-5, + -0.02117919921875, 0.040771484375, -0.01035308837890625, 0.003204345703125, 0.015655517578125, + 0.0018768310546875, -0.006320953369140625, 0.020660400390625, -0.001705169677734375, + -0.03729248046875, 0.018096923828125, 0.05523681640625, 0.0128021240234375, + 0.01413726806640625, 0.032684326171875, -0.04681396484375, -0.0174407958984375, + 0.003101348876953125, -0.003620147705078125, -0.020660400390625, 0.0240020751953125, + 0.006900787353515625, -0.0216522216796875, -0.024993896484375, -0.0157928466796875, + -0.02099609375, -0.019927978515625, -0.0286407470703125, 0.018890380859375, 0.030548095703125, + -0.0244903564453125, 0.0039215087890625, -0.049163818359375, 0.0501708984375, + 0.0244293212890625, 0.005649566650390625, -0.0138702392578125, 0.0091705322265625, + -0.0272216796875, 0.0154571533203125, 0.017059326171875, 0.0033740997314453125, + 0.057647705078125, 0.0216064453125, -0.0122833251953125, -0.0318603515625, + -0.0017309188842773438, 0.0079193115234375, -0.01027679443359375, 0.005992889404296875, + 0.0097503662109375, 0.006072998046875, 0.0141754150390625, 0.005519866943359375, + 0.0592041015625, -0.00882720947265625, -0.0026302337646484375, -0.004528045654296875, + -0.0035495758056640625, -0.008941650390625, -0.0096282958984375, 0.01525115966796875, + 0.01168060302734375, -0.0083770751953125, -0.01229095458984375, -0.00982666015625, + -0.0155487060546875, 0.019439697265625, -0.00806427001953125, -0.0233154296875, + -0.01580810546875, 0.0005116462707519531, 0.004306793212890625, 0.004608154296875, + -0.0183258056640625, 0.05706787109375, 0.008544921875, 0.0017042160034179688, + 0.00814056396484375, 0.0015668869018554688, -0.01971435546875, 0.0259857177734375, + 0.0089263916015625, -0.0178070068359375, -0.00209808349609375, -0.00830078125, + -0.013702392578125, -0.028533935546875, -0.04925537109375, 0.0178070068359375, + 0.0182647705078125, 0.018951416015625, -0.05902099609375, -0.003276824951171875, + -0.01068115234375, 0.022003173828125, -0.00630950927734375, -0.006927490234375, + -0.0538330078125, -0.03753662109375, -0.0107421875, -0.027130126953125, 0.01194000244140625, + -0.0426025390625, -0.0175323486328125, 0.01308441162109375, -0.00821685791015625, + -0.0140838623046875, 0.032867431640625, -0.007007598876953125, -0.012847900390625, + -0.0350341796875, -0.0190582275390625, -0.0167388916015625, 0.0244293212890625, + 0.00983428955078125, 0.01279449462890625, -0.0097808837890625, -0.0087890625, + 0.01502227783203125, 0.04376220703125, -0.0013055801391601562, -0.033294677734375, + -0.02850341796875, 0.004703521728515625, 0.01904296875, -0.0053863525390625, -0.0506591796875, + 0.0019063949584960938, 0.03857421875, 0.0104217529296875, -0.0112152099609375, + 0.02325439453125, -0.0261077880859375, -0.034698486328125, 0.0263519287109375, + 0.018768310546875, -0.006504058837890625, -0.01163482666015625, 0.0225067138671875, + 0.006153106689453125, -0.012847900390625, 0.038665771484375, 0.005420684814453125, + -0.0005412101745605469, -0.0313720703125, 0.0189971923828125, 0.01050567626953125, + -0.0160064697265625, 0.00543975830078125, -0.02630615234375, 0.037841796875, + 0.035430908203125, 0.006256103515625, 0.0400390625, -0.0245208740234375, -0.03143310546875, + -0.0206451416015625, 0.0005178451538085938, 0.022247314453125, 0.01457977294921875, + -0.02703857421875, 0.003177642822265625, -0.00933837890625, -0.0184783935546875, + -0.0784912109375, 0.0254058837890625, -0.007602691650390625, 0.002506256103515625, + 0.005008697509765625, -0.021392822265625, 0.016876220703125, 0.04486083984375, + -0.0280609130859375, 0.01508331298828125, -0.003574371337890625, -0.0121917724609375, + -0.00988006591796875, -0.050384521484375, 0.001995086669921875, 0.01546478271484375, + -0.00699615478515625, -0.0394287109375, -0.006015777587890625, -0.04595947265625, + 0.0003097057342529297, -0.033233642578125, 0.05145263671875, 0.0090179443359375, + -0.0016584396362304688, -0.004306793212890625, 0.002197265625, 0.007038116455078125, + 0.0299072265625, 0.0261688232421875, -0.031005859375, -0.001384735107421875, + 0.0281219482421875, -0.0187225341796875, 0.0214996337890625, 0.01442718505859375, + -0.0203094482421875, -0.020660400390625, 0.0019855499267578125, -0.05047607421875, + 0.0328369140625, 0.02178955078125, 0.0030002593994140625, -0.0026988983154296875, 0.060546875, + -0.032928466796875, 0.052215576171875, -0.01081085205078125, -0.01137542724609375, + 0.036590576171875, 0.0107269287109375, 0.0094757080078125, -0.01238250732421875, + -0.0198211669921875, 0.023590087890625, -0.02911376953125, 0.01204681396484375, + -0.01158905029296875, 0.0031223297119140625, -0.00963592529296875, 0.0013322830200195312, + -0.005245208740234375, -0.021942138671875, -0.0092926025390625, 0.0212554931640625, + 0.0015821456909179688, 0.042633056640625, -0.0233612060546875, 0.031707763671875, + 0.01204681396484375, 0.01525115966796875, 0.0111236572265625, -0.013916015625, 0.031982421875, + -0.00019931793212890625, -0.008270263671875, 0.0518798828125, 0.0045318603515625, + -0.0399169921875, 0.0170135498046875, -0.006793975830078125, -0.03106689453125, + 0.003818511962890625, 0.004375457763671875, 0.007579803466796875, -0.014129638671875, + -0.01007843017578125, 0.01513671875, -0.0020694732666015625, -0.0199127197265625, + 0.0115203857421875, 0.0260162353515625, -0.01200103759765625, -0.0318603515625, + 0.021759033203125, -0.01445770263671875, 0.00553131103515625, -0.0014715194702148438, + 0.005035400390625, 0.0008630752563476562, -0.014404296875, 0.016021728515625, + 0.01371002197265625, -0.0140380859375, 0.035003662109375, 0.026397705078125, -0.00439453125, + -0.003566741943359375, -0.034027099609375, -0.026763916015625, 0.01291656494140625, + -0.0176239013671875, 0.00457000732421875, 0.0169219970703125, -0.01727294921875, + 0.017333984375, 0.0055084228515625, -0.058380126953125, -0.0285797119140625, + -0.04071044921875, -0.023040771484375, -0.01557159423828125, 0.005954742431640625, + -0.00835418701171875, -0.0162506103515625, 0.01174163818359375, -0.031524658203125, + -0.03851318359375, -0.009735107421875, 0.02349853515625, -0.05194091796875, + 0.0216827392578125, -0.03387451171875, -0.0253143310546875, -0.045867919921875, + -0.011749267578125, -0.042724609375, 0.02069091796875, 0.002960205078125, + -0.0028285980224609375, -0.0205535888671875, -0.0189361572265625, 0.0101318359375, + 0.01233673095703125, -0.00848388671875, 0.01200103759765625, 0.0041656494140625, + -0.039215087890625, 0.018280029296875, -0.00897979736328125, 0.0516357421875, + -0.005306243896484375, 0.0205078125, -0.0038928985595703125, 0.0007848739624023438, + 0.01105499267578125, 0.017974853515625, 0.0152587890625, 0.049957275390625, -0.03631591796875, + -0.0023517608642578125, -0.01142120361328125, -0.00030517578125, 0.0341796875, + -0.01094818115234375, -0.0252685546875, -0.0020236968994140625, -0.0187835693359375, + -0.01029205322265625, -0.01776123046875, -0.0273590087890625, 0.01531982421875, + -0.0364990234375, 0.006748199462890625, -0.030364990234375, 0.0011510848999023438, + 0.050567626953125, -0.02532958984375, -0.0181884765625, -0.039642333984375, + 0.0295562744140625, 0.0021209716796875, 0.01488494873046875, 0.01061248779296875, + -0.01313018798828125, -0.006259918212890625, -0.00624847412109375, -0.02801513671875, + 0.0124969482421875, 0.00821685791015625, -0.024383544921875, -0.042236328125, + 0.01213836669921875, 0.0116729736328125, -0.0081329345703125, -0.000652313232421875, + 0.031463623046875, 0.01544189453125, 0.0093841552734375, -0.0222320556640625, + 0.049163818359375, 0.00047898292541503906, 0.0227203369140625, -0.00786590576171875, + -0.0116119384765625, 0.06695556640625, 0.0193328857421875, 0.0038013458251953125, + -0.0012912750244140625, 0.01074981689453125, -0.0245361328125, 0.006683349609375, + 0.03228759765625, -0.01032257080078125, -0.0020160675048828125, -0.03912353515625, + -0.0019445419311523438, 0.0027408599853515625, 0.0266876220703125, 0.01331329345703125, + 0.014404296875, -0.0290069580078125, 0.00492095947265625, -0.041046142578125, + -0.04107666015625, -0.0004343986511230469, -0.01221466064453125, 0.0261993408203125, + 0.006256103515625, -0.02886962890625, 0.0269012451171875, -0.0004825592041015625, + -0.017730712890625, -0.01512908935546875, 0.0309600830078125, 0.01529693603515625, + 0.0277557373046875, -0.01189422607421875, -0.0240020751953125, -0.0255889892578125, + 0.0268096923828125, 0.01776123046875, -0.00508880615234375, -0.00992584228515625, + 0.002109527587890625, 0.007659912109375, -0.00457000732421875, -0.0164337158203125, + -0.0180816650390625, -0.0305023193359375, 0.00878143310546875, 0.0310516357421875, + -0.045928955078125, 0.01015472412109375, -0.006938934326171875, 0.03887939453125, + 0.018951416015625, -0.021820068359375, 0.0091094970703125, 0.00342559814453125, + 0.0131072998046875, 0.0291900634765625, -0.00011152029037475586, 0.0294342041015625, + -0.02947998046875, -0.0002589225769042969, -0.01235198974609375, 0.0026874542236328125, + 0.004825592041015625, 0.022796630859375, 0.046356201171875, 0.011505126953125, + 0.0137176513671875, -0.0131988525390625, -0.020660400390625, -0.01114654541015625, + -0.006134033203125, -0.0313720703125, 0.0052337646484375, -0.039276123046875, -0.02490234375, + -0.01080322265625, 0.0066680908203125, -0.038909912109375, 0.01148223876953125, + -0.016754150390625, 0.0401611328125, -0.005313873291015625, -0.029327392578125, + -0.01102447509765625, 0.0015096664428710938, -0.0169830322265625, 0.010467529296875, + 0.037261962890625, -0.002170562744140625, 0.013031005859375, -0.01212310791015625, + -0.020751953125, 0.01207733154296875, -0.028778076171875, 0.0289459228515625, + -0.0230865478515625, 0.0233154296875, -0.004634857177734375, 0.0335693359375, 0.0191650390625, + 0.025726318359375, -0.00301361083984375, 0.0024700164794921875, -0.00768280029296875, + 0.03533935546875, -0.040374755859375, 0.020751953125, -0.00965118408203125, + -0.032806396484375, 0.002979278564453125, -0.01361846923828125, -0.0177764892578125, + -0.0286407470703125, -0.0259857177734375, 0.04931640625, 0.0125885009765625, + 0.0115814208984375, -0.026611328125, -0.0335693359375, 0.0012197494506835938, + 0.02349853515625, -0.0205841064453125, 0.00959014892578125, -0.01305389404296875, + -0.0137786865234375, -0.013458251953125, 0.0223846435546875, 0.034576416015625, + 0.01275634765625, 0.00705718994140625, 0.018218994140625, -0.01367950439453125, + -0.0173492431640625, 0.01331329345703125, 0.01148223876953125, -0.0178070068359375, + -0.00208282470703125, 0.004863739013671875, -0.016143798828125, -0.0484619140625, + -0.0193634033203125, 0.022125244140625, -0.01358795166015625, 0.0130615234375, + 0.029510498046875, 0.00896453857421875, 0.0207366943359375, -0.00580596923828125, + -0.0005826950073242188, -0.00403594970703125, 0.0213623046875, -0.007442474365234375, + -0.01751708984375, 0.029052734375, 0.03192138671875, -0.010223388671875, + -0.0009427070617675781, 0.00984954833984375, 0.0196990966796875, 0.00734710693359375, + -0.039215087890625, 0.026580810546875, -0.03045654296875, 0.0153961181640625, + -0.0192108154296875, 0.0703125, 0.007717132568359375, -0.0236968994140625, + 0.01560211181640625, 0.0169830322265625, -0.007244110107421875, 0.00505828857421875, + 0.00461578369140625, -0.004425048828125, -0.018707275390625, -0.03948974609375, + 0.004058837890625, 0.00896453857421875, 0.0009098052978515625, -0.028350830078125, + 0.01418304443359375, -0.03826904296875, -0.00791168212890625, 0.005519866943359375, + -0.01983642578125, 0.03729248046875, -0.004299163818359375, 0.035125732421875, + 0.0118865966796875, -0.00782012939453125, -0.057647705078125, 0.006305694580078125, + 0.006916046142578125, 0.023406982421875, 0.034423828125, 0.0160980224609375, + 0.00965118408203125, -0.03887939453125, -0.005321502685546875, 0.037139892578125, + -0.03887939453125, -0.019256591796875, -0.037384033203125, 0.0283660888671875, + -0.053131103515625, 0.0012941360473632812, -0.019866943359375, 0.0176239013671875, + 0.0008769035339355469, 0.0098876953125, 0.01416015625, -0.0011758804321289062, + 0.0178070068359375, -0.0125732421875, 0.0307464599609375, -0.0080108642578125, + 0.005611419677734375, 0.00785064697265625, 0.022674560546875, -0.01551055908203125, + -0.034088134765625, 0.021240234375, 0.005096435546875, 0.0272216796875, 0.00176239013671875, + -0.021820068359375, 0.0082244873046875, 0.020660400390625, 0.007251739501953125, + -0.00858306884765625, -0.0576171875, -0.0258331298828125, 0.00936126708984375, + -0.005847930908203125, -0.007015228271484375, 0.0175933837890625, 0.00457000732421875, + -0.000720977783203125, 0.008819580078125, -0.0322265625, -0.033294677734375, + 0.0006489753723144531, 0.01678466796875, -0.020294189453125, -0.034332275390625, + 0.00565338134765625, 0.007843017578125, 0.0166015625, -0.0015201568603515625, + -0.02374267578125, -0.02044677734375, -0.0036945343017578125, -0.007266998291015625, + 0.011871337890625, 0.0180816650390625, 0.00750732421875, 0.00684356689453125, + -0.006572723388671875, 0.041107177734375, 0.017578125, -0.0172271728515625, + -0.01387786865234375, -0.04449462890625, -0.024200439453125, -0.01511383056640625, + 0.0001684427261352539, -0.00865936279296875, -0.00046443939208984375, -0.011566162109375, + 0.0304107666015625, -0.0247650146484375, 0.00402069091796875, 0.01042938232421875, + -0.041473388671875, -0.012359619140625, 0.0015535354614257812, 0.0243682861328125, + -0.0090179443359375, -0.0196075439453125, -0.013702392578125, 0.033660888671875, + 0.0048065185546875, 0.0029964447021484375, -0.0178375244140625, 0.006717681884765625, + 0.02532958984375, -0.0012912750244140625, 0.024993896484375, -0.00609588623046875, + 0.004947662353515625, 0.043975830078125, 0.004978179931640625, 0.004154205322265625, + 0.037109375, -0.009765625, -0.01029205322265625, 0.0189056396484375, 0.0262451171875, + -0.01413726806640625, 0.0159912109375, 0.0013484954833984375, 0.0267333984375, + 0.00846099853515625, 0.02783203125, 0.015777587890625, -0.0177154541015625, 0.0484619140625, + -0.003170013427734375, -0.033233642578125, 0.028961181640625, -0.02252197265625, + -0.01092529296875, -0.00909423828125, -0.0263824462890625, 0.00969696044921875, + -0.05670166015625, -0.0186767578125, -0.0234832763671875, 0.046783447265625, + -0.00016951560974121094, 0.0230255126953125, 0.0033473968505859375, -0.00865936279296875, + -0.031097412109375, 0.029510498046875, -0.01004791259765625, 0.03875732421875, + -0.0086822509765625, 0.0180816650390625, 0.0157012939453125, 0.01319122314453125, + 0.0118408203125, -0.01413726806640625, 0.029327392578125, 0.02752685546875, 0.04302978515625, + -0.0252685546875, -0.044677734375, -0.048583984375, -0.012847900390625, -0.0374755859375, + -0.029022216796875, 0.003841400146484375, -0.004047393798828125, -0.00276947021484375, + -0.01081085205078125, -0.0025043487548828125, -0.0091552734375, 0.0301666259765625, + -0.005786895751953125, -0.006069183349609375, 0.0119171142578125, -0.01003265380859375, + 0.00453948974609375, -0.01776123046875, 0.0052490234375, -0.0016994476318359375, + -0.0194549560546875, -0.0107421875, -0.0031223297119140625, 0.0277099609375, + 0.0009055137634277344, -0.034637451171875, -0.0014219284057617188, -0.0258636474609375, + -0.0227813720703125, -0.01389312744140625, -0.0184783935546875, 0.0199127197265625, + 0.0010852813720703125, -0.02972412109375, -0.0029010772705078125, 0.0239105224609375, + -0.0026111602783203125, 0.04095458984375, 0.00949859619140625, -0.0219268798828125, + 0.0167388916015625, -0.00439453125, -0.0012121200561523438, 0.01102447509765625, + 0.005523681640625, 0.041961669921875, -0.004901885986328125, 0.0206298828125, + 0.01447296142578125, 0.0009760856628417969, -0.035125732421875, -0.054443359375, + -0.004322052001953125, 0.0013742446899414062, -0.02606201171875, 0.0202178955078125, + -0.0153656005859375, -0.01209259033203125, -0.00569915771484375, -0.0103759765625, + -0.0067596435546875, 0.00849151611328125, -0.03802490234375, -0.023162841796875, + -0.0323486328125, 0.039154052734375, -0.02911376953125, 0.01251220703125, 0.035736083984375, + -0.02642822265625, -0.0030841827392578125, -0.001056671142578125, -0.00286102294921875, + 0.0268707275390625, 0.0019464492797851562, 0.02801513671875, -0.008056640625, + -0.01552581787109375, -0.011260986328125, 0.01024627685546875, 0.0001659393310546875, + -0.032623291015625, 0.0009341239929199219, 0.0025615692138671875, -0.002353668212890625, + -0.007610321044921875, 0.00490570068359375, -0.01213836669921875, 0.0232696533203125, + 0.02508544921875, -0.0232696533203125, 0.0097198486328125, 0.0038700103759765625, + -0.0188140869140625, -0.0264739990234375, -0.0223236083984375, 0.007411956787109375, + 0.0027980804443359375, 0.01259613037109375, 0.00591278076171875, -0.04522705078125, + -0.0153045654296875, -0.01348114013671875, -0.005687713623046875, 0.027740478515625, + 0.00991058349609375, 0.044586181640625, 0.018218994140625, -0.0151824951171875, + 0.034637451171875, -0.0109100341796875, 0.01190948486328125, 0.0108184814453125, + 0.0171661376953125, -0.00470733642578125, -0.01385498046875, -0.0018739700317382812, + -0.0225067138671875, 0.0051727294921875, 0.030303955078125, -0.021942138671875, + -0.0113525390625, 0.013214111328125, 0.0181732177734375, 0.0170135498046875, + -0.010345458984375, 0.01068115234375, 0.02581787109375, 0.01837158203125, -0.061309814453125, + -0.00051116943359375, 0.0135650634765625, -0.00255584716796875, 0.05596923828125, + 0.0185699462890625, 0.00563812255859375, 0.0119171142578125, -0.005947113037109375, + 0.0003695487976074219, -0.023956298828125, -0.019683837890625, -0.0232696533203125, + -0.00414276123046875, -0.005718231201171875, -0.0003063678741455078, 0.0273590087890625, + -0.027435302734375, 0.01824951171875, -0.025726318359375, 0.024444580078125, + -0.00801849365234375, -0.0175018310546875, 0.012115478515625, 0.01380157470703125, + -0.033050537109375, -0.03070068359375, 0.0047607421875, -0.00574493408203125, + -0.01389312744140625, 0.0008087158203125, -0.04962158203125, 0.009063720703125, + -0.0028171539306640625, -0.006565093994140625, -0.0247955322265625, 0.0184326171875, + -0.034454345703125, -0.017852783203125, -0.004703521728515625, -0.01019287109375, + 0.015716552734375, -0.01389312744140625, -0.0194244384765625, 0.0307769775390625, + -0.0024394989013671875, 0.0279693603515625, 0.0204010009765625, 0.039337158203125, + -0.00421905517578125, -0.01459503173828125, 0.037353515625, 0.0118255615234375, + -0.0162353515625, -0.047943115234375, 0.0263519287109375, 0.018768310546875, + 0.0091094970703125, 0.026336669921875, 0.0139617919921875, 0.0192718505859375, + -0.01354217529296875, 0.0189666748046875, 0.0201416015625, 0.0078582763671875, + 0.0196075439453125, -0.0199127197265625, 0.001995086669921875, 0.04730224609375, + -0.01511383056640625, -0.038116455078125, -0.00933837890625, -0.0318603515625, + -0.003871917724609375, -0.0032405853271484375, 0.01251983642578125, 0.022308349609375, + -0.0193634033203125, -0.01340484619140625, 9.483098983764648e-5, -0.037384033203125, + 0.02691650390625, 0.0228271484375, 0.0158538818359375, -0.01506805419921875, + -0.002025604248046875, -0.040985107421875, 0.006664276123046875 + ] + }, + { + "tag": "sustainability", + "description": "an environmental event focused on climate action, ecology, and green initiatives, including conservation volunteering, campus garden workdays, discussions on renewable energy, environmental policy panels, and campus zero-waste, thrifting, or recycling initiatives", + "embedding": [ + -0.0034122467041015625, 0.0357666015625, 0.0562744140625, 0.047637939453125, + -0.0028705596923828125, -0.0121612548828125, 0.03594970703125, 0.00728607177734375, + 0.0163116455078125, 0.032623291015625, 0.00841522216796875, 0.01540374755859375, + -0.041961669921875, -0.01152801513671875, 0.024139404296875, 0.05474853515625, + -0.019805908203125, -0.01727294921875, -0.0161590576171875, 0.061920166015625, + 0.023406982421875, 0.01016998291015625, 0.0115509033203125, 0.0548095703125, + -0.039947509765625, 0.0036830902099609375, 0.0184173583984375, 0.0634765625, 0.06134033203125, + -0.0014009475708007812, 0.034698486328125, -0.0167236328125, -0.006862640380859375, + -0.025665283203125, 0.00014865398406982422, 0.011566162109375, -0.0149383544921875, + -0.04376220703125, -0.0012454986572265625, 0.01355743408203125, -0.0193328857421875, + -0.0264739990234375, -0.003993988037109375, 0.0185699462890625, -0.0034389495849609375, + -0.0275115966796875, -0.019287109375, 0.0023365020751953125, 0.03125, 0.03173828125, + 0.0165557861328125, -0.04241943359375, 0.06268310546875, -0.015350341796875, -0.0382080078125, + -0.02056884765625, -0.007160186767578125, 0.014923095703125, -0.037445068359375, + 0.037353515625, 0.041290283203125, 0.02362060546875, 0.01132965087890625, 0.0443115234375, + 0.0129241943359375, 0.0186309814453125, 0.06689453125, 0.036163330078125, -0.0230865478515625, + 0.00797271728515625, 0.0238189697265625, 0.01142120361328125, -0.025726318359375, + -0.041412353515625, 0.049041748046875, 0.043731689453125, 0.01004791259765625, + -0.00478363037109375, -0.031829833984375, 0.014251708984375, 0.043182373046875, + 0.0026702880859375, -0.059600830078125, 0.0218048095703125, -0.03106689453125, + -0.01345062255859375, -0.037689208984375, -0.002140045166015625, -0.05511474609375, + 0.050262451171875, 0.005992889404296875, -0.0091400146484375, -0.0219268798828125, + 0.04437255859375, 0.030517578125, 0.01313018798828125, 0.027008056640625, -0.033477783203125, + 0.020416259765625, 0.0635986328125, 0.00550079345703125, -0.1064453125, 0.006710052490234375, + 0.016815185546875, -0.0295562744140625, -0.0162353515625, -0.01110076904296875, + 0.004230499267578125, 0.0804443359375, -0.0341796875, -0.099365234375, -0.0270538330078125, + -0.0157470703125, 0.0379638671875, -0.03289794921875, -0.0301361083984375, 0.0020904541015625, + -0.06451416015625, 0.01461029052734375, -0.0180206298828125, 0.0045623779296875, + 0.06341552734375, 0.0007672309875488281, 0.0164031982421875, 0.00287628173828125, + -0.0273284912109375, 0.0003261566162109375, -0.006229400634765625, -0.035675048828125, + -0.0401611328125, 0.01265716552734375, 0.031341552734375, 0.0222320556640625, + -0.07708740234375, -0.006038665771484375, -0.0533447265625, -0.041961669921875, + -0.00823974609375, -0.05218505859375, -0.001995086669921875, 0.0259246826171875, + 0.03277587890625, 0.0212554931640625, 0.0207061767578125, 0.0054779052734375, + -0.0562744140625, 0.00669097900390625, 0.041778564453125, 0.01708984375, 0.0243377685546875, + 0.0107421875, 0.016876220703125, -0.025299072265625, 0.038848876953125, -0.00437164306640625, + -0.01450347900390625, 0.038299560546875, 0.021209716796875, -0.0224151611328125, + -0.07403564453125, -0.0224456787109375, -0.01049041748046875, -0.021453857421875, + -0.019256591796875, 0.0102996826171875, -0.016876220703125, -0.00511932373046875, + -0.01898193359375, -0.06732177734375, -0.0274505615234375, -0.0269317626953125, + -0.0218505859375, 0.02593994140625, 0.058349609375, -0.01898193359375, 0.00789642333984375, + -0.017608642578125, 0.059234619140625, -0.035186767578125, 0.003986358642578125, + -0.0014715194702148438, -0.013580322265625, -0.057769775390625, -0.052947998046875, + -0.005237579345703125, 0.05517578125, 0.01971435546875, 0.0036983489990234375, + -0.0190887451171875, 0.0035610198974609375, 0.01067352294921875, 0.0704345703125, + 0.03485107421875, 0.01395416259765625, 0.06695556640625, -0.0005469322204589844, + -0.005542755126953125, 0.0208282470703125, -0.00931549072265625, 0.01218414306640625, + -0.04510498046875, -0.0116119384765625, 0.0151519775390625, -0.0160675048828125, + 0.0172882080078125, -0.0157928466796875, -0.0240020751953125, 0.008270263671875, + 0.01885986328125, -0.032135009765625, 0.0127410888671875, 0.037506103515625, + 0.010345458984375, 0.006504058837890625, 0.005283355712890625, 0.020599365234375, + 0.006496429443359375, 0.0131072998046875, 0.018035888671875, -0.0008769035339355469, + -0.032958984375, 0.030487060546875, 0.04815673828125, 0.043243408203125, 0.01483154296875, + 0.0297698974609375, -0.041290283203125, -0.004566192626953125, 0.030487060546875, + -0.05487060546875, -0.01175689697265625, 0.0233001708984375, -0.0281219482421875, + -0.003543853759765625, -0.009552001953125, -0.03350830078125, 0.016021728515625, + -0.02667236328125, 0.005489349365234375, 0.0188751220703125, 0.03814697265625, + 0.018280029296875, -0.00926971435546875, -0.00919342041015625, -0.007442474365234375, + 0.01395416259765625, -0.00408172607421875, -0.0311737060546875, -0.004932403564453125, + 0.050933837890625, 0.0022487640380859375, 0.0284271240234375, -0.0501708984375, + -0.01508331298828125, 0.0197296142578125, -0.010833740234375, -0.0021762847900390625, + 0.05780029296875, -0.02838134765625, -0.01236724853515625, 0.053192138671875, 0.0328369140625, + 0.01290130615234375, -0.0174102783203125, -0.0186004638671875, -0.0025119781494140625, + 0.0231781005859375, -0.023468017578125, -0.019012451171875, 8.153915405273438e-5, + -0.02783203125, 0.006183624267578125, -0.003940582275390625, -0.0211029052734375, + 0.015838623046875, 0.0286407470703125, 0.064208984375, 0.017486572265625, 0.0126953125, + 0.01531219482421875, -0.023529052734375, -0.01009368896484375, 0.041351318359375, + -0.0087127685546875, -0.020263671875, 0.06219482421875, -0.0003635883331298828, + 0.05023193359375, -0.006351470947265625, 0.0037212371826171875, -0.0017490386962890625, + 0.0038013458251953125, 0.00733184814453125, 0.0282440185546875, -0.0210723876953125, + 0.0134735107421875, 0.01526641845703125, 0.01421356201171875, 0.0005793571472167969, + -0.0019216537475585938, 0.00469207763671875, -0.03466796875, -0.033203125, + 0.0019664764404296875, 0.01160430908203125, 0.024322509765625, 0.0025539398193359375, + -0.036224365234375, 0.0125579833984375, -0.010345458984375, -0.0350341796875, + 0.024932861328125, -0.033538818359375, 0.0249481201171875, 0.0367431640625, + 0.0010461807250976562, 0.0133209228515625, 0.0762939453125, 0.03326416015625, + -0.030242919921875, 0.01849365234375, -0.014068603515625, 0.053192138671875, + 2.3484230041503906e-5, 0.068115234375, -0.005290985107421875, -0.0080108642578125, + 0.053253173828125, -0.0172576904296875, -0.0014963150024414062, -0.018829345703125, + 0.009918212890625, 0.0048370361328125, 0.06854248046875, 0.035308837890625, 0.011627197265625, + 0.03424072265625, -0.05206298828125, 0.00397491455078125, -0.0291748046875, -0.0714111328125, + -0.039215087890625, -0.03155517578125, 0.01354217529296875, -0.0330810546875, + 0.03277587890625, -0.00504302978515625, -0.017059326171875, 0.01238250732421875, + 0.06201171875, 0.0372314453125, -0.0206298828125, -0.033233642578125, -0.0142059326171875, + -0.01708984375, -0.005664825439453125, 0.00962066650390625, -0.0127105712890625, + -0.02117919921875, 0.044036865234375, 0.07275390625, 0.04144287109375, 0.06683349609375, + -0.0309906005859375, 0.04931640625, 0.0058746337890625, -0.060272216796875, + 0.0137786865234375, 0.0229034423828125, -0.041290283203125, 0.02435302734375, + -0.015838623046875, 0.005718231201171875, -0.040802001953125, -0.0543212890625, + 0.036895751953125, 0.01849365234375, 0.0093994140625, 0.01409912109375, -0.007396697998046875, + 0.0015192031860351562, -0.018035888671875, -0.03350830078125, 0.0009236335754394531, + -0.039520263671875, 0.06170654296875, -0.059906005859375, -0.0235443115234375, + -0.01517486572265625, -0.0227203369140625, 0.0523681640625, -0.005321502685546875, + -0.0282135009765625, 0.007366180419921875, 0.00870513916015625, 0.01468658447265625, + 0.00896453857421875, -0.0019741058349609375, 0.020843505859375, 0.00016689300537109375, + -0.01114654541015625, 0.036346435546875, -0.0010232925415039062, 0.003398895263671875, + -0.035675048828125, 0.006374359130859375, -0.027587890625, -0.0169219970703125, + -0.01934814453125, -0.061126708984375, 0.020965576171875, -0.08892822265625, 0.03790283203125, + 0.03790283203125, -0.0280609130859375, -0.018218994140625, -0.04620361328125, + -0.0301971435546875, -0.036590576171875, 0.0204925537109375, 0.01082611083984375, + 0.0201873779296875, 0.0116424560546875, 0.0005998611450195312, 0.0003247261047363281, + 0.015625, -0.00909423828125, 0.00461578369140625, -0.046417236328125, -0.06378173828125, + -0.038543701171875, -0.0235748291015625, 0.040771484375, 0.0155487060546875, + 0.0091400146484375, -0.0302276611328125, -0.0172119140625, 0.00821685791015625, + 0.0330810546875, -0.0005345344543457031, 0.0005469322204589844, 0.057342529296875, + 0.0010156631469726562, -0.010009765625, -0.0238037109375, -0.02435302734375, 0.04595947265625, + -0.0126953125, -0.0186614990234375, -0.033966064453125, -0.0207672119140625, 0.01800537109375, + 0.0137786865234375, -0.0103912353515625, -0.00431060791015625, 0.00909423828125, + -0.022491455078125, 0.0323486328125, 0.0168304443359375, -0.0313720703125, 0.0139007568359375, + 0.03985595703125, 0.039581298828125, 0.012969970703125, -0.005344390869140625, + 0.02484130859375, 0.0018262863159179688, 0.057647705078125, 0.0167388916015625, + 0.031219482421875, 0.011383056640625, 0.0282135009765625, 0.0083770751953125, + 0.00934600830078125, -0.01275634765625, -0.010345458984375, 0.026092529296875, + 0.0221099853515625, 0.0292510986328125, -0.0040130615234375, -0.0234832763671875, + -0.012603759765625, -0.021087646484375, 0.03521728515625, 0.044403076171875, -0.043701171875, + -0.00397491455078125, -0.034149169921875, -0.03558349609375, 0.004932403564453125, + -0.0012598037719726562, 0.06060791015625, -0.0265960693359375, -0.0147705078125, + 0.00899505615234375, -0.0467529296875, -0.0302734375, 0.0257720947265625, 0.0116119384765625, + -0.01080322265625, -0.0003151893615722656, -0.004852294921875, -0.03204345703125, + -0.02911376953125, 0.0355224609375, 0.0277252197265625, -0.04376220703125, + -0.0012149810791015625, 0.0268096923828125, 0.056610107421875, -0.01153564453125, + -0.043853759765625, -5.066394805908203e-5, 0.039459228515625, 0.051422119140625, + -0.004474639892578125, -0.002841949462890625, 0.005619049072265625, 0.001255035400390625, + 0.021575927734375, 0.002307891845703125, 0.024749755859375, 0.03326416015625, + 0.00461578369140625, 0.005840301513671875, -0.0149688720703125, -0.01058197021484375, + -0.026092529296875, -0.0203094482421875, -0.051239013671875, -0.0236968994140625, + -0.009490966796875, 0.01134490966796875, 0.0073699951171875, -0.0196075439453125, + 0.037353515625, -0.015228271484375, 0.00875091552734375, -0.0009813308715820312, + -0.0260772705078125, 0.036651611328125, 0.005367279052734375, -0.00684356689453125, + -0.038665771484375, -0.003692626953125, 0.04156494140625, -0.0235748291015625, + 5.733966827392578e-5, -0.0330810546875, 0.0250244140625, 0.003177642822265625, + -0.05474853515625, -0.024078369140625, -0.049041748046875, 0.026763916015625, + 0.0172882080078125, 0.01111602783203125, -0.00290679931640625, -0.0204315185546875, + 0.033966064453125, 0.006805419921875, -0.01177978515625, 0.059967041015625, + 0.004123687744140625, 0.0203094482421875, 0.005558013916015625, 0.0286865234375, + 0.0867919921875, -0.02203369140625, 0.00438690185546875, -0.00582122802734375, + -0.01885986328125, -0.01136016845703125, -0.01430511474609375, -0.007457733154296875, + -0.0015459060668945312, -0.0252227783203125, -0.02740478515625, -0.0140838623046875, + -0.033599853515625, -0.021820068359375, -0.047149658203125, 0.00434112548828125, + -0.0260162353515625, -0.07928466796875, -0.006053924560546875, -0.004062652587890625, + 0.02911376953125, -0.00719451904296875, -0.02813720703125, 0.005542755126953125, + -0.009490966796875, 0.006542205810546875, -0.01241302490234375, -0.0254974365234375, + 0.032684326171875, 0.016571044921875, 0.0306396484375, -0.057861328125, -0.0308837890625, + -0.0029163360595703125, 0.022430419921875, -0.02252197265625, -0.01015472412109375, + 0.025177001953125, -0.0258941650390625, -0.036712646484375, -0.034912109375, + -0.0188140869140625, -0.042327880859375, 0.01148223876953125, -0.0085601806640625, + 0.034942626953125, 0.01413726806640625, 0.01384735107421875, -0.00852203369140625, + 0.0117645263671875, 0.01416015625, -0.003200531005859375, 0.0245819091796875, + -0.002300262451171875, -0.0271453857421875, 0.0184478759765625, 0.0155029296875, + 0.023529052734375, 0.005702972412109375, -0.0312042236328125, -0.0150604248046875, + 0.00775909423828125, 0.0186309814453125, -0.01462554931640625, -0.004520416259765625, + 0.02777099609375, -0.006877899169921875, -0.0238494873046875, 0.01079559326171875, + -0.0230865478515625, 0.00724029541015625, 0.00595855712890625, -0.02606201171875, + 0.0280303955078125, -0.041412353515625, 0.02239990234375, -0.04339599609375, 0.058349609375, + 0.007205963134765625, 0.002197265625, -0.005870819091796875, 0.0276641845703125, + 0.0189361572265625, 0.01192474365234375, -0.00577545166015625, 0.016448974609375, + -0.00396728515625, 0.00998687744140625, 0.0105743408203125, 0.01012420654296875, + -0.01715087890625, -0.0240020751953125, 0.0209197998046875, -0.0103607177734375, + -0.027435302734375, -0.0033416748046875, -0.0019350051879882812, -0.010986328125, + 0.03289794921875, 0.00843048095703125, 0.0032367706298828125, -0.0092926025390625, + -0.026092529296875, -0.032440185546875, 0.029876708984375, 0.028778076171875, + 0.0118560791015625, 0.01073455810546875, 0.0181121826171875, -0.01285552978515625, + -0.00991058349609375, 0.0136260986328125, 0.00445556640625, -0.0411376953125, + -0.019744873046875, -0.00760650634765625, -0.01261138916015625, -0.02874755859375, + -0.018157958984375, 0.013092041015625, -0.00609588623046875, -0.004558563232421875, + 0.007213592529296875, 0.025665283203125, -0.010009765625, 0.00531768798828125, + 0.01087188720703125, -0.007633209228515625, 0.004390716552734375, 0.0138092041015625, + 0.0275115966796875, -0.005214691162109375, -0.0693359375, -0.00463104248046875, + 0.023101806640625, -0.00693511962890625, -0.006603240966796875, 0.0127105712890625, + 0.01544189453125, 0.020538330078125, 0.0167236328125, 0.0028934478759765625, + -0.03192138671875, 0.009918212890625, -0.034332275390625, -0.01366424560546875, + 0.005462646484375, -0.00946044921875, 0.0011472702026367188, 0.0269012451171875, + -0.00615692138671875, -0.00830841064453125, -0.01190185546875, -0.00865936279296875, + 0.0179290771484375, -0.040679931640625, -0.0083465576171875, -0.03631591796875, + 0.036224365234375, 0.032318115234375, -0.03729248046875, -0.06890869140625, + 0.0195159912109375, 0.01064300537109375, 0.030120849609375, -0.0011281967163085938, + -0.00026988983154296875, 0.002155303955078125, 0.032928466796875, 0.0189361572265625, + -0.0283050537109375, -0.01287841796875, 0.004039764404296875, 0.04290771484375, + -0.01317596435546875, 0.027740478515625, 0.00836944580078125, -0.02471923828125, + -0.027587890625, -0.00021219253540039062, 0.027801513671875, -0.049102783203125, + 0.0199432373046875, -0.031951904296875, 0.01082611083984375, -0.0399169921875, + 0.0343017578125, -0.004810333251953125, -0.015899658203125, 0.0022735595703125, + -0.022186279296875, 0.02484130859375, -0.0009412765502929688, 0.0020008087158203125, + 0.0024166107177734375, 0.01324462890625, -0.017791748046875, 0.0103302001953125, + 0.05206298828125, 0.0233001708984375, -0.0209197998046875, -0.00652313232421875, + 0.00927734375, 0.0419921875, 0.01422882080078125, -0.02972412109375, -0.00717926025390625, + 0.027923583984375, 0.009674072265625, 0.0171661376953125, -0.006824493408203125, + 0.034759521484375, 0.01509857177734375, 0.02447509765625, -0.002079010009765625, + 0.004467010498046875, -0.006732940673828125, -0.0076141357421875, -0.05859375, 0.0400390625, + 0.0386962890625, -0.0379638671875, -0.0400390625, -0.0103607177734375, -0.0022907257080078125, + -0.01300048828125, -0.0055999755859375, 0.0254669189453125, -0.01873779296875, + 0.0164337158203125, -0.01045989990234375, 0.027740478515625, 0.028900146484375, + -0.00582122802734375, -0.01364898681640625, 0.00672149658203125, 0.00971221923828125, + 0.027984619140625, 0.03887939453125, -0.01482391357421875, 0.010772705078125, + 0.00022399425506591797, -0.0130767822265625, -0.03277587890625, -0.009674072265625, + -0.037841796875, -0.0164337158203125, -0.01172637939453125, -0.0128173828125, + 0.02093505859375, -0.0207977294921875, 0.036376953125, 0.0197296142578125, 0.028900146484375, + -0.04278564453125, 0.009979248046875, -0.023590087890625, -0.00122833251953125, + 0.031494140625, 0.03155517578125, 0.041229248046875, -0.0086212158203125, + -0.00962066650390625, -0.0159912109375, -0.0110931396484375, 0.051025390625, + -0.006572723388671875, 0.035400390625, -0.0163726806640625, 0.009613037109375, + 0.01221466064453125, 0.0030918121337890625, -0.0015935897827148438, 0.0214080810546875, + 0.04571533203125, -0.0181121826171875, -0.0209503173828125, -0.00997161865234375, + -0.0231170654296875, 0.00620269775390625, -0.0008335113525390625, 0.032806396484375, + -0.0305633544921875, -0.0262298583984375, -0.007350921630859375, 0.013671875, + 0.00746917724609375, -0.038299560546875, 0.0199432373046875, -0.00039386749267578125, + -0.01446533203125, 0.010040283203125, -0.0567626953125, 0.0006866455078125, -0.06732177734375, + 0.01531219482421875, -0.0193023681640625, 0.036376953125, -0.0292510986328125, + -0.005870819091796875, 0.0018672943115234375, -0.01322174072265625, -0.0138702392578125, + -0.0290069580078125, 0.02276611328125, -0.0013723373413085938, -0.004795074462890625, + 0.031036376953125, 0.02532958984375, -0.0155181884765625, 0.0307159423828125, + 0.049530029296875, -0.01340484619140625, 0.021820068359375, 0.01483154296875, + 0.0267486572265625, -0.0014219284057617188, 0.003993988037109375, -0.04241943359375, + 0.0013704299926757812, 0.01453399658203125, 0.006870269775390625, 0.015960693359375, + -0.0266876220703125, 0.0115966796875, 0.045318603515625, -0.045135498046875, + -0.00992584228515625, -0.033111572265625, -0.00603485107421875, -0.01459503173828125, + 0.0268096923828125, -0.045623779296875, 0.0128173828125, 0.009979248046875, + 0.01519012451171875, -0.034027099609375, 1.7523765563964844e-5, -0.013885498046875, + -0.037750244140625, 0.00016617774963378906, -0.00846099853515625, -0.05596923828125, + 0.00417327880859375, 0.03302001953125, -0.036346435546875, 0.00354766845703125, 0.037109375, + 0.0743408203125, -0.04620361328125, 0.0179901123046875, 0.0024814605712890625, + -0.045867919921875, -0.0149688720703125, 0.04254150390625, 0.0174102783203125, + -0.007114410400390625, -0.0015611648559570312, 0.007503509521484375, -0.005771636962890625, + 0.0198974609375, -7.605552673339844e-5, -0.0116119384765625, 0.031982421875, + -0.00644683837890625, 0.0113677978515625, 0.022308349609375, 0.005191802978515625, + -0.0120086669921875, -0.00252532958984375, 0.0189208984375, -0.00994873046875, + -0.0005002021789550781, 0.0144805908203125, -0.0084991455078125, -0.00646209716796875, + 0.00140380859375, 0.03106689453125, -0.017791748046875, 0.0005931854248046875, + -0.037628173828125, -0.00206756591796875, -0.0501708984375, 0.00557708740234375, + -0.0161590576171875, 0.01245880126953125, 0.0043487548828125, 0.0156402587890625, + -0.0145721435546875, -0.001155853271484375, 0.04150390625, 0.00928497314453125, + 0.0070037841796875, -0.01275634765625, -0.03155517578125, -0.005435943603515625, + 0.044342041015625, 0.040802001953125, 0.002132415771484375, -0.01078033447265625, + -0.0196990966796875, -0.021728515625, 0.017120361328125, -0.0218353271484375, + -0.0227813720703125, 0.01107025146484375, 0.0286865234375, 0.026580810546875, + 0.0002570152282714844, -0.035491943359375, -0.0167694091796875, 0.00959014892578125, + -0.0002071857452392578, 0.0191192626953125, 0.02874755859375, -0.0131378173828125, + -0.00832366943359375, -0.01654052734375, -0.0188140869140625, -0.0238189697265625, + 0.0171966552734375, 0.0269622802734375, 0.0255889892578125, 0.016448974609375, + -0.0250244140625, -0.0151519775390625, -0.04461669921875, 0.01322174072265625, + 0.0252227783203125, 0.00859832763671875, -0.01033782958984375, 0.0243377685546875, + 0.018585205078125, -0.0204315185546875, 0.01001739501953125, -0.0104827880859375, + -0.008392333984375, 0.00594329833984375, -0.01904296875, 0.0218048095703125, + -0.00946044921875, 0.01776123046875, -0.0377197265625, -0.004467010498046875, 0.0638427734375, + 0.0032176971435546875, -0.0304107666015625, -0.0133209228515625, -0.050384521484375, + -0.006702423095703125, -0.0188140869140625, -0.033416748046875, 0.011749267578125, + 0.002201080322265625, -0.00650787353515625, 0.0187835693359375, 0.0169219970703125, + -0.0202484130859375, -0.019683837890625, 0.01885986328125, -0.02001953125, 0.0270843505859375, + -0.00019180774688720703, 0.0042266845703125, 0.004398345947265625, -0.0165252685546875, + -0.003055572509765625, -0.01477813720703125, 5.0902366638183594e-5, 0.0120849609375, + -0.0203857421875, 0.0104217529296875, -0.00201416015625, -0.0052947998046875, + -0.039031982421875, -0.025299072265625, -0.01065826416015625, 0.0021610260009765625, + 0.0117950439453125, -0.00258636474609375, 0.005229949951171875, 0.0255584716796875, + -0.0193634033203125, -0.00914764404296875, 0.023681640625, -0.0241546630859375, + 0.032135009765625, -0.0169525146484375, -0.006244659423828125, 0.0096282958984375, + -0.01500701904296875, 0.00722503662109375, 0.003520965576171875, 0.016448974609375, + 0.008270263671875, 0.0201568603515625, -0.011383056640625, 0.00455474853515625, + 0.01151275634765625, 0.0021877288818359375, 0.00859832763671875, 0.0172271728515625, + -0.037109375, 0.01219940185546875, -0.003719329833984375, -0.00258636474609375, + -0.01319122314453125, -0.05206298828125, -0.006526947021484375, 0.0012798309326171875, + 0.0335693359375, 0.00559234619140625, 0.0163726806640625, -0.01491546630859375, + -0.0008845329284667969, 0.01488494873046875, 0.00942230224609375, -0.0178375244140625, + -0.02691650390625, 0.0167236328125, -0.046600341796875, -0.0026378631591796875, + 0.00482177734375, 0.01145172119140625, -0.00824737548828125, 0.02850341796875, + -0.01285552978515625, -0.0296478271484375, -0.028961181640625, 0.022857666015625, + 0.026031494140625, -0.02142333984375, 0.001522064208984375, -0.0020046234130859375, + 0.0037937164306640625, 0.0229034423828125, -0.0023097991943359375, 0.0061798095703125, + 0.00281524658203125, -0.022857666015625, -0.0399169921875, 0.05389404296875, + -0.0017948150634765625, 0.01285552978515625, 0.01317596435546875, -0.032318115234375, + -0.00318145751953125, -0.0111541748046875, 0.0238189697265625, 0.007152557373046875, + 0.0005311965942382812, -0.0144805908203125, 0.0256500244140625, 0.029693603515625, + -0.0198211669921875, -0.0282440185546875, 0.017578125, -0.0230255126953125, + -0.001262664794921875, -0.0026092529296875, -0.007843017578125, -0.0014162063598632812, + -0.01377105712890625, 0.032684326171875, 0.0194091796875, 0.01155853271484375, + -0.04083251953125, -0.0240631103515625, 0.00460052490234375, -0.00789642333984375, + -0.04278564453125, 0.0023345947265625, -0.017974853515625, 0.004695892333984375, + -0.0117340087890625, 0.0023250579833984375, -0.0210113525390625, -0.0188446044921875, + 0.01395416259765625, 0.01513671875, 0.083984375, -0.034881591796875, -0.010986328125, + 0.022247314453125, 0.00788116455078125, 0.0050048828125, -0.01416015625, 0.041046142578125, + -0.0207061767578125, 0.0025768280029296875, -0.0191497802734375, 0.01715087890625, + 0.00443267822265625, -0.0194854736328125, -0.012298583984375, 0.0286407470703125, + -0.02716064453125, -0.006694793701171875, 0.0178375244140625, -0.04931640625, + -0.004077911376953125, 0.0185089111328125, 0.023651123046875, -0.0401611328125, + -0.01531219482421875, -0.03143310546875, 0.012603759765625, 0.006534576416015625, + 0.055084228515625, -0.00933074951171875, 0.020477294921875, 0.0143890380859375, + -0.006378173828125, -0.00565338134765625, 0.01203155517578125, 0.005397796630859375, + 0.01043701171875, -0.02716064453125, 0.03912353515625, -0.01763916015625, -0.027435302734375, + -0.00385284423828125, 0.024017333984375, -0.0181884765625, 0.01213836669921875, + 0.005435943603515625, 0.04547119140625, -0.0105438232421875, 0.001255035400390625, + 0.032501220703125, -0.01110076904296875, 0.005558013916015625, 0.001987457275390625, + 0.0069427490234375, -0.033294677734375, -0.0126495361328125, 0.0005474090576171875, + 0.0282440185546875, 0.006381988525390625, -0.038482666015625, 0.003940582275390625, + -0.0092315673828125, -0.0240631103515625, -0.01093292236328125, 0.0157928466796875, + 0.0008916854858398438, -0.033843994140625, -0.02691650390625, 0.007659912109375, + 0.007350921630859375, -0.018096923828125, -0.01335906982421875, 0.01800537109375, + 0.007080078125, -0.00962066650390625, 0.021392822265625, 0.038726806640625, + 0.0012445449829101562, 0.00811004638671875, -0.035186767578125, -0.005886077880859375, + 0.058349609375, -0.02203369140625, 0.0125885009765625, -0.0305938720703125, 0.0340576171875, + -0.0011358261108398438, -0.00885772705078125, 0.006374359130859375, 0.003192901611328125, + 0.016998291015625, 0.002288818359375, 0.005512237548828125, 0.0171966552734375, + -0.0175018310546875, -0.006145477294921875, -0.0421142578125, -0.0025501251220703125, + -0.025390625, -0.006328582763671875, 0.017578125, -0.051300048828125, -0.0229034423828125, + -0.0013570785522460938, 0.001972198486328125, -0.00917816162109375, 0.046112060546875, + -0.01261138916015625, -0.01451873779296875, -0.01009368896484375, 8.291006088256836e-5, + 0.0025424957275390625, 0.004810333251953125, -0.025482177734375, -0.01305389404296875, + 0.00893402099609375, 0.006175994873046875, -0.043121337890625, -0.0033397674560546875, + -0.0121917724609375, 0.0016355514526367188, -0.003574371337890625, 0.00946044921875, + -0.01450347900390625, 0.0081024169921875, 0.022918701171875, -0.00530242919921875, + 0.00685882568359375, 0.018890380859375, -0.0224151611328125, 0.0005488395690917969, + 0.03326416015625, 0.02655029296875, -0.0086669921875, -0.0418701171875, -0.00380706787109375, + -0.01326751708984375, 0.0137939453125, -0.0186309814453125, -0.0009164810180664062, + -0.0304107666015625, 0.0031757354736328125, 0.01238250732421875, -0.0153350830078125, + 0.0173492431640625, -0.025421142578125, 0.00948333740234375, -0.00817108154296875, + 0.0038433074951171875, 0.0098724365234375, -0.0253143310546875, -0.0267791748046875, + -0.00586700439453125, 0.0616455078125, 0.0257110595703125, -0.00989532470703125, + -0.0113525390625, -0.0046234130859375, -0.034271240234375, 0.0254669189453125, + -0.0279083251953125, -0.00033664703369140625, -0.017608642578125, 0.01491546630859375, + 0.010467529296875, -0.0014858245849609375, -0.007450103759765625, 0.00870513916015625, + -0.003551483154296875, 0.006122589111328125, 0.0058135986328125, -0.00698089599609375, + -0.011322021484375, -0.041259765625, -0.0181121826171875, -0.0144500732421875, + 0.0057525634765625, -0.004840850830078125, -0.006778717041015625, 0.0026454925537109375, + -0.04046630859375, 0.00698089599609375, 0.00891876220703125, -0.00991058349609375, + 0.0149688720703125, 0.0123748779296875, 0.01242828369140625, -0.02288818359375, + 0.031768798828125, -0.0160980224609375, 0.0079803466796875, -0.00978851318359375, + 0.0105743408203125, 0.00681304931640625, 0.0057373046875, -0.00273895263671875, + 0.033111572265625, -0.0300140380859375, 0.006488800048828125, 0.006275177001953125, + -0.034027099609375, -0.01013946533203125, -0.01312255859375, 0.0021877288818359375, + 0.0202484130859375, -0.01078033447265625, -0.0251007080078125, 0.0014867782592773438, + 0.00844573974609375, -0.034942626953125, 0.0015869140625, -0.0335693359375, + 0.0283050537109375, 0.0273284912109375, 0.004802703857421875, -0.01374053955078125, + -0.0157318115234375, 0.0019006729125976562, -0.0078582763671875, -0.004634857177734375, + -0.0047149658203125, -0.048187255859375, 0.0241546630859375, -0.041259765625, + 0.0149688720703125, -0.009185791015625, 0.03033447265625, -0.0145416259765625, + -0.007659912109375, -0.01294708251953125, 0.0244598388671875, 0.03851318359375, + -0.02911376953125, -0.04290771484375, -0.005184173583984375, 0.00324249267578125, + 0.01441192626953125, -0.0192413330078125, -0.026092529296875, -0.00830841064453125, + -0.027557373046875, -0.030242919921875, -0.0189208984375, 0.003467559814453125, + -0.0128326416015625, 0.03271484375, 0.03973388671875, 0.009552001953125, -0.01207733154296875, + 0.0110015869140625, -0.007396697998046875, -0.03662109375, 0.01284027099609375, + -0.0307159423828125, -0.006717681884765625, 0.0112762451171875, -0.0020160675048828125, + -0.0300140380859375, 0.0091552734375, -0.0188751220703125, 0.03253173828125, + -0.0006289482116699219, -0.0187835693359375, 0.02301025390625, -0.0291900634765625, + 0.0233001708984375, -0.0114593505859375, 0.01526641845703125, -0.00035643577575683594, + 0.0275421142578125, -0.019561767578125, 0.011016845703125, -0.0202484130859375, + -0.0023593902587890625, -0.05975341796875, 0.00595855712890625, 0.0360107421875, + 0.004978179931640625, 0.04388427734375, -0.0093231201171875, 0.00514984130859375, + -0.01251220703125, -0.0243072509765625, 0.0047760009765625, -0.01007843017578125, + -0.0121307373046875, 0.0209503173828125, -0.00865936279296875, 0.0270538330078125, + -0.005352020263671875, -0.035675048828125, 0.017608642578125, -0.0213623046875, + -0.0127105712890625, 0.009552001953125, 0.030487060546875, -0.04034423828125, + -0.0128021240234375, 0.06011962890625, 0.0132904052734375, 0.0096893310546875, + -0.00441741943359375, -0.0008273124694824219, -0.0019588470458984375, -0.006877899169921875, + -0.00942230224609375, -0.0001552104949951172, -0.02227783203125, 0.01605224609375, + -0.01404571533203125, 0.01284027099609375, -0.00806427001953125, -0.019989013671875, + -0.0292205810546875, 0.00974273681640625, 0.0090484619140625, 0.0300140380859375, + 0.0229034423828125, -0.033447265625, -0.003993988037109375, 0.01983642578125, + 0.020294189453125, 0.0098419189453125, -0.01058197021484375, 0.0250091552734375, + -0.01480865478515625, 0.002231597900390625, -0.0328369140625, -0.00038909912109375, + -0.00970458984375, 0.00846099853515625, -0.01271820068359375, -0.0307464599609375, + 0.0227508544921875, 0.034942626953125, -0.034515380859375, -0.0133819580078125, + 0.0017194747924804688, 0.002079010009765625, -0.0250244140625, 0.0136871337890625, + 0.00717926025390625, -0.0180206298828125, 0.0005269050598144531, -0.00986480712890625, + 0.013214111328125, 0.049957275390625, 0.0155181884765625, -0.004009246826171875, + 0.049530029296875, -0.00977325439453125, -0.02655029296875, 0.01171112060546875, + 0.0175933837890625, -0.035980224609375, 0.00016617774963378906, 0.0191802978515625, + 0.0080108642578125, 0.0281982421875, -0.01751708984375, 0.005126953125, 0.0213623046875, + -0.000537872314453125, 0.0238494873046875, -0.0239105224609375, 0.0198822021484375, + 0.0215606689453125, 0.0227203369140625, 0.050140380859375, 0.0189208984375, -0.02197265625, + -0.0177154541015625, 0.0167694091796875, 0.005733489990234375, -0.018096923828125, + 0.002254486083984375, -0.006317138671875, 0.0226898193359375, -0.0213623046875, + -0.0161895751953125, 0.00626373291015625, -0.03424072265625, 0.01045989990234375, + -0.0158843994140625, -0.004795074462890625, -0.01812744140625, -0.010406494140625, + 0.00957489013671875, -0.005580902099609375 + ] + }, + { + "tag": "outdoors", + "description": "an event taking place outside in nature, such as hiking, camping trips, nature walks, outdoor recreation, or bonfires, often hosted by OA", + "embedding": [ + -0.0149383544921875, 0.0097198486328125, 0.0166015625, 0.0248870849609375, + -0.0266265869140625, 0.0016660690307617188, 0.0173492431640625, -0.0355224609375, + 0.032745361328125, 0.0169525146484375, 0.053680419921875, -0.0046539306640625, + -0.01534271240234375, -0.0267181396484375, 0.0231781005859375, 0.046722412109375, + -0.0038356781005859375, 0.00968170166015625, -0.0176239013671875, 0.03173828125, + 0.0021686553955078125, 0.045440673828125, -0.0180511474609375, -0.0214996337890625, + -0.0364990234375, -0.029266357421875, -0.0181884765625, 0.048675537109375, 0.0570068359375, + -0.00032806396484375, 0.0272674560546875, -0.0278778076171875, -0.0162200927734375, + -0.02001953125, 0.01259613037109375, 0.038848876953125, 0.02825927734375, -0.04302978515625, + 0.038726806640625, -0.01361083984375, 0.025177001953125, -0.05975341796875, + 0.00618743896484375, 0.031524658203125, 0.0290985107421875, 0.0282440185546875, + 0.0202484130859375, 0.0026187896728515625, 0.036468505859375, -0.01189422607421875, + -0.0250396728515625, -0.0299072265625, 0.03363037109375, 0.0288238525390625, + -0.0250091552734375, -0.02044677734375, 0.032135009765625, 0.045074462890625, + 0.00701141357421875, 0.06475830078125, -0.0046844482421875, 0.0233612060546875, + 0.035736083984375, 0.01151275634765625, 0.002407073974609375, 0.0159454345703125, + -0.001049041748046875, 0.037750244140625, 0.007122039794921875, 0.00029730796813964844, + 0.0276641845703125, 0.033935546875, -0.05035400390625, -0.032867431640625, 0.05438232421875, + -0.0031986236572265625, -0.0205230712890625, -0.00496673583984375, -0.005847930908203125, + -0.00780487060546875, 0.0282135009765625, 0.0238494873046875, -0.0584716796875, + 0.01534271240234375, 0.041900634765625, -0.0162811279296875, -0.0765380859375, + 0.01151275634765625, -0.02093505859375, 0.006610870361328125, 0.0200653076171875, + -0.0011463165283203125, 0.00035452842712402344, -0.00919342041015625, -0.0015668869018554688, + -0.0267486572265625, -0.0201568603515625, 0.0005116462707519531, 0.01580810546875, + 0.041656494140625, 0.01161956787109375, -0.083984375, 0.0087127685546875, + 0.005939483642578125, 0.00772857666015625, 0.00786590576171875, -0.03753662109375, + 0.0265350341796875, 0.01071929931640625, -0.01027679443359375, -0.0645751953125, + -0.035888671875, -0.027130126953125, 0.036346435546875, -0.006439208984375, + -0.006900787353515625, 0.0772705078125, -0.01348876953125, 0.056060791015625, + 0.01012420654296875, -0.00811767578125, 0.0101776123046875, 0.0028285980224609375, + -0.008148193359375, 0.0107269287109375, 0.0278472900390625, -0.0180206298828125, + 0.011688232421875, -0.025970458984375, -0.016082763671875, 0.0283050537109375, + 0.00817108154296875, 0.040008544921875, -0.07586669921875, -0.031829833984375, + -0.047821044921875, -0.04736328125, -0.0179443359375, -0.0101318359375, 0.01654052734375, + 0.037506103515625, -0.0307769775390625, -0.002742767333984375, 0.037689208984375, + -0.003368377685546875, -0.0287933349609375, 0.026031494140625, 0.053680419921875, + 0.01261138916015625, -0.0206451416015625, -0.031402587890625, -0.026611328125, + -0.018524169921875, 0.045318603515625, 0.01300811767578125, -0.024658203125, + -0.051361083984375, 0.000667572021484375, 0.00746917724609375, 0.0009169578552246094, + 0.005672454833984375, -0.031219482421875, -0.01384735107421875, 0.021087646484375, + 0.01236724853515625, -0.0018482208251953125, -0.04034423828125, -0.00936126708984375, + -0.05224609375, 0.01727294921875, -0.0106201171875, -0.001026153564453125, -0.08221435546875, + 0.050079345703125, 0.004253387451171875, 0.006420135498046875, 0.032745361328125, + 0.033416748046875, -0.030914306640625, -0.005420684814453125, -0.00835418701171875, + 0.025177001953125, -0.056640625, -0.0037288665771484375, 0.00569915771484375, 0.0418701171875, + 0.0310516357421875, 0.026763916015625, -0.01523590087890625, -0.02191162109375, + -0.0118865966796875, 0.0288238525390625, 0.0304107666015625, 0.01277923583984375, + 0.0653076171875, -0.037841796875, -0.01195526123046875, 0.002597808837890625, + 0.006877899169921875, 0.025421142578125, -0.01904296875, -0.058929443359375, 0.03607177734375, + -0.0447998046875, -0.002124786376953125, -0.0197296142578125, -0.0139617919921875, + -0.01197052001953125, 0.0531005859375, -0.0223846435546875, 0.0097808837890625, + -0.0157012939453125, 0.07269287109375, 0.0183563232421875, 0.00824737548828125, + -0.025177001953125, -0.006740570068359375, -0.018035888671875, -0.0030269622802734375, + 0.0247039794921875, -0.004680633544921875, -0.018157958984375, 0.0208892822265625, + 0.052093505859375, 0.0273895263671875, 0.0084686279296875, -0.03375244140625, + -0.041595458984375, 0.0287933349609375, -0.052947998046875, -0.029937744140625, + 0.026397705078125, -0.0584716796875, -0.00621795654296875, -0.01641845703125, 0.029296875, + 0.0140380859375, -0.006000518798828125, -0.051422119140625, -0.003749847412109375, + -0.038787841796875, -0.007183074951171875, -0.0323486328125, 0.0164337158203125, + 0.01123809814453125, 0.0169677734375, 0.017852783203125, -0.01300811767578125, + 0.02520751953125, 0.0079345703125, 0.01523590087890625, 0.01024627685546875, -0.0634765625, + 0.00705718994140625, 0.021331787109375, -0.01381683349609375, -0.0189361572265625, + 0.01175689697265625, -0.0236663818359375, -0.0081939697265625, 0.0465087890625, + -0.01123809814453125, 0.038543701171875, 0.03668212890625, -0.013397216796875, + -0.0214996337890625, 0.0377197265625, -0.005931854248046875, 0.0088653564453125, + 0.00858306884765625, -0.00757598876953125, 0.0151519775390625, -0.038726806640625, + -0.01470184326171875, -0.04302978515625, -0.0014438629150390625, 0.051544189453125, + -0.005718231201171875, 0.01873779296875, -0.05133056640625, 0.055145263671875, + 0.019683837890625, 0.029327392578125, -0.0255889892578125, 0.017364501953125, + 0.0067291259765625, 0.0047454833984375, 0.031005859375, -0.02459716796875, 0.0159454345703125, + -0.037933349609375, -0.01346588134765625, -0.00444793701171875, 0.039825439453125, + -0.0545654296875, -0.00878143310546875, -0.0102996826171875, 0.002227783203125, + 0.062286376953125, -0.0297698974609375, 0.01242828369140625, 0.0093536376953125, + -0.010589599609375, 0.01534271240234375, 0.034942626953125, 0.0272064208984375, + 0.02325439453125, -0.0308380126953125, 0.006855010986328125, 0.019073486328125, + -0.009063720703125, 0.035400390625, -0.0054168701171875, 0.02398681640625, 0.026641845703125, + 0.0066680908203125, -0.026092529296875, 0.05609130859375, 0.02618408203125, + -0.0258636474609375, -0.00046634674072265625, -0.007587432861328125, 0.0364990234375, + -0.01375579833984375, 0.0306854248046875, 0.0036678314208984375, 0.0335693359375, + 0.00792694091796875, -0.012847900390625, 0.0037250518798828125, -0.014495849609375, + -0.01849365234375, -0.0006055831909179688, 0.11236572265625, 0.04339599609375, + 0.024322509765625, 0.02630615234375, -0.03240966796875, 0.0188140869140625, 0.0413818359375, + -0.0634765625, -0.0226287841796875, -0.017303466796875, -0.002285003662109375, + -0.0382080078125, 0.03302001953125, 0.026641845703125, 0.0211944580078125, + -0.0160980224609375, 0.0291748046875, 0.03802490234375, -0.0160980224609375, + -0.0193634033203125, 0.003814697265625, -0.004032135009765625, -0.0072174072265625, + 0.018157958984375, -0.032135009765625, -0.0013885498046875, 0.056243896484375, + 0.00853729248046875, -0.0072479248046875, 0.0193634033203125, -0.03240966796875, + 0.0154266357421875, 0.0232696533203125, -0.0538330078125, 0.00475311279296875, + 0.0162353515625, -0.04095458984375, -0.03173828125, 0.0108184814453125, -0.0284271240234375, + -0.0217437744140625, -0.01367950439453125, 0.091552734375, 0.030975341796875, + 0.00519561767578125, 0.035430908203125, -0.01031494140625, -0.03790283203125, + -0.037200927734375, -0.0232391357421875, 0.0023937225341796875, -0.00859832763671875, + 0.00536346435546875, -0.0214080810546875, -0.039154052734375, -0.07635498046875, + -0.0242767333984375, 0.0146331787109375, -0.003292083740234375, -0.061767578125, + 0.044708251953125, -0.044677734375, -0.04046630859375, -0.006908416748046875, + 0.034027099609375, 0.0265960693359375, -0.0079193115234375, -0.01525115966796875, + 0.002628326416015625, -0.0149993896484375, 0.030242919921875, -0.020416259765625, + 0.0406494140625, 0.00835418701171875, -0.00992584228515625, -0.045379638671875, + 0.0038051605224609375, -0.0040435791015625, -0.038726806640625, 0.05426025390625, + -0.0254974365234375, -0.02581787109375, 0.006145477294921875, -0.03985595703125, + -0.044189453125, 0.0256805419921875, 0.0283660888671875, 0.0168914794921875, + -0.05303955078125, 0.01067352294921875, -0.018707275390625, -0.0211181640625, 0.0721435546875, + 0.01425933837890625, -0.0060577392578125, -0.00039076805114746094, -0.07037353515625, + -0.0036029815673828125, -0.006580352783203125, -0.01275634765625, 0.04010009765625, + -0.0079345703125, -0.062164306640625, -0.0014600753784179688, -0.01410675048828125, + 0.0084686279296875, -0.006343841552734375, -0.00312042236328125, 0.032073974609375, + -0.0303802490234375, -0.01342010498046875, 0.00022792816162109375, -0.007694244384765625, + 0.021942138671875, -0.0207366943359375, -0.0263824462890625, -0.01806640625, + -0.046478271484375, -0.03021240234375, -0.026397705078125, -0.005634307861328125, + 0.020172119140625, 0.03216552734375, -0.0006933212280273438, -0.02191162109375, + -0.0190277099609375, -0.01483917236328125, 0.0237274169921875, 0.0174102783203125, + 0.002777099609375, 0.025604248046875, 0.0275115966796875, -0.01174163818359375, + 0.0020198822021484375, 0.016815185546875, 0.0195770263671875, -0.0277099609375, + 0.0089569091796875, -7.11679458618164e-5, 0.00554656982421875, -0.0016002655029296875, + -0.03985595703125, -0.040802001953125, 0.050689697265625, -0.01171875, 0.0129241943359375, + 0.009429931640625, 0.02142333984375, 0.021697998046875, 0.0276031494140625, + 0.006145477294921875, 0.0751953125, -0.0269927978515625, 0.046905517578125, 0.017059326171875, + -0.0282745361328125, 0.032073974609375, -0.019866943359375, -0.00626373291015625, + 0.0022640228271484375, -0.01708984375, 0.01381683349609375, -0.0032978057861328125, + -0.04400634765625, -0.026123046875, 0.0175323486328125, 0.02130126953125, + -0.007678985595703125, -0.018524169921875, -0.06378173828125, 0.0205841064453125, + 0.0335693359375, 0.0390625, -0.04656982421875, 0.0039215087890625, 0.029510498046875, + 0.0316162109375, -0.0269012451171875, 0.0171356201171875, 0.00409698486328125, + 0.0045928955078125, -0.0020046234130859375, -0.0157012939453125, -0.011199951171875, + 0.00746917724609375, -0.00177764892578125, 0.004787445068359375, -0.055511474609375, + 0.00856781005859375, 0.0128173828125, 0.0018205642700195312, 0.0016345977783203125, + -0.0015439987182617188, 0.0008406639099121094, -0.039886474609375, 0.0018777847290039062, + -0.042144775390625, -0.005035400390625, -0.00617218017578125, -0.00885009765625, + -0.005771636962890625, -0.01387786865234375, 0.0051727294921875, 0.0042266845703125, + -0.00817108154296875, -0.009979248046875, -0.0092926025390625, 0.00737762451171875, + 0.027587890625, -0.0136260986328125, -0.0282135009765625, 0.00031495094299316406, + 0.007778167724609375, -0.018646240234375, 0.00197601318359375, -0.01197052001953125, + 0.0300445556640625, -0.00708770751953125, -0.009185791015625, -0.031585693359375, + -0.040374755859375, 0.026519775390625, 0.033843994140625, 0.0097198486328125, + -0.04974365234375, -0.040252685546875, 0.021942138671875, -0.040283203125, -0.0084228515625, + 0.004383087158203125, -0.02130126953125, 0.038330078125, -0.003139495849609375, + -0.01097869873046875, 0.029632568359375, -8.893013000488281e-5, 0.00626373291015625, + -0.0066680908203125, 0.01367950439453125, -0.041107177734375, -0.0186614990234375, + -0.017913818359375, -0.0025539398193359375, 0.014007568359375, 0.006725311279296875, + -0.003814697265625, -0.01197052001953125, -0.01105499267578125, -0.0116119384765625, + -0.0282745361328125, 0.01006317138671875, -0.046630859375, 0.0024623870849609375, + -0.004459381103515625, 0.0221710205078125, 0.01031494140625, -0.048126220703125, + -0.0084991455078125, -0.01091766357421875, -0.0128021240234375, -0.01084136962890625, + 0.0007596015930175781, 0.03753662109375, -0.00844573974609375, 0.013427734375, + -0.0321044921875, -0.033966064453125, 0.0036449432373046875, -0.006183624267578125, + -0.035736083984375, 0.0216217041015625, 0.0067596435546875, -0.00957489013671875, + -0.0333251953125, -0.03887939453125, -0.0452880859375, -0.004756927490234375, + 0.032073974609375, -0.0174713134765625, 0.046356201171875, -0.0179595947265625, + -0.01763916015625, 0.01175689697265625, -0.006465911865234375, -0.00876617431640625, + 0.00208282470703125, -0.0166015625, -0.006011962890625, 0.0104217529296875, + -0.0006012916564941406, 0.024749755859375, -0.00138092041015625, 0.0244598388671875, + -0.01523590087890625, 0.016632080078125, 0.01537322998046875, -0.0004031658172607422, + -0.0015583038330078125, -0.0182037353515625, -0.0259552001953125, -0.02459716796875, + -0.0287933349609375, -0.0069580078125, -0.0244293212890625, -0.03955078125, + -0.0007252693176269531, -0.01248931884765625, 0.027435302734375, 0.0169677734375, + 0.039642333984375, 0.0183563232421875, 0.0419921875, 0.007198333740234375, -0.013885498046875, + 0.0006518363952636719, 0.01181793212890625, -0.0220947265625, 0.01035308837890625, + 0.0048370361328125, 0.0263519287109375, -0.0009479522705078125, 0.01079559326171875, + 0.021270751953125, 0.04229736328125, 0.004802703857421875, 0.0225830078125, 0.019927978515625, + -0.007755279541015625, -0.0246734619140625, 0.0082855224609375, -0.0079345703125, + 0.00116729736328125, 0.046966552734375, 0.0024585723876953125, -0.038482666015625, + -0.0288238525390625, 0.01212310791015625, 0.0278167724609375, 0.007541656494140625, + 0.00968170166015625, -0.00563812255859375, 0.046417236328125, 0.0189208984375, + 0.002361297607421875, 0.0011930465698242188, -0.01052093505859375, 0.0304718017578125, + 0.0173187255859375, -0.0148162841796875, -0.00270843505859375, -0.00441741943359375, + -0.003780364990234375, 0.01041412353515625, 0.0770263671875, -0.03057861328125, + -0.0207977294921875, -0.00432586669921875, -0.01554107666015625, -0.0401611328125, + -0.00624847412109375, 0.0005922317504882812, 0.024688720703125, -0.003566741943359375, + -0.01236724853515625, 0.002376556396484375, -0.03582763671875, -0.04766845703125, + 0.0147857666015625, 0.0290985107421875, 0.004161834716796875, -0.05792236328125, + -0.06787109375, 0.01360321044921875, 0.0249481201171875, 0.028839111328125, + -0.012176513671875, -0.03631591796875, 0.004840850830078125, -0.037322998046875, + -0.0240631103515625, 0.05303955078125, -0.03277587890625, -0.00968170166015625, + 0.019256591796875, 0.0110931396484375, -0.0228271484375, 0.01678466796875, 0.0211639404296875, + 0.051971435546875, 0.01763916015625, -0.01291656494140625, -0.041595458984375, 0.03759765625, + 0.0168304443359375, -0.0106658935546875, -0.041412353515625, 0.033721923828125, + 3.933906555175781e-6, -0.0023288726806640625, 0.0193939208984375, 0.03057861328125, + -0.056549072265625, 0.043121337890625, -0.0223236083984375, -0.01169586181640625, + -0.015899658203125, -0.021392822265625, 0.0477294921875, -0.0112152099609375, + 0.008270263671875, 0.0065460205078125, -0.00803375244140625, -0.0226898193359375, + -0.0247650146484375, -0.00502777099609375, -0.03131103515625, 0.012237548828125, + -0.003505706787109375, 0.01239776611328125, -0.02685546875, -0.0184478759765625, + 0.00321197509765625, 0.0104217529296875, 0.020111083984375, -0.0133819580078125, + -0.007038116455078125, -0.0184326171875, 0.0118560791015625, 0.006504058837890625, + 0.0256195068359375, 0.00482940673828125, -0.0110931396484375, 0.032196044921875, + -0.003864288330078125, -0.00394439697265625, 0.001399993896484375, -0.0178985595703125, + 0.011505126953125, -0.0010852813720703125, -0.035064697265625, -0.03607177734375, + -0.01611328125, 0.01042938232421875, -0.00612640380859375, -0.0004987716674804688, + 0.0311737060546875, -0.0194244384765625, 0.0469970703125, -0.0124359130859375, + -0.01151275634765625, 0.055999755859375, -0.04290771484375, 0.00714874267578125, 0.009765625, + -0.00945281982421875, -0.00830078125, -0.042236328125, 0.0386962890625, -0.054107666015625, + 0.0246429443359375, -0.024749755859375, 0.0237274169921875, -0.0205078125, + -0.00348663330078125, -0.0286102294921875, 0.034637451171875, 0.0021495819091796875, + 0.01120758056640625, -0.030181884765625, 0.0074615478515625, -0.002338409423828125, + 0.046142578125, 0.057647705078125, -0.044342041015625, 0.0004153251647949219, + -0.035064697265625, -0.005832672119140625, -0.0224761962890625, -0.00818634033203125, + -0.003093719482421875, -0.003936767578125, 0.000934600830078125, -0.0267486572265625, + 0.00867462158203125, 0.00884246826171875, 0.01110076904296875, 0.011505126953125, + 0.0023021697998046875, -0.0104217529296875, 0.03680419921875, -0.019012451171875, + 0.006450653076171875, 0.0175323486328125, 0.01453399658203125, 0.0226287841796875, + 0.00333404541015625, -0.0190582275390625, -0.01210784912109375, 0.0231781005859375, + 0.0284271240234375, -0.0105743408203125, 0.01318359375, -0.0231170654296875, + 0.007427215576171875, 0.0149993896484375, -0.0301361083984375, 0.0029125213623046875, + 0.0328369140625, 0.033935546875, 0.0108184814453125, -0.01430511474609375, -0.025177001953125, + -0.0232696533203125, 0.0021419525146484375, 0.021575927734375, -0.033935546875, + 0.0270538330078125, 0.0098876953125, -0.06524658203125, -0.006687164306640625, + 0.03167724609375, -0.0443115234375, -0.0112457275390625, -8.922815322875977e-5, + 0.00217437744140625, 0.0207366943359375, -0.027008056640625, 0.0093536376953125, + -0.0221710205078125, -0.02984619140625, 0.00772857666015625, 0.019805908203125, + -0.037322998046875, 0.0124359130859375, 0.01751708984375, -0.031890869140625, + -0.019927978515625, -0.0254058837890625, 0.036956787109375, -0.007694244384765625, + -0.00975799560546875, 0.0018129348754882812, 0.006229400634765625, -0.005584716796875, + 0.040496826171875, -0.01551055908203125, 0.0107269287109375, 0.056610107421875, + 0.0294036865234375, -0.0240020751953125, -0.02459716796875, -0.0185394287109375, + -0.08514404296875, -0.0016469955444335938, -0.0187225341796875, 0.006927490234375, + -0.0009379386901855469, -0.033416748046875, -0.01248931884765625, -0.0139312744140625, + -0.060272216796875, -0.03466796875, 0.015869140625, -0.006687164306640625, + 0.0010099411010742188, 0.0133819580078125, -0.024993896484375, -0.00862884521484375, + 0.02362060546875, 0.00504302978515625, -0.00022864341735839844, -0.035064697265625, + 0.0167999267578125, -0.017120361328125, 0.043853759765625, -0.038360595703125, + -0.0411376953125, -0.0128173828125, -0.0208587646484375, 0.001354217529296875, + 0.00023102760314941406, 0.0294036865234375, 0.029541015625, -0.0192108154296875, + -0.018218994140625, -0.013671875, -0.0229034423828125, 0.03472900390625, 0.03924560546875, + 0.022857666015625, 0.021820068359375, -0.004039764404296875, -0.037384033203125, + 0.009033203125, -0.01641845703125, 0.0293426513671875, -0.02667236328125, 0.0618896484375, + -0.03515625, -0.036529541015625, -0.0002391338348388672, 0.030670166015625, -0.0185546875, + 0.046539306640625, 0.01216888427734375, -0.05322265625, 0.021453857421875, + 0.00015878677368164062, 0.002391815185546875, 0.01554107666015625, -0.02532958984375, + 0.05718994140625, -0.0250091552734375, 0.002414703369140625, -0.022857666015625, + 0.018341064453125, -0.008880615234375, 0.002628326416015625, -0.004009246826171875, + 0.001781463623046875, -0.020599365234375, 0.0251922607421875, -0.01122283935546875, + -0.01218414306640625, -0.011260986328125, 0.00537872314453125, 0.01074981689453125, + -0.004543304443359375, 0.0341796875, -0.00693511962890625, 0.01885986328125, + 0.018341064453125, 0.04193115234375, -0.016143798828125, -0.01535797119140625, + 0.0171356201171875, 0.0202178955078125, -0.031341552734375, -0.005451202392578125, + -0.03424072265625, 0.0215911865234375, 0.04119873046875, -0.0249786376953125, 0.012451171875, + -0.006504058837890625, -0.020263671875, -0.0164794921875, 0.003314971923828125, + 0.04510498046875, -0.01108551025390625, -0.01119232177734375, -0.0286712646484375, + 0.007343292236328125, 0.00623321533203125, 0.01067352294921875, 0.0173492431640625, + -0.002170562744140625, -0.01317596435546875, -0.036407470703125, -0.00263214111328125, + -0.0323486328125, 0.0094451904296875, 0.01047515869140625, 0.00409698486328125, + -0.001041412353515625, 0.013275146484375, 0.029937744140625, 0.00922393798828125, + -0.011505126953125, 0.01302337646484375, 0.00021576881408691406, 0.019866943359375, + -0.031585693359375, 0.07171630859375, -0.00659942626953125, -0.007205963134765625, + -0.0220794677734375, 0.028289794921875, 0.0369873046875, -0.0238800048828125, + -0.057586669921875, 0.0149688720703125, -0.0201263427734375, -0.01129150390625, + 0.0168304443359375, -0.0256195068359375, -0.026458740234375, 0.027923583984375, + 0.01197052001953125, 0.005741119384765625, -0.00159454345703125, 0.035003662109375, + -0.06103515625, 0.0092315673828125, 0.0013475418090820312, -0.016693115234375, + -0.019195556640625, 0.0005240440368652344, 0.02667236328125, -0.0015354156494140625, + -0.00495147705078125, 0.00785064697265625, -0.0189056396484375, -0.01016998291015625, + -0.03594970703125, -0.005603790283203125, 0.00563812255859375, -0.030548095703125, + -0.055877685546875, 0.0034637451171875, 0.0062255859375, 0.0038852691650390625, + 0.0007491111755371094, 0.02374267578125, -0.0008578300476074219, 0.0144805908203125, + 0.033721923828125, -0.0108489990234375, -0.0257568359375, -0.026031494140625, + 0.024444580078125, 0.0236663818359375, -0.01108551025390625, -0.0047454833984375, + -0.01163482666015625, 0.009307861328125, 0.00732421875, 0.0031280517578125, + -0.0056304931640625, 0.0207061767578125, -0.0046234130859375, -0.0027942657470703125, + 0.0118560791015625, -0.038360595703125, -0.0042572021484375, 0.0146026611328125, + 0.01206207275390625, 0.00848388671875, 0.0198974609375, -0.0026493072509765625, + 0.01250457763671875, 0.0013284683227539062, -0.01531982421875, 0.02386474609375, + 0.04437255859375, 0.024658203125, -0.02239990234375, -0.0177459716796875, 0.0161895751953125, + 0.0208587646484375, -0.012542724609375, -0.0017185211181640625, -0.0285797119140625, + 0.04473876953125, -0.0222625732421875, 0.038726806640625, 0.02691650390625, + -0.0276336669921875, -0.006595611572265625, 0.00457763671875, -0.00765228271484375, + 0.0310821533203125, -0.0121307373046875, 0.0307464599609375, 0.02642822265625, + -0.00859832763671875, -0.0098876953125, -0.0199737548828125, 0.01238250732421875, + 0.02001953125, -0.0131378173828125, 0.007595062255859375, 0.0228118896484375, + -0.024505615234375, -0.034454345703125, -0.0193634033203125, 0.06573486328125, + 0.0065765380859375, -0.0007157325744628906, -0.0183868408203125, -0.0251312255859375, + -0.0180511474609375, -0.0113372802734375, 0.0026226043701171875, -0.0030460357666015625, + -0.020721435546875, -0.0038776397705078125, 0.0009169578552246094, -0.04095458984375, + -0.01413726806640625, 0.00925445556640625, -0.0155029296875, -0.00873565673828125, + -0.025360107421875, 0.01483917236328125, -0.03289794921875, -0.007678985595703125, + 0.01367950439453125, -0.0196380615234375, 0.011688232421875, -0.03228759765625, + -0.01519012451171875, -0.0110321044921875, -0.0125885009765625, -0.032196044921875, + 0.0086822509765625, 0.030181884765625, 0.00592803955078125, 0.01277923583984375, + -0.004383087158203125, -0.0160675048828125, -0.01800537109375, 0.0197296142578125, + -0.0008244514465332031, 0.083251953125, -0.00661468505859375, -0.035369873046875, + 0.0190887451171875, 0.017852783203125, 0.00406646728515625, 0.0175933837890625, + 0.022979736328125, 0.0005011558532714844, 0.0027866363525390625, 0.0010442733764648438, + -0.0001538991928100586, -0.0004787445068359375, -0.0244903564453125, -0.0225677490234375, + -0.01103973388671875, 8.893013000488281e-5, -0.003509521484375, 0.01287078857421875, + -0.00531005859375, 0.0070037841796875, -0.004459381103515625, 0.0214691162109375, + 0.002094268798828125, 0.0011014938354492188, -0.0333251953125, 0.02288818359375, + 0.01091766357421875, 0.0171051025390625, 0.006622314453125, 0.03155517578125, + 0.005550384521484375, -0.0457763671875, 0.01435089111328125, 0.02166748046875, + -0.0108489990234375, 0.034912109375, -0.03253173828125, 0.0401611328125, -0.02252197265625, + -0.0009169578552246094, -0.01019287109375, 0.037994384765625, -0.0178985595703125, + 0.0157470703125, 0.00984954833984375, 0.0110931396484375, -0.01458740234375, + -0.0236968994140625, 0.0168609619140625, -0.0086822509765625, 0.044830322265625, + 0.02716064453125, 0.01232147216796875, -0.043701171875, -0.030609130859375, + -0.0138397216796875, 0.00650787353515625, 0.004718780517578125, -0.03704833984375, + 0.006649017333984375, -0.02569580078125, -0.0010309219360351562, -0.043121337890625, + -0.019744873046875, -0.037872314453125, -0.011322021484375, -0.0088043212890625, + 0.0064239501953125, -0.0038776397705078125, 0.007110595703125, 0.01190185546875, + -0.010467529296875, 0.01250457763671875, -0.0167694091796875, -0.01290130615234375, + -0.012054443359375, -0.0010328292846679688, -0.004375457763671875, -0.01554107666015625, + 0.003208160400390625, -0.00701904296875, -0.024383544921875, 0.02130126953125, + -0.0084381103515625, -0.027679443359375, -0.0241546630859375, -0.007110595703125, + -0.004314422607421875, -0.018707275390625, 0.035858154296875, 0.03973388671875, + 0.003337860107421875, -0.013458251953125, -0.0019321441650390625, 0.04278564453125, + 0.03289794921875, -0.016326904296875, -0.03448486328125, -0.0218658447265625, + 0.00803375244140625, -0.0275421142578125, -0.0234222412109375, 0.0188140869140625, + -0.0174102783203125, -0.01523590087890625, 0.00738525390625, 0.00478363037109375, + 0.0149688720703125, 0.017364501953125, -0.015655517578125, 0.03485107421875, + 0.01206207275390625, -0.037322998046875, -0.020751953125, 0.0190582275390625, + 0.034149169921875, -0.007587432861328125, -0.0013675689697265625, -0.006183624267578125, + -0.01093292236328125, -0.0091552734375, -0.01093292236328125, -0.013702392578125, + 0.0272674560546875, 0.036468505859375, 0.00395965576171875, -0.0016155242919921875, + 0.01291656494140625, -0.0099334716796875, 0.002674102783203125, 0.00931549072265625, + -0.0287017822265625, 0.00862884521484375, 0.00653839111328125, 0.042694091796875, + -0.0012025833129882812, 0.0045928955078125, 0.0111541748046875, 0.0030498504638671875, + -0.016693115234375, 0.022918701171875, -0.0187835693359375, -0.007785797119140625, + 0.006244659423828125, 0.00478363037109375, -0.005199432373046875, -0.0103302001953125, + -0.002941131591796875, 0.0036411285400390625, -0.0235137939453125, 0.0113677978515625, + -0.00323486328125, 0.043792724609375, -0.011383056640625, 0.01245880126953125, + -0.017608642578125, -0.0428466796875, -0.033599853515625, -0.0408935546875, 0.0240478515625, + 0.0207977294921875, 0.0068359375, 0.0114288330078125, 0.03839111328125, 0.005680084228515625, + -0.0030345916748046875, 0.025146484375, -0.015289306640625, -0.01995849609375, + 0.0190582275390625, -0.058197021484375, -0.035400390625, -0.041168212890625, + -0.053558349609375, -0.01137542724609375, -0.002338409423828125, 0.005321502685546875, + 0.014007568359375, -0.0250091552734375, -0.060821533203125, 0.019866943359375, + 0.0367431640625, 0.00798797607421875, -0.0070648193359375, 0.0108184814453125, + 0.01102447509765625, -0.0096588134765625, 0.0293731689453125, -0.012908935546875, + 0.016632080078125, -0.00237274169921875, 0.01218414306640625, -0.0128936767578125, + -0.0051727294921875, 0.0275115966796875, -0.04144287109375, -0.0521240234375, + -0.0290374755859375, -0.0304107666015625, -0.0250091552734375, -0.007419586181640625, + -0.01727294921875, 0.03192138671875, 0.04583740234375, -0.01416778564453125, + -0.00926971435546875, 0.01495361328125, 0.01053619384765625, 0.004901885986328125, + -0.02117919921875, -0.0166473388671875, 0.0211334228515625, 0.006305694580078125, + -0.0304107666015625, 0.009765625, -0.0147552490234375, 0.042205810546875, + -0.00548553466796875, 0.0489501953125, -0.0118408203125, -0.04705810546875, + -0.01486968994140625, -0.055633544921875, -0.002498626708984375, -0.000644683837890625, + 0.03759765625, 0.01076507568359375, -0.0212249755859375, -0.0160675048828125, + 0.0251922607421875, 0.04559326171875, -0.0098876953125, 0.01702880859375, 0.00171661376953125, + -0.01378631591796875, -0.004894256591796875, 0.003238677978515625, -0.0182037353515625, + 0.03326416015625, 0.0200347900390625, -0.035980224609375, -0.01446533203125, 0.01287841796875, + -0.021881103515625, 0.022735595703125, -0.045440673828125, 0.00998687744140625, + -0.01145172119140625, 0.00982666015625, 0.030242919921875, 0.0124053955078125, + 0.006710052490234375, -0.03375244140625, -0.01454925537109375, 0.00849151611328125, + -0.007476806640625, -0.0149688720703125, -0.03375244140625, 0.00392913818359375, + 0.046966552734375, -0.003143310546875, -0.039276123046875, 0.006214141845703125, + 0.0106964111328125, 0.0178985595703125, -0.0193023681640625, 0.01023101806640625, + -0.0159912109375, 0.01136016845703125, 0.00731658935546875, 0.0225982666015625, + -0.0172119140625, -0.0178070068359375, -0.0004546642303466797, -0.03326416015625, + 0.0421142578125, 0.0015964508056640625, 0.0164642333984375, -0.010986328125, + -0.02008056640625, -0.0287933349609375, 0.00630950927734375, -0.0160675048828125, + -0.0014553070068359375, -0.0053253173828125, -0.00762939453125, 0.004638671875, + -0.01212310791015625, 0.00724029541015625, -0.0167083740234375, -0.020660400390625, + -0.0560302734375, -0.02496337890625, 0.0254669189453125, 0.04559326171875, 0.0095367431640625, + -0.011810302734375, 0.003204345703125, 0.044189453125, 0.02740478515625, 0.00849151611328125, + 0.01568603515625, 0.01134490966796875, -0.00296783447265625, 0.052337646484375, + -0.01049041748046875, 0.03204345703125, 0.002864837646484375, -0.0291595458984375, + 0.040771484375, -0.01058197021484375, 0.0134124755859375, 0.005977630615234375, + -0.0066986083984375, 0.0263671875, 0.0189971923828125, 0.0316162109375, -0.050262451171875, + 0.0428466796875, -0.0263824462890625, -0.0017375946044921875, -0.00893402099609375, + 0.0038433074951171875, 0.0023632049560546875, -0.0160369873046875, 0.01204681396484375, + -0.0204010009765625, 0.01026153564453125, -0.007659912109375, -0.00799560546875, + -0.00038886070251464844, 0.01361083984375, 0.01177215576171875, -0.0271759033203125, + 0.00809478759765625, 0.0004930496215820312, -0.00927734375, 0.006893157958984375, + -0.0423583984375, 0.0110015869140625, -0.0092315673828125, 0.014068603515625, 0.0460205078125, + -0.0215301513671875, 0.032806396484375, 0.0008234977722167969, 0.03125, + -0.0026454925537109375, 0.04986572265625, -0.034423828125, -0.029876708984375, + -0.0164947509765625, -0.0007252693176269531, -0.00833892822265625, -0.0007910728454589844, + 0.0016536712646484375, 0.0196075439453125, -0.0175933837890625, 0.0244598388671875, + 0.0277099609375, 0.0244140625, -0.01348114013671875, 0.00786590576171875, -0.0126190185546875, + -0.027008056640625, -0.0264892578125, -0.015777587890625, 0.0130157470703125, + 0.039520263671875, -0.044677734375, -0.001758575439453125, 0.034576416015625, + -0.0262908935546875, 0.0074920654296875, -0.0211944580078125, 0.0179595947265625, + 0.003780364990234375, -0.0270843505859375, -0.036712646484375, 0.002216339111328125, + -0.035064697265625, -0.033050537109375, -0.01275634765625, 0.005096435546875, + -0.018829345703125, -0.007770538330078125, -0.0086212158203125, 0.0054473876953125 + ] + }, + { + "tag": "wellness", + "description": "an event promoting physical or mental well-being, self-care, yoga, meditation, mindfulness sessions, mental health workshops, stress-relief activities, or social recreation", + "embedding": [ + 0.01131439208984375, 0.01331329345703125, 0.0311279296875, 0.040008544921875, + -0.018707275390625, 0.002620697021484375, 0.028961181640625, 0.02783203125, 0.037689208984375, + 0.0364990234375, 0.0292205810546875, 0.0024051666259765625, -0.025299072265625, + -0.025146484375, 0.014617919921875, 0.07110595703125, -0.002655029296875, + -0.0034351348876953125, 0.033355712890625, 0.053558349609375, 0.06451416015625, + 0.053009033203125, -0.035003662109375, 0.01157379150390625, -0.032623291015625, + 0.0017681121826171875, -0.0240325927734375, 0.0031585693359375, 0.018890380859375, + 0.0168304443359375, 0.03271484375, -0.0390625, 0.032440185546875, -0.007511138916015625, + 0.013092041015625, 0.049896240234375, -0.0284881591796875, -0.0032787322998046875, + 0.0172882080078125, -0.0264129638671875, -0.0008382797241210938, -0.06396484375, + -0.0047607421875, 0.06854248046875, -0.0149993896484375, -0.01265716552734375, + -0.0180206298828125, -0.01666259765625, 0.0264739990234375, 0.0167236328125, + -0.0293121337890625, -0.036956787109375, 0.031982421875, 0.039520263671875, 0.00396728515625, + 0.0098419189453125, -0.005359649658203125, 0.0210418701171875, -0.0147857666015625, + 0.02532958984375, 0.06512451171875, 0.002719879150390625, 0.0225677490234375, + 0.035858154296875, -0.040618896484375, 0.03753662109375, 0.011993408203125, + -0.0028228759765625, 0.023406982421875, 0.005893707275390625, 0.060882568359375, + 0.04595947265625, 0.01023101806640625, 0.00982666015625, 0.04864501953125, + -0.0170745849609375, 0.02435302734375, -0.0308990478515625, 0.0062713623046875, + 0.0177154541015625, 0.04150390625, 0.0019512176513671875, -0.00801849365234375, + 0.04852294921875, -0.0119476318359375, -0.0274658203125, -0.064208984375, + 0.002452850341796875, -0.042694091796875, 0.0841064453125, 0.005336761474609375, + -0.014129638671875, -0.01560211181640625, 0.051666259765625, 0.051025390625, + -0.0280303955078125, 0.04046630859375, -0.03924560546875, -0.0125579833984375, + 0.045501708984375, 0.00801849365234375, -0.06884765625, -0.046295166015625, + 0.002109527587890625, 0.00989532470703125, -0.002857208251953125, -0.01026153564453125, + -0.017669677734375, 0.004581451416015625, 0.02001953125, -0.082275390625, -0.028289794921875, + -0.005706787109375, 0.051025390625, 0.00843048095703125, -0.01186370849609375, + 0.047149658203125, -0.0194549560546875, -0.00933837890625, -0.0205078125, -0.038787841796875, + 0.0214996337890625, 0.020294189453125, -0.0316162109375, -0.0450439453125, + -0.006481170654296875, -0.03302001953125, -0.0194091796875, -0.031219482421875, + -0.0272369384765625, 0.04718017578125, 0.037750244140625, 0.02813720703125, -0.054931640625, + -0.0183868408203125, -0.07122802734375, -0.052703857421875, 0.0418701171875, + -0.04888916015625, -0.051971435546875, 0.047760009765625, -0.0247955322265625, + 0.00453948974609375, 0.017364501953125, -0.01088714599609375, -0.046478271484375, + 0.03173828125, 0.013641357421875, -0.002834320068359375, 0.009490966796875, -0.04022216796875, + 0.01409149169921875, -0.0269012451171875, 0.040130615234375, 0.01922607421875, + -0.011749267578125, 0.006618499755859375, -0.025909423828125, -0.006359100341796875, + -0.03399658203125, -0.0264739990234375, -0.028167724609375, -0.0232696533203125, + -0.004993438720703125, 0.04119873046875, -0.0293426513671875, -0.045745849609375, + 0.005062103271484375, -0.026458740234375, -0.01806640625, 0.033050537109375, + -0.039154052734375, -0.0129547119140625, 0.073486328125, 0.01849365234375, 0.0156402587890625, + 0.045501708984375, 0.035614013671875, -0.052154541015625, 0.037200927734375, + 0.0193328857421875, 0.02154541015625, -0.06597900390625, 0.007152557373046875, + 0.0019626617431640625, 0.035369873046875, -0.033172607421875, 0.0293121337890625, + 0.0137939453125, 0.0312042236328125, 0.005939483642578125, 0.0175018310546875, + 0.0174102783203125, 0.05804443359375, 0.05438232421875, -0.039306640625, -0.018798828125, + 0.016143798828125, -0.01265716552734375, 0.037689208984375, -0.0657958984375, + -0.0650634765625, 0.01459503173828125, -0.01202392578125, 0.0189056396484375, + -0.01255035400390625, -0.0271148681640625, 0.004726409912109375, 0.035400390625, + -0.001102447509765625, 0.016937255859375, 0.0142974853515625, 0.056732177734375, + 0.01084136962890625, 0.0169525146484375, 0.006938934326171875, 0.056732177734375, + 0.0259857177734375, 0.01519775390625, 0.0184173583984375, 0.0135040283203125, + 0.0292205810546875, 0.06964111328125, 0.040252685546875, 0.0345458984375, + -0.007549285888671875, -0.01302337646484375, -0.01751708984375, -0.0185699462890625, + -0.06378173828125, -0.00885772705078125, 0.026885986328125, -0.0002872943878173828, + 0.035247802734375, 0.0263519287109375, -0.019775390625, 0.0155487060546875, + -0.0175323486328125, 0.0259857177734375, -0.02215576171875, 0.047210693359375, -0.03466796875, + -0.0222015380859375, -0.00714874267578125, -0.01291656494140625, 0.043670654296875, + -0.01132965087890625, -0.05352783203125, 0.005641937255859375, -0.004016876220703125, + 0.0238037109375, 0.00021767616271972656, -0.0487060546875, 0.005496978759765625, + 0.0003647804260253906, -0.02642822265625, 0.00492095947265625, -0.007129669189453125, + -0.003353118896484375, -0.004810333251953125, 0.072021484375, -0.01203155517578125, + 0.0400390625, -0.0167236328125, 0.01087188720703125, 0.01496124267578125, -0.0203704833984375, + 0.042999267578125, 0.01355743408203125, 0.00920867919921875, 0.004680633544921875, + -0.039337158203125, -0.001819610595703125, -0.0594482421875, 0.023223876953125, + 0.01474761962890625, 0.040802001953125, 0.05145263671875, 0.01183319091796875, + -0.0165557861328125, 0.0201263427734375, -0.007656097412109375, 0.0299224853515625, + -0.038970947265625, 0.022064208984375, 0.0421142578125, 0.01142120361328125, + -0.020477294921875, -0.050506591796875, 0.061431884765625, -0.040557861328125, + -0.01439666748046875, 0.0003857612609863281, 0.036407470703125, -0.00720977783203125, + 0.003627777099609375, 0.0185546875, -0.004711151123046875, 0.0160369873046875, + 0.0133819580078125, 0.0022125244140625, 0.00189208984375, -0.060791015625, + -0.00548553466796875, 0.0237274169921875, 0.064453125, -0.0222930908203125, -0.02130126953125, + 0.071044921875, -0.01326751708984375, -0.00646209716796875, 0.01029205322265625, + -0.02203369140625, 0.015289306640625, -0.0168914794921875, -0.01432037353515625, + 0.021881103515625, 0.0968017578125, 0.037322998046875, -0.0262298583984375, + -0.0007538795471191406, 0.0185394287109375, 0.042938232421875, -0.016082763671875, + 0.07086181640625, -0.031951904296875, -0.0039005279541015625, 0.0318603515625, + -0.051116943359375, -0.02532958984375, -0.0286712646484375, 0.018096923828125, + -0.0198516845703125, 0.05902099609375, 0.0194854736328125, 0.0109100341796875, + 0.0226898193359375, -0.0528564453125, 0.01480865478515625, -0.00830841064453125, + -0.04986572265625, -0.045745849609375, -0.05902099609375, 0.0292205810546875, -0.03271484375, + 0.016815185546875, 0.001354217529296875, 0.00643157958984375, -0.0246124267578125, + 0.03167724609375, 0.0119476318359375, -0.03570556640625, 0.0086822509765625, + -0.0178375244140625, 0.00023055076599121094, -0.012664794921875, 0.041046142578125, + 0.0025653839111328125, -0.0225677490234375, 0.0219573974609375, -0.0031032562255859375, + -0.016448974609375, 0.046356201171875, -0.0201416015625, 0.0574951171875, 0.066162109375, + -0.0579833984375, 0.0015325546264648438, 0.01284027099609375, -0.02813720703125, + 0.031402587890625, 0.0028820037841796875, 0.052215576171875, 0.00405120849609375, + -0.029449462890625, 0.07562255859375, 0.0171661376953125, 0.048858642578125, + 0.01401519775390625, -0.0205535888671875, -0.015869140625, 0.00777435302734375, + -0.04852294921875, -0.004894256591796875, -0.01174163818359375, 0.044036865234375, + -0.007022857666015625, 0.0162200927734375, -0.0482177734375, -0.00853729248046875, + 0.038055419921875, -0.031097412109375, -0.055511474609375, 0.01488494873046875, + -0.004863739013671875, -0.0135040283203125, -0.021392822265625, 0.01273345947265625, + 0.0164794921875, -0.0157012939453125, -0.0006051063537597656, 0.0018405914306640625, + -0.00228118896484375, 0.027557373046875, -0.037200927734375, -0.003017425537109375, + -0.024383544921875, -0.051605224609375, -0.03662109375, 0.0034332275390625, + 0.00875091552734375, -0.06488037109375, 0.023651123046875, 0.0234375, -0.035858154296875, + -0.00981903076171875, -0.0010156631469726562, -0.026763916015625, 0.01131439208984375, + 0.01346588134765625, 0.01319122314453125, -0.0165863037109375, -0.01824951171875, + 0.03369140625, 0.01447296142578125, 0.07373046875, -0.00910186767578125, -0.05181884765625, + -0.053558349609375, -0.0726318359375, -0.004970550537109375, -0.005023956298828125, + -0.0005478858947753906, -0.007755279541015625, 0.036346435546875, 0.0011644363403320312, + 0.026336669921875, 0.002346038818359375, 0.0072174072265625, -0.0017080307006835938, + -0.02923583984375, 0.015411376953125, -0.0250244140625, 0.033599853515625, 0.0160980224609375, + 0.0172119140625, -0.018585205078125, 0.0018091201782226562, -0.00910186767578125, + -0.03668212890625, -0.02886962890625, -0.0089263916015625, -0.0175933837890625, + -0.01898193359375, -0.0103759765625, -0.0019168853759765625, -0.0220489501953125, + -0.0465087890625, 0.0223388671875, -0.0013895034790039062, 0.005428314208984375, + 0.02880859375, 0.01224517822265625, 0.0238189697265625, 0.072265625, -0.013916015625, + -0.008453369140625, -0.01309967041015625, -0.01174163818359375, 0.0017871856689453125, + 0.01374053955078125, 0.0211639404296875, 0.0201263427734375, 0.0496826171875, -0.029296875, + -0.0230865478515625, 0.040924072265625, 0.0089874267578125, 0.025634765625, + -0.017974853515625, 0.0180511474609375, -0.006458282470703125, -0.003643035888671875, + 0.0244293212890625, 0.061004638671875, -0.018707275390625, 0.035736083984375, + -0.01080322265625, -0.0096893310546875, 0.01702880859375, -0.01085662841796875, + 0.0296478271484375, -0.026885986328125, -0.013580322265625, -0.00940704345703125, + -0.0004897117614746094, 0.0006213188171386719, 0.044525146484375, -0.01537322998046875, + 0.0144195556640625, -0.02349853515625, 0.00714874267578125, -0.0679931640625, + -0.004802703857421875, 0.054107666015625, 0.045318603515625, -0.02294921875, 0.04180908203125, + 0.0455322265625, 0.04388427734375, -0.01410675048828125, -0.03778076171875, + 0.005603790283203125, 0.0139312744140625, 0.015869140625, 0.00891876220703125, + 0.0142059326171875, 0.0133819580078125, -0.005306243896484375, -0.0021076202392578125, + -0.040435791015625, 0.0274810791015625, 0.01041412353515625, -0.0137786865234375, + 0.005611419677734375, -0.053253173828125, -0.01139068603515625, -0.022491455078125, + 0.008514404296875, -0.063232421875, -0.0290679931640625, 0.0306549072265625, 0.012939453125, + 0.013580322265625, -0.020050048828125, 0.0234375, -0.0024356842041015625, 0.0235748291015625, + 0.005374908447265625, 0.004329681396484375, 0.00327301025390625, 0.029296875, + 0.0197601318359375, -0.01229095458984375, -0.016326904296875, 0.0101165771484375, -0.03125, + -0.0080718994140625, -0.0160064697265625, 0.04840087890625, 0.0169525146484375, + -0.0199432373046875, 0.0192718505859375, -0.0183258056640625, 0.0345458984375, + 0.038665771484375, -0.004329681396484375, -0.005565643310546875, -0.001438140869140625, + 0.03399658203125, 0.0020599365234375, -0.030975341796875, 0.047149658203125, + 0.0038814544677734375, -0.01132965087890625, 0.0049285888671875, 0.0145721435546875, + 0.036102294921875, 0.006069183349609375, 0.01027679443359375, -0.0236968994140625, + -0.0192718505859375, -0.00450897216796875, -0.06585693359375, 0.0004982948303222656, + 0.022491455078125, -0.01451873779296875, -0.01267242431640625, -0.0254058837890625, + -0.0400390625, -0.01849365234375, -0.021881103515625, -0.022186279296875, -0.026580810546875, + -0.0526123046875, 0.0260009765625, 0.005649566650390625, 0.0076446533203125, + 0.0014429092407226562, -0.0018167495727539062, 0.00887298583984375, 0.0106964111328125, + 0.031005859375, 0.01751708984375, 0.01287841796875, 0.00821685791015625, -0.0202484130859375, + 0.001964569091796875, -0.024139404296875, -0.009918212890625, 0.0173492431640625, + 0.01788330078125, -0.00041103363037109375, -0.0095977783203125, 0.035125732421875, + 0.00923919677734375, -0.0394287109375, -0.030975341796875, -0.01186370849609375, + 0.0004062652587890625, 0.019073486328125, 0.013214111328125, 0.0374755859375, + -0.022064208984375, 0.01320648193359375, -0.0186309814453125, 0.00403594970703125, + -0.001544952392578125, 0.011962890625, -0.009033203125, -0.015533447265625, 0.02008056640625, + 0.03460693359375, 0.01340484619140625, 0.0187530517578125, 0.04815673828125, + -0.0207672119140625, -0.036895751953125, -0.0188446044921875, -0.00965118408203125, + -0.03582763671875, 0.005069732666015625, 0.004077911376953125, -0.0159912109375, + -0.0242462158203125, 0.0303955078125, -0.045379638671875, -0.016204833984375, + -0.007434844970703125, -0.020538330078125, 0.0350341796875, -0.0244293212890625, + 0.0108184814453125, -0.035430908203125, 0.0067596435546875, 0.0176544189453125, + -0.0097808837890625, -0.0079498291015625, 0.022705078125, -0.009307861328125, + -0.003021240234375, -0.0104522705078125, -0.007656097412109375, 0.03936767578125, + 0.011993408203125, 0.0068511962890625, -0.0009303092956542969, 0.03619384765625, + 0.0228729248046875, 0.0064239501953125, -0.0219268798828125, 0.0209808349609375, + -0.0216522216796875, -0.000247955322265625, 0.011688232421875, 0.07647705078125, + 0.0169830322265625, -0.04071044921875, -0.028961181640625, 0.0193023681640625, + 0.0012445449829101562, 0.007587432861328125, 0.01861572265625, 0.0147552490234375, + -0.005245208740234375, -0.0219879150390625, -0.011199951171875, 0.0033473968505859375, + 0.02032470703125, 1.811981201171875e-5, 0.006702423095703125, -0.0074920654296875, + -0.018707275390625, 0.0250396728515625, 0.0149383544921875, -0.0135040283203125, + 0.051055908203125, -0.0206451416015625, 0.00839996337890625, -0.0113372802734375, + 0.01123046875, -0.036407470703125, 0.0023403167724609375, 0.030242919921875, + -0.0206146240234375, 0.023406982421875, -0.0188446044921875, 0.0276641845703125, + 0.007541656494140625, -0.050323486328125, 0.01041412353515625, 0.037567138671875, + -0.01038360595703125, -0.0081634521484375, -0.00569915771484375, 0.01015472412109375, + 0.0019664764404296875, -0.0107879638671875, 0.0147705078125, -0.018280029296875, + 0.0164031982421875, -0.037017822265625, -0.005954742431640625, 0.00933837890625, + -0.0288848876953125, -0.02996826171875, 0.0361328125, 0.024078369140625, 0.0297698974609375, + 0.004871368408203125, -0.01451873779296875, 0.03619384765625, -0.0265350341796875, + -0.0226593017578125, -0.0193023681640625, 0.022918701171875, 0.007007598876953125, + -0.01093292236328125, -0.0270843505859375, -0.00408935546875, -0.0027523040771484375, + 0.0269317626953125, 0.00821685791015625, -0.00970458984375, -0.034332275390625, + 0.035247802734375, -0.002086639404296875, -0.0271148681640625, -0.0208282470703125, + -0.028564453125, 0.051849365234375, -0.0160369873046875, 0.0206298828125, + -0.007015228271484375, 0.0208282470703125, -0.01116180419921875, 0.0015735626220703125, + -0.0099639892578125, -0.02392578125, 0.0330810546875, 0.0211639404296875, 0.009063720703125, + -0.01216888427734375, 0.039093017578125, 0.0020618438720703125, -0.017120361328125, + -0.01678466796875, -0.01044464111328125, -0.009521484375, -0.017791748046875, + 0.037811279296875, 0.005657196044921875, 0.0157470703125, -0.0038967132568359375, + -0.006267547607421875, 0.0302734375, -0.005062103271484375, -0.00555419921875, + -0.0193328857421875, 0.0053253173828125, 0.00894927978515625, -0.0264739990234375, + -0.00937652587890625, -0.01290130615234375, 0.0192718505859375, -0.016082763671875, + -0.0120391845703125, -0.01175689697265625, 0.00989532470703125, 0.0231475830078125, + 0.037384033203125, -0.01142120361328125, 0.0250701904296875, -0.0005321502685546875, + -0.0037078857421875, -0.0004711151123046875, 0.0307159423828125, -0.0479736328125, + -0.0120086669921875, -0.03302001953125, -0.01105499267578125, -0.028961181640625, + 0.057281494140625, -0.058135986328125, 0.00939178466796875, -0.0504150390625, + -0.0291900634765625, -0.020538330078125, 0.0537109375, 0.0269775390625, -0.016357421875, + -0.0034580230712890625, -0.01250457763671875, 0.005229949951171875, 0.0201873779296875, + 0.04376220703125, -0.0312042236328125, 0.02618408203125, -0.00567626953125, + -0.039520263671875, -0.0026836395263671875, 0.01120758056640625, -0.0238800048828125, + -0.0091552734375, -0.004421234130859375, -0.039337158203125, 0.011260986328125, + 0.04693603515625, 0.01519775390625, 0.010894775390625, 0.049346923828125, -0.0210418701171875, + 0.02239990234375, 0.0129241943359375, -0.0020904541015625, 0.0284423828125, + -0.004711151123046875, 0.0287933349609375, 0.0187530517578125, -0.0192718505859375, + -0.01326751708984375, -0.00444793701171875, 0.060943603515625, -0.004055023193359375, + 0.048431396484375, 0.01251983642578125, -0.008331298828125, 0.00665283203125, + 0.0020904541015625, -0.00785064697265625, -0.020233154296875, 0.030853271484375, + 0.03948974609375, -0.006381988525390625, -0.00237274169921875, 0.02630615234375, + 0.015045166015625, -0.0149383544921875, 0.0092926025390625, -0.006885528564453125, + -0.024566650390625, -0.0233612060546875, 0.03961181640625, -0.0060882568359375, + -0.0462646484375, 0.0009546279907226562, 0.01354217529296875, 0.0034542083740234375, + -0.00847625732421875, -0.02142333984375, -0.010467529296875, -0.036590576171875, + 0.045501708984375, 0.012481689453125, 0.0096588134765625, -0.0249176025390625, + 0.0085601806640625, 0.01806640625, -0.002197265625, -0.03802490234375, -0.00771331787109375, + 0.011627197265625, -0.004215240478515625, -0.033172607421875, 0.05511474609375, + 0.0206146240234375, -0.0061798095703125, 0.035308837890625, 0.0019073486328125, + 0.002002716064453125, 0.04150390625, 0.0284576416015625, -0.01259613037109375, + 0.001811981201171875, -0.005584716796875, -0.018310546875, -0.0028228759765625, + 0.0068206787109375, 0.0040283203125, 0.057586669921875, -0.0240936279296875, + 0.005035400390625, -0.0004940032958984375, -0.05255126953125, 0.006908416748046875, + 0.0144805908203125, 0.0203857421875, -0.01503753662109375, 9.846687316894531e-5, + -0.00039076805114746094, -0.017425537109375, 0.006317138671875, -0.0286865234375, + -0.0245208740234375, -0.046661376953125, -0.0012264251708984375, -0.02972412109375, + 0.01678466796875, -0.0260009765625, 0.0032558441162109375, -0.04815673828125, + -0.0202484130859375, -0.0404052734375, -0.0237579345703125, 0.00916290283203125, + -0.0173797607421875, -0.0220489501953125, 0.00339508056640625, -0.00945281982421875, + -0.0258026123046875, 0.00460052490234375, 0.03936767578125, 0.0181732177734375, + -0.0284423828125, -0.01070404052734375, -0.0386962890625, 0.0242767333984375, + 0.01398468017578125, 0.02569580078125, -0.0165557861328125, 0.05145263671875, + -0.01044464111328125, 0.02032470703125, -0.0022068023681640625, 0.016815185546875, + 0.02587890625, 0.01422882080078125, 0.002788543701171875, -0.036590576171875, + 0.0053253173828125, -0.032684326171875, 0.01119232177734375, 0.0113372802734375, + -0.0151824951171875, -0.01276397705078125, 0.00913238525390625, 0.001369476318359375, + -0.04364013671875, -0.0115509033203125, -0.0121612548828125, 0.0037994384765625, + -0.0050506591796875, 0.0772705078125, -0.00792694091796875, 0.01033782958984375, + -0.03369140625, -0.0307159423828125, 0.006206512451171875, 0.03753662109375, + -0.0110321044921875, 0.0069580078125, -0.0293121337890625, 0.0198211669921875, + 0.01345062255859375, 0.030670166015625, 0.0280303955078125, -0.024749755859375, + -0.01175689697265625, -0.00528717041015625, 0.032684326171875, 0.0004267692565917969, + 0.0291900634765625, -0.018890380859375, 0.0159912109375, 0.01111602783203125, + 0.0199432373046875, 0.00827789306640625, 0.00865936279296875, -0.004726409912109375, + -0.00667572021484375, 0.0251312255859375, 0.052703857421875, 0.0111236572265625, + -0.0186309814453125, -0.03179931640625, -0.03277587890625, -0.0284576416015625, + 0.005767822265625, 0.0227813720703125, -0.00144195556640625, 0.00820159912109375, + -0.01255035400390625, 0.0177459716796875, -0.01267242431640625, -0.0030689239501953125, + 0.0025234222412109375, 0.0188751220703125, 0.0046539306640625, 0.01050567626953125, + 0.0222015380859375, -0.01763916015625, -0.0149993896484375, 0.0004050731658935547, + 0.0013103485107421875, 0.04290771484375, -0.0232696533203125, 0.0202178955078125, + 0.0194854736328125, 0.004993438720703125, -0.00951385498046875, 0.047027587890625, + 0.024566650390625, -0.00044155120849609375, -0.008941650390625, -0.02783203125, + -0.032196044921875, -0.00909423828125, 0.0122528076171875, -0.010406494140625, + 0.00383758544921875, 0.0286407470703125, -0.006343841552734375, -0.041259765625, + -0.0089111328125, 0.01204681396484375, -0.00739288330078125, 0.007015228271484375, + 0.01226806640625, 0.0008778572082519531, 0.000705718994140625, 0.016082763671875, + 4.011392593383789e-5, -0.0275421142578125, -0.021759033203125, -0.004817962646484375, + -0.0011835098266601562, 0.0207061767578125, 0.00144195556640625, -0.0008792877197265625, + 0.0157623291015625, -0.050689697265625, -0.01250457763671875, -0.03558349609375, + 0.0010175704956054688, 0.024871826171875, 0.01023101806640625, -0.0006709098815917969, + 0.0063629150390625, 0.033111572265625, 0.005550384521484375, -0.0277099609375, + -0.0280609130859375, -0.00157928466796875, 0.008148193359375, -0.006107330322265625, + -0.014556884765625, -0.0001577138900756836, -0.0095367431640625, 0.0267333984375, + 0.01024627685546875, -0.0189056396484375, -0.006000518798828125, 0.02410888671875, + 0.00228118896484375, 0.0104827880859375, 0.0113983154296875, -0.0060882568359375, + 0.002593994140625, -0.00714111328125, -0.0243377685546875, -0.007434844970703125, + 0.0362548828125, 0.01183319091796875, 0.0117340087890625, -0.0197906494140625, + -0.0021991729736328125, 0.004665374755859375, -0.004627227783203125, -0.0245208740234375, + 0.0016613006591796875, 0.007686614990234375, 0.006908416748046875, 0.00977325439453125, + -0.016326904296875, -0.00817108154296875, -0.0264739990234375, 0.037689208984375, + -0.047637939453125, 0.0033416748046875, -0.0027256011962890625, -0.00537872314453125, + -0.01123809814453125, 0.0206451416015625, -0.01323699951171875, -0.01071929931640625, + -0.0233154296875, 0.037384033203125, 0.0130767822265625, -0.007289886474609375, + 0.002685546875, 0.031524658203125, 0.00836181640625, 0.0311737060546875, -0.0189056396484375, + -0.0072174072265625, 0.0280914306640625, -0.037261962890625, -0.056640625, + -0.0044403076171875, -0.002964019775390625, 0.0211334228515625, -0.0230255126953125, + 0.038970947265625, -0.00991058349609375, -0.034393310546875, -0.0160369873046875, + -0.0168609619140625, 0.002346038818359375, 0.01097869873046875, -0.0197601318359375, + -0.0034503936767578125, -0.0531005859375, -0.0111846923828125, 0.034881591796875, + -0.025604248046875, 0.026763916015625, 0.01473236083984375, -0.00479888916015625, + 0.0027523040771484375, -0.0196685791015625, 0.0280609130859375, 0.01543426513671875, + 0.0085906982421875, -0.0260009765625, -0.059539794921875, 0.02276611328125, + -0.0026264190673828125, -0.0234527587890625, -0.01438140869140625, -0.0079345703125, + 0.019195556640625, 0.004886627197265625, -0.009002685546875, -0.01898193359375, + -0.0136260986328125, -0.0426025390625, 0.0159759521484375, 0.08062744140625, + 0.0005669593811035156, -0.00047969818115234375, 0.03948974609375, 0.0182037353515625, + 0.004291534423828125, -0.0286865234375, 0.004520416259765625, -0.0103607177734375, + -0.0079345703125, -0.0280609130859375, -0.005054473876953125, -0.00827789306640625, + -0.0233001708984375, -0.024566650390625, 0.01522064208984375, -0.042694091796875, + -0.01258087158203125, -0.0028228759765625, -0.003467559814453125, 0.0039825439453125, + -0.005657196044921875, 0.04376220703125, -0.01171875, 0.0182647705078125, -0.0293121337890625, + 0.03778076171875, -0.0202484130859375, 0.011962890625, -0.0136260986328125, + 0.0186920166015625, 0.023468017578125, -0.00525665283203125, 0.0243682861328125, + 0.017425537109375, 0.02191162109375, -0.0232696533203125, -0.0157318115234375, + 0.04400634765625, -0.03338623046875, 0.00653839111328125, -0.019561767578125, + 0.036346435546875, -0.0159912109375, 0.042816162109375, 0.0160064697265625, + -0.0032634735107421875, -0.01568603515625, 0.003887176513671875, 0.0011615753173828125, + 0.032196044921875, 0.03594970703125, 0.013946533203125, 0.002819061279296875, + -0.0142974853515625, 0.00731658935546875, 0.002651214599609375, 0.01157379150390625, + 0.01580810546875, -0.0211639404296875, 0.007843017578125, -0.005733489990234375, + 0.02130126953125, -0.01514434814453125, 0.008575439453125, -0.015838623046875, + -0.020751953125, -0.005023956298828125, -0.0152130126953125, 0.0078277587890625, + -0.00940704345703125, 0.011566162109375, 0.00467681884765625, -0.00614166259765625, + -0.0260772705078125, -0.004558563232421875, 0.021209716796875, 0.022705078125, + 0.01430511474609375, -0.078125, 0.046722412109375, 0.0199432373046875, 0.0195465087890625, + -0.00799560546875, -0.041595458984375, -0.0011005401611328125, -0.0021877288818359375, + 0.002742767333984375, 0.00638580322265625, 0.01439666748046875, 0.002597808837890625, + -0.00328826904296875, -0.01233673095703125, 0.00742340087890625, 0.0019989013671875, + 0.0195770263671875, -6.74128532409668e-5, -0.0068206787109375, -0.0028896331787109375, + -0.0077667236328125, 0.01366424560546875, -0.0208740234375, -0.021484375, 0.03570556640625, + -0.0020923614501953125, -0.0079803466796875, -0.0157318115234375, 0.0184173583984375, + 0.01190948486328125, 0.0178680419921875, 0.01837158203125, 0.0261077880859375, + 0.0182952880859375, -0.034149169921875, -0.060150146484375, 0.00323486328125, + 0.0024166107177734375, -0.04815673828125, -0.02484130859375, -0.027587890625, + 0.0247955322265625, -0.0004756450653076172, 0.037811279296875, 0.0006976127624511719, + 0.0072174072265625, 0.050872802734375, -0.0186309814453125, -0.0254058837890625, + 0.00279998779296875, 0.0019140243530273438, 0.011505126953125, 0.04949951171875, + 0.014923095703125, -0.01287841796875, 0.0165557861328125, 0.005977630615234375, + 0.008148193359375, 0.005764007568359375, 0.0300445556640625, 0.0168609619140625, + -0.02392578125, 0.044891357421875, -0.0275421142578125, -0.0176849365234375, + 0.0132904052734375, -0.0265045166015625, -0.01317596435546875, -0.00795745849609375, + -0.0033359527587890625, 0.0005068778991699219, 0.0057373046875, -0.0087738037109375, + -0.01235198974609375, 0.050445556640625, 0.006671905517578125, 0.0006737709045410156, + -0.00853729248046875, -0.0147705078125, -0.0167388916015625, 0.0101318359375, + -0.0031948089599609375, -0.0003132820129394531, 0.0016317367553710938, 0.019775390625, + 0.0135955810546875, 0.0147705078125, 0.004467010498046875, 0.03961181640625, + 0.0283660888671875, 0.004436492919921875, 0.025115966796875, -0.0264129638671875, + -0.018768310546875, -0.01360321044921875, -0.0034770965576171875, 0.00530242919921875, + -0.02142333984375, 0.00635528564453125, -0.0196685791015625, -0.0018186569213867188, + -0.046051025390625, 0.0078887939453125, -0.0282135009765625, -0.00833892822265625, + 0.0182037353515625, -0.005474090576171875, -0.007663726806640625, -0.005710601806640625, + 0.0019063949584960938, 0.00809478759765625, 0.0128326416015625, -0.00702667236328125, + -0.00812530517578125, 0.00843048095703125, -0.001819610595703125, 0.012786865234375, + 0.005489349365234375, -0.0065765380859375, 0.0033016204833984375, -0.02301025390625, + -0.0001957416534423828, -0.02374267578125, -0.031646728515625, 0.00786590576171875, + 0.017486572265625, -0.022705078125, -0.0137786865234375, -0.004352569580078125, + -0.0242919921875, -0.02117919921875, 0.0030670166015625, -0.004695892333984375, + 0.005435943603515625, 0.005313873291015625, 0.0259246826171875, 0.0107269287109375, + 0.03271484375, 0.017242431640625, -0.00899505615234375, 0.0145721435546875, + -0.020660400390625, -0.0233001708984375, -0.0173797607421875, -0.08135986328125, + -0.0052490234375, 0.0255584716796875, -0.0247039794921875, -0.0238037109375, + -0.01389312744140625, -0.0201873779296875, 0.02618408203125, 0.02618408203125, + 0.007572174072265625, -0.00782012939453125, -0.0159454345703125, 0.008575439453125, + 0.01081085205078125, 0.0102691650390625, 0.01468658447265625, -0.020782470703125, + 0.00015628337860107422, -0.01381683349609375, -0.0116424560546875, 0.0109405517578125, + -0.03607177734375, 0.027984619140625, -0.010986328125, 0.023773193359375, + -0.004512786865234375, -0.0044097900390625, 0.0021514892578125, 0.01483154296875, + -0.0228729248046875, -0.005825042724609375, 0.007503509521484375, -0.0037250518798828125, + 0.0026721954345703125, -0.0208740234375, 0.0227508544921875, -0.014556884765625, + 0.00811004638671875, 0.00408172607421875, -0.00554656982421875, 0.010650634765625, + -0.01470947265625, 0.023834228515625, -0.028106689453125, -0.020111083984375, + -0.00287628173828125, -0.0002803802490234375, -0.0047760009765625, 0.032318115234375, + -0.039031982421875, -0.015655517578125, -0.0091552734375, 0.00852203369140625, + 0.0220794677734375, -0.0224456787109375, 0.03472900390625, -0.023284912109375, + -0.049896240234375, 0.015716552734375, 0.01061248779296875, 0.0254974365234375, + -0.01256561279296875, -0.024566650390625, 0.020538330078125, -0.007015228271484375, + -0.0005674362182617188, -0.033447265625, 0.00585174560546875, -0.0206146240234375, + -0.026702880859375, -0.02142333984375, -0.0061798095703125, 0.03082275390625, + -0.0004432201385498047, -0.003253936767578125, -0.004886627197265625, 0.00763702392578125, + 0.0111236572265625, 0.0038585662841796875, -0.01305389404296875, 0.021881103515625, + -0.005451202392578125, 0.01052093505859375, 0.0269317626953125, -0.0029659271240234375, + 0.02215576171875, -0.002994537353515625, 0.0108795166015625, -0.0167236328125, + 0.004947662353515625, -0.017425537109375, 0.006160736083984375, 0.0233612060546875, + 0.01169586181640625, 0.0311279296875, -0.0182037353515625, 0.00934600830078125, + -0.030975341796875, -0.0005593299865722656, 0.005626678466796875, 0.0312042236328125, + 0.041290283203125, -0.0137786865234375, -0.0235443115234375, -0.052093505859375, + -0.0025539398193359375, -0.003963470458984375, -0.007007598876953125, -0.00013339519500732422, + -0.0231781005859375, 0.0277099609375, -0.00853729248046875, 0.004108428955078125, + 0.01331329345703125, 0.0147552490234375, 0.01142120361328125, -0.043487548828125, + -0.0218963623046875, 0.0228729248046875, 1.519918441772461e-5, 0.01116943359375, + -0.0189971923828125, 0.0193328857421875, 0.035858154296875, 0.036041259765625, + 0.0152130126953125, 0.04071044921875, -0.019775390625, 0.01361846923828125, 0.034149169921875, + -0.004756927490234375, 0.00455474853515625, -0.013916015625, 0.0185699462890625, + 0.0167236328125, 0.012542724609375, -0.00450897216796875, -0.004627227783203125, + 0.0121612548828125, -0.008453369140625, 0.001220703125, -0.009765625, 0.01494598388671875, + -0.0037517547607421875, 0.0016994476318359375, 0.0177764892578125, -0.00452423095703125, + -0.0275421142578125, -0.0548095703125, 0.0186614990234375, 0.000843048095703125, + -0.003673553466796875, -0.0135955810546875, 0.0116424560546875, 0.0242919921875, + -0.0188751220703125, -0.0063323974609375, -0.01502227783203125, -0.022796630859375, + 0.021575927734375, 0.0010271072387695312, 0.021942138671875, 0.0013742446899414062, + 0.0036525726318359375, -0.03204345703125, 0.0024356842041015625 + ] + }, + { + "tag": "community service", + "description": "a volunteer opportunity, charity fundraiser, donation drive, or civic engagement event focused on helping the local community, environment, or supporting a specific philanthropic cause", + "embedding": [ + 0.0042572021484375, 0.00849151611328125, 0.00733184814453125, 0.052703857421875, + -0.01259613037109375, -0.03363037109375, 0.01727294921875, 0.0164794921875, + -0.0200347900390625, 0.034881591796875, 0.04583740234375, 0.010162353515625, + -0.01477813720703125, -0.006366729736328125, 0.0299835205078125, 0.06622314453125, + -0.0020751953125, -0.004245758056640625, -0.0148162841796875, 0.0413818359375, + 0.034271240234375, 0.0282745361328125, 0.00702667236328125, 0.032958984375, + -0.006763458251953125, -0.00960540771484375, -0.0357666015625, 0.0164642333984375, + 0.018402099609375, -0.0025119781494140625, -0.0007872581481933594, -0.0277557373046875, + -0.0196990966796875, -0.024505615234375, 0.010406494140625, 0.04962158203125, + -0.01053619384765625, -0.05474853515625, 0.0191802978515625, 0.006137847900390625, + 0.01068115234375, -0.031097412109375, 0.0016469955444335938, 0.00917816162109375, + 0.00624847412109375, -0.026824951171875, -0.037384033203125, -0.027587890625, + 0.00833892822265625, 0.036590576171875, -0.023193359375, -0.034210205078125, + 0.029449462890625, 0.0261077880859375, -0.0182647705078125, -0.0036029815673828125, + 0.001171112060546875, -0.00225830078125, -0.040191650390625, 0.0362548828125, + -0.0026073455810546875, -0.0169677734375, 0.03924560546875, 0.033935546875, -0.01629638671875, + 0.01427459716796875, 0.005306243896484375, 0.0166473388671875, -0.05267333984375, + 0.04095458984375, 0.00777435302734375, 0.0382080078125, 0.0281524658203125, 0.004241943359375, + 0.015655517578125, 0.039764404296875, 0.052978515625, 0.00833892822265625, -0.031494140625, + -0.0023937225341796875, 0.022979736328125, -0.033050537109375, -0.0067901611328125, + 0.006298065185546875, -0.01108551025390625, -0.03375244140625, -0.052825927734375, + 0.040191650390625, -0.019012451171875, 0.01122283935546875, -0.004154205322265625, + -0.0004086494445800781, -0.0207061767578125, 0.046661376953125, 0.02001953125, + 0.0199127197265625, -0.00689697265625, -0.050384521484375, 0.0211639404296875, + 0.04754638671875, 0.032073974609375, -0.0531005859375, -0.02001953125, -0.0302581787109375, + -0.006107330322265625, -0.0032329559326171875, 0.007617950439453125, 0.039825439453125, + 0.08953857421875, -0.014801025390625, -0.051116943359375, -0.02392578125, -0.04022216796875, + 0.033050537109375, -0.01898193359375, -0.01497650146484375, 0.049285888671875, + -0.03338623046875, 0.035919189453125, -0.046234130859375, 0.016021728515625, + 0.023651123046875, -0.0183258056640625, -0.004302978515625, -0.012298583984375, + -0.0269775390625, -0.0034008026123046875, -0.02606201171875, 0.01971435546875, + -0.017547607421875, 0.034912109375, 0.04290771484375, 0.03509521484375, -0.008270263671875, + -0.007762908935546875, -0.040863037109375, -0.039398193359375, -0.037017822265625, + -0.0753173828125, 0.0166473388671875, 0.01702880859375, -0.0269317626953125, + -0.001659393310546875, 0.036041259765625, 0.04632568359375, -0.024871826171875, + -0.010467529296875, -0.00013375282287597656, -0.0229339599609375, -0.0175628662109375, + -0.0164794921875, -0.01434326171875, -0.014068603515625, 0.049957275390625, + -0.039398193359375, -0.0350341796875, 0.03515625, 0.0157318115234375, -0.0518798828125, + -0.03515625, 0.0137786865234375, -0.0232086181640625, -0.067626953125, -0.017669677734375, + -0.0045318603515625, -0.0007677078247070312, 0.01166534423828125, -0.013702392578125, + -0.060089111328125, 0.0173492431640625, -0.0312042236328125, 0.00031495094299316406, + -0.06768798828125, 0.065185546875, 0.002685546875, 0.004016876220703125, 0.035858154296875, + 0.00868988037109375, 0.00885772705078125, 0.0144500732421875, -0.00716400146484375, + 0.00199127197265625, 0.005859375, 0.0038433074951171875, -0.0462646484375, 0.0418701171875, + 0.04742431640625, 0.055816650390625, 0.005695343017578125, -0.01073455810546875, + 0.00615692138671875, 0.007595062255859375, 0.05914306640625, -0.007175445556640625, + 0.0183868408203125, -0.002567291259765625, -0.0017271041870117188, 0.01812744140625, + -0.0190277099609375, -0.0176544189453125, -0.018798828125, -0.021820068359375, + 0.0188140869140625, -0.05023193359375, -0.01482391357421875, -0.01251983642578125, + -0.038177490234375, 0.011444091796875, 0.04119873046875, -0.036956787109375, + 0.01131439208984375, 0.02484130859375, 0.021820068359375, 0.01922607421875, + -0.01009368896484375, -0.00971221923828125, 0.054107666015625, -0.00957489013671875, + 0.0182037353515625, 0.0011968612670898438, -0.0218963623046875, 0.039398193359375, + 0.0156707763671875, 0.04278564453125, 0.005954742431640625, 0.040679931640625, + -0.012298583984375, -0.0341796875, 0.0033416748046875, -0.08807373046875, -0.0081024169921875, + -0.005550384521484375, -0.0246734619140625, -0.038299560546875, -0.02313232421875, + -0.0091552734375, -0.018524169921875, -0.041412353515625, 0.027923583984375, + -0.020599365234375, 0.0340576171875, 0.033782958984375, -0.01178741455078125, + -0.053863525390625, 0.009613037109375, 0.01268768310546875, 0.006381988525390625, + -0.0133056640625, 0.0189208984375, 0.060791015625, 0.014739990234375, 0.003597259521484375, + -0.043365478515625, -0.035430908203125, 0.011871337890625, 0.005008697509765625, + 0.00984954833984375, -0.0090179443359375, 0.00585174560546875, -0.01458740234375, + 0.0186767578125, -0.0187835693359375, 0.00803375244140625, 0.017913818359375, + -0.01251983642578125, 0.01102447509765625, -0.029632568359375, 0.01245880126953125, + -0.0307769775390625, 0.04449462890625, -0.00907135009765625, 0.0027866363525390625, + 0.04522705078125, -0.048187255859375, 0.017791748046875, 0.004116058349609375, + 0.01415252685546875, 0.07513427734375, 0.032012939453125, -0.0092315673828125, + -0.0083465576171875, -0.004886627197265625, -0.014404296875, -0.01525115966796875, + -0.0058441162109375, 0.04779052734375, 0.00894927978515625, -0.00421142578125, + 0.0016298294067382812, 0.0180511474609375, -0.041778564453125, -0.00872039794921875, + -0.031951904296875, -0.0086669921875, -0.0004992485046386719, 0.00031113624572753906, + 0.01554107666015625, 0.0051422119140625, 0.044952392578125, 0.0125885009765625, + 0.02130126953125, 0.00933074951171875, -0.0712890625, -0.0125732421875, 0.0082855224609375, + -0.00899505615234375, -0.0379638671875, -0.03521728515625, 0.01497650146484375, + -0.024017333984375, 0.00450897216796875, 0.04266357421875, -0.0175323486328125, + 0.023956298828125, 0.005130767822265625, 0.04705810546875, 0.040924072265625, + 0.06585693359375, 0.024017333984375, -0.0006403923034667969, 0.0036792755126953125, + -0.018402099609375, 0.0271759033203125, -0.026458740234375, 0.050018310546875, -0.03515625, + 0.01140594482421875, 0.046234130859375, -0.01029205322265625, -0.01137542724609375, + -0.01456451416015625, -0.0151519775390625, 0.007389068603515625, 0.02545166015625, + 0.024932861328125, -0.03985595703125, 0.001956939697265625, -0.033843994140625, + 0.04571533203125, -0.042633056640625, -0.038665771484375, 0.0009002685546875, + -0.003841400146484375, 0.0170135498046875, 0.0013132095336914062, 0.037750244140625, + 0.0050811767578125, 0.0246124267578125, 0.0015058517456054688, 0.01204681396484375, + 0.017333984375, -0.02655029296875, 0.002956390380859375, 0.04705810546875, -0.07269287109375, + 0.03350830078125, 0.0223388671875, 0.004344940185546875, -0.0003485679626464844, + 0.06982421875, 0.046539306640625, 0.01367950439453125, 0.0714111328125, -0.06451416015625, + 0.006732940673828125, 0.06005859375, -0.038543701171875, -0.01538848876953125, + 0.006587982177734375, -0.0265350341796875, -0.00803375244140625, -0.0111541748046875, + 0.014678955078125, -0.008392333984375, -0.04571533203125, 0.028106689453125, + 0.0032501220703125, 0.058868408203125, 0.027435302734375, -0.0389404296875, + 0.00789642333984375, -0.0254058837890625, -0.049896240234375, 0.0018739700317382812, + 0.01483917236328125, 0.056365966796875, -0.0014657974243164062, -0.02447509765625, + -0.04205322265625, -0.002811431884765625, 0.05401611328125, -0.00443267822265625, + 0.03167724609375, 0.01387786865234375, -0.04803466796875, 0.002231597900390625, + 0.0065155029296875, 0.03125, 0.04193115234375, 0.02227783203125, -0.01959228515625, + 0.0142364501953125, -0.033416748046875, 0.02838134765625, -0.0173187255859375, + 0.0298004150390625, -0.044708251953125, 0.00615692138671875, -0.038543701171875, + -0.03680419921875, 0.0247802734375, -0.0433349609375, 0.03692626953125, 0.06890869140625, + 0.00885772705078125, -0.004467010498046875, -0.054168701171875, 0.006534576416015625, + -0.01421356201171875, -0.00885009765625, -0.017364501953125, -0.0295562744140625, + 0.01004791259765625, 0.017303466796875, -0.021575927734375, 0.05010986328125, + 0.01421356201171875, 0.0018033981323242188, -0.018463134765625, -0.060699462890625, + -0.033966064453125, -0.006938934326171875, 0.0118408203125, -0.003627777099609375, + -0.006122589111328125, -0.069091796875, 0.031982421875, -0.0203399658203125, + 0.035552978515625, 0.0254669189453125, -0.043304443359375, 0.017578125, -0.017730712890625, + 0.0202484130859375, -0.0007581710815429688, 0.0218963623046875, 0.0528564453125, + -0.0137939453125, -0.04144287109375, -0.00302886962890625, -0.020660400390625, -0.017578125, + 0.0233917236328125, 0.0006990432739257812, 0.0149383544921875, -0.005832672119140625, + -0.0039215087890625, 0.0167083740234375, 0.0340576171875, -0.052978515625, + -0.005207061767578125, 0.019287109375, 0.02947998046875, 0.0266265869140625, 0.03607177734375, + -0.034210205078125, -0.02764892578125, 0.00684356689453125, 0.0018548965454101562, + 0.037353515625, 0.01111602783203125, 0.0130767822265625, 0.0399169921875, 0.06402587890625, + -0.057708740234375, -0.005889892578125, 0.0225982666015625, -0.042816162109375, + -0.03778076171875, -0.01812744140625, -0.00811767578125, -0.0132904052734375, + -0.043792724609375, 0.00545501708984375, 0.00655364990234375, -0.00743865966796875, + 0.045989990234375, 0.01397705078125, -0.055419921875, -0.0099945068359375, 0.03289794921875, + 0.039520263671875, 0.004222869873046875, -0.01258087158203125, 0.0301513671875, + -0.020751953125, -0.040191650390625, -0.0106201171875, -0.004962921142578125, + -0.01178741455078125, -0.03485107421875, -0.016693115234375, -0.048431396484375, + 0.005107879638671875, 0.032958984375, 0.03900146484375, 0.028656005859375, + 8.344650268554688e-7, -0.0235595703125, 0.04376220703125, 0.0001970529556274414, + -0.02020263671875, 0.0008096694946289062, 0.01132965087890625, 0.0241546630859375, + 0.003993988037109375, -0.01311492919921875, 0.0055389404296875, 0.005039215087890625, + 0.01372528076171875, -0.051361083984375, 0.034454345703125, 0.0032100677490234375, + 0.01666259765625, -0.01511383056640625, -0.00119781494140625, -0.03973388671875, + -0.083740234375, -0.01389312744140625, -0.06414794921875, -0.012603759765625, + 0.001251220703125, -0.01027679443359375, 0.0248565673828125, -0.0089569091796875, + -0.00933074951171875, -0.00525665283203125, -0.0003879070281982422, -0.01462554931640625, + 0.00226593017578125, -0.033294677734375, 0.02130126953125, -0.0216827392578125, + -0.017822265625, -0.0092315673828125, 0.03271484375, -0.04888916015625, 0.004199981689453125, + 0.018768310546875, -0.0227508544921875, -0.0128173828125, -0.02508544921875, + -0.01471710205078125, -0.023681640625, 0.0400390625, 0.04071044921875, -0.023468017578125, + -0.0300750732421875, -0.050506591796875, 0.004344940185546875, 0.00800323486328125, + -0.00647735595703125, 0.0157470703125, -0.0093994140625, 0.019134521484375, + 0.0194549560546875, 0.028411865234375, 0.051177978515625, -0.0517578125, -0.018798828125, + -0.0052642822265625, -0.0146484375, -0.0066070556640625, -0.058258056640625, + -0.0031108856201171875, 0.0301055908203125, -0.032379150390625, -0.0089569091796875, + 0.0218658447265625, -0.031585693359375, -0.0135650634765625, -0.04443359375, + -0.0070343017578125, -0.0269012451171875, -0.02740478515625, -0.019805908203125, + 0.01290130615234375, 0.02215576171875, 0.0521240234375, -0.01348876953125, + -0.0071563720703125, 0.0006289482116699219, 0.0023441314697265625, 0.022674560546875, + 0.0217132568359375, 0.020294189453125, -0.004302978515625, 0.0179901123046875, + -0.01334381103515625, -0.048583984375, -0.0106048583984375, 0.0200347900390625, + 0.0180206298828125, -0.028106689453125, 0.00865936279296875, -0.0017766952514648438, + -0.00403594970703125, -0.03558349609375, -0.0030879974365234375, -0.019012451171875, + 0.043243408203125, 0.00754547119140625, 0.0384521484375, -0.0040435791015625, + 0.03204345703125, -0.016357421875, 0.0058441162109375, -0.005764007568359375, + 0.00643157958984375, -0.003696441650390625, -0.0237579345703125, -0.040283203125, + 0.00395965576171875, 0.00391387939453125, 0.02239990234375, 0.0044097900390625, + -0.0159149169921875, -0.0294952392578125, -0.0037212371826171875, 0.006114959716796875, + -0.050018310546875, -0.00688934326171875, 0.02130126953125, -0.0083770751953125, + -0.01113128662109375, -0.005908966064453125, -0.0022411346435546875, 0.01213836669921875, + 0.0033969879150390625, -0.013275146484375, 0.003459930419921875, 0.0002796649932861328, + -0.00571441650390625, -0.004222869873046875, 0.0210418701171875, 0.0267791748046875, + 0.005542755126953125, 0.0328369140625, 0.0124969482421875, -0.006999969482421875, + 0.01751708984375, 0.0199127197265625, -0.0133514404296875, -0.01557159423828125, + 0.01264190673828125, 0.0007953643798828125, -0.0004355907440185547, -0.01367950439453125, + 0.01715087890625, 0.0106353759765625, -0.00141143798828125, -0.04583740234375, + -0.0019083023071289062, -0.00801849365234375, -0.01525115966796875, 0.0250396728515625, + 0.0107879638671875, -0.0011539459228515625, -0.0247039794921875, -0.004947662353515625, + -0.0499267578125, 0.01166534423828125, 0.0465087890625, -0.007373809814453125, + -0.005611419677734375, 0.004306793212890625, -0.01020050048828125, -0.0179443359375, + 0.025787353515625, -0.0302581787109375, -0.004299163818359375, -0.0036220550537109375, + -0.0013408660888671875, -0.014678955078125, -0.023406982421875, -0.0258636474609375, + 0.037628173828125, -0.00991058349609375, -0.01526641845703125, 0.0163421630859375, + 0.00711822509765625, -0.01526641845703125, 0.032989501953125, 0.0092010498046875, + -0.01084136962890625, 0.036956787109375, 0.0303192138671875, 0.01776123046875, + 0.0183868408203125, -0.05120849609375, 0.0031108856201171875, 0.004322052001953125, + 0.041412353515625, -0.01297760009765625, -0.022430419921875, -0.00856781005859375, + 0.0098419189453125, 0.00415802001953125, 0.021209716796875, 0.00698089599609375, + -0.040496826171875, -0.04833984375, -0.020263671875, 0.01277923583984375, 0.01059722900390625, + -0.043731689453125, 0.032318115234375, 0.0073089599609375, -0.004367828369140625, + -0.0118255615234375, -0.030975341796875, 0.01213836669921875, -0.0165863037109375, + -0.022186279296875, -0.02813720703125, 0.04888916015625, -0.00959014892578125, + -0.029022216796875, -0.057952880859375, 0.00971221923828125, 0.0264892578125, + 0.01381683349609375, 0.01441192626953125, 0.00702667236328125, -0.0567626953125, + 0.005146026611328125, 0.0070648193359375, 0.004459381103515625, -0.045745849609375, + -0.0164337158203125, 0.069580078125, -0.015777587890625, 0.0251007080078125, + 0.01532745361328125, -0.035003662109375, -0.046478271484375, 0.0043792724609375, + 0.00473785400390625, -0.0178985595703125, 0.0011091232299804688, -0.006038665771484375, + 0.00960540771484375, -0.037139892578125, 0.025604248046875, 0.016693115234375, + -0.01502227783203125, -0.0048828125, -0.00514984130859375, 0.0241546630859375, + -0.011260986328125, -0.01221466064453125, -0.006832122802734375, 0.0182647705078125, + -7.712841033935547e-5, 0.0093994140625, 0.033233642578125, 0.0225067138671875, + -0.01181793212890625, -0.004528045654296875, -0.01702880859375, 0.02093505859375, + 0.019561767578125, -0.0131072998046875, -0.02044677734375, 0.017181396484375, + -0.00844573974609375, 0.00665283203125, -0.017852783203125, 0.008392333984375, + 0.01197052001953125, 0.00711822509765625, -0.014678955078125, -0.00995635986328125, + -0.02459716796875, 0.0103302001953125, -0.016265869140625, 0.004741668701171875, + -0.004772186279296875, -0.01450347900390625, -0.06744384765625, 0.0296478271484375, + -0.051666259765625, -0.001953125, -0.0304718017578125, 0.006771087646484375, + 0.0016536712646484375, 0.0240936279296875, -0.008209228515625, 0.01025390625, + 0.0303802490234375, -0.0022335052490234375, -0.0254058837890625, 0.03369140625, + 0.0288543701171875, 0.022430419921875, 0.03094482421875, -0.0137176513671875, + -0.0201263427734375, 0.016845703125, -0.0146484375, -0.01293182373046875, -0.0225982666015625, + -0.0177459716796875, -0.035430908203125, -0.0391845703125, -0.034332275390625, + 0.009063720703125, 0.0018796920776367188, 0.0233917236328125, 0.0020046234130859375, + 0.0060272216796875, -0.0117950439453125, 0.0152740478515625, -0.042694091796875, + 0.00612640380859375, 0.0102996826171875, -0.0176239013671875, 0.041778564453125, + -0.0321044921875, -0.0299835205078125, -0.0556640625, -0.0227203369140625, + -0.007343292236328125, -0.0234375, 0.0302276611328125, -0.0177154541015625, + -0.005626678466796875, -0.0086669921875, -0.022857666015625, -0.0270843505859375, + 0.0230560302734375, 0.0199737548828125, -0.007114410400390625, 0.01218414306640625, + 0.008758544921875, -0.0106048583984375, -0.0006542205810546875, 0.001956939697265625, + 0.00843048095703125, -0.03912353515625, -0.04150390625, -0.0406494140625, 0.011260986328125, + -0.005603790283203125, -0.0006623268127441406, 0.01248931884765625, -0.01100921630859375, + -0.00439453125, 0.0208740234375, -0.039703369140625, -0.01532745361328125, -0.044647216796875, + 0.026824951171875, -0.02423095703125, 0.008056640625, -0.014129638671875, -0.029754638671875, + 0.023468017578125, -0.0026607513427734375, -0.031280517578125, -0.013580322265625, + 0.037078857421875, -0.00664520263671875, -0.0009264945983886719, 0.0186004638671875, + 0.023468017578125, 0.00841522216796875, 0.022430419921875, 0.021575927734375, + -0.007663726806640625, 0.04241943359375, 0.006565093994140625, 0.0022945404052734375, + 0.01139068603515625, -0.0254364013671875, -0.0295257568359375, 0.033721923828125, + 0.00984954833984375, -0.008880615234375, -0.0009870529174804688, -0.0290069580078125, + 0.017242431640625, 0.0153656005859375, -0.051727294921875, 0.01983642578125, + -0.01262664794921875, 0.005817413330078125, 0.01190185546875, -0.0065765380859375, + -0.01464080810546875, -0.024200439453125, 0.0192718505859375, -0.0094757080078125, + -0.01226043701171875, -0.043304443359375, 0.0022487640380859375, -0.039581298828125, + 0.0020351409912109375, -0.01163482666015625, -0.04913330078125, -0.0164947509765625, + -0.00959014892578125, 0.002674102783203125, -0.003143310546875, 0.01430511474609375, + 0.033782958984375, -0.0260772705078125, 0.01197052001953125, 0.021697998046875, + -0.0306243896484375, 0.0274810791015625, 0.027008056640625, -0.0015277862548828125, + -0.004184722900390625, 0.0203094482421875, -0.01190185546875, 0.0037593841552734375, + 0.024139404296875, 0.002651214599609375, 0.01395416259765625, 0.01715087890625, + 0.01497650146484375, 0.00514984130859375, -0.01169586181640625, -0.007450103759765625, + -0.0268096923828125, -0.0046234130859375, -0.0011568069458007812, -0.0016336441040039062, + 0.01026153564453125, 0.0194549560546875, 0.01180267333984375, 0.010650634765625, + 0.0158843994140625, 0.0290069580078125, 0.00463104248046875, -0.00585174560546875, + -0.022796630859375, -0.0045318603515625, -0.015350341796875, -0.024505615234375, + -0.056396484375, 0.00437164306640625, -0.0096435546875, 0.004405975341796875, + -0.0260772705078125, 0.006622314453125, 0.01849365234375, 0.038543701171875, + -0.0005512237548828125, -0.0240478515625, -0.007049560546875, -0.0216827392578125, + 0.03369140625, 0.050262451171875, 0.042724609375, -0.0139617919921875, 0.005474090576171875, + -0.024383544921875, 0.041778564453125, -0.029296875, 0.0164947509765625, + -0.004703521728515625, 0.002796173095703125, 0.006134033203125, -0.0110931396484375, + 0.004634857177734375, -0.02850341796875, 0.035247802734375, 0.020904541015625, + -0.0133514404296875, 0.04327392578125, -0.00713348388671875, -0.0007605552673339844, + -0.030975341796875, 0.00531005859375, -0.061798095703125, -0.006053924560546875, + 0.0531005859375, 0.0109405517578125, 0.0163726806640625, -0.060455322265625, + 0.0221099853515625, -0.03509521484375, 0.019317626953125, 0.0100860595703125, + 0.01100921630859375, -0.0283355712890625, 0.00194549560546875, 0.037933349609375, + 0.023468017578125, 0.004291534423828125, -0.0140380859375, -0.0146484375, 0.0098876953125, + 0.00634765625, 0.06390380859375, -0.03399658203125, -0.0024394989013671875, + -0.029571533203125, 0.0282745361328125, 0.042572021484375, 0.0261383056640625, + 0.0221710205078125, -0.00795745849609375, -0.0243682861328125, -0.030120849609375, + -0.024810791015625, 0.0116119384765625, 0.01219940185546875, 0.0182342529296875, + -0.0190277099609375, -0.028961181640625, 0.0306243896484375, -0.021697998046875, + -0.05047607421875, 0.01739501953125, -0.00926971435546875, 0.040557861328125, + -0.00638580322265625, -0.05133056640625, -0.0007791519165039062, -0.02947998046875, + -0.00325775146484375, -0.01201629638671875, 0.0032939910888671875, -0.003955841064453125, + -0.022125244140625, 0.023468017578125, 0.01983642578125, -0.0005316734313964844, + -0.0078887939453125, -0.0263519287109375, 0.01512908935546875, -0.00246429443359375, + 0.0080718994140625, 0.0174407958984375, -0.0256805419921875, 0.02099609375, + -0.0019426345825195312, 0.01136016845703125, 0.01441192626953125, 0.00930023193359375, + 0.0258636474609375, -0.01477813720703125, -0.0245208740234375, -0.005939483642578125, + -0.004238128662109375, 0.033782958984375, 0.01268768310546875, 0.0129547119140625, + -0.002437591552734375, 0.04095458984375, -0.03631591796875, -0.004878997802734375, + 0.01029205322265625, 0.0005421638488769531, 0.0030670166015625, 0.0007429122924804688, + -0.023590087890625, 0.0095062255859375, 0.00885009765625, -0.0004317760467529297, + 0.0006051063537597656, -0.00812530517578125, -0.022430419921875, 0.016693115234375, + -0.005458831787109375, 0.0094146728515625, 0.0172576904296875, 0.0191497802734375, + -0.027313232421875, 0.0057220458984375, 0.0029506683349609375, -0.02069091796875, + -0.0307769775390625, 0.04254150390625, -0.050750732421875, -0.005069732666015625, + -0.0007710456848144531, 0.00909423828125, 0.01221466064453125, 0.006763458251953125, + 0.0216217041015625, -0.0120849609375, -0.0232086181640625, -0.0202484130859375, + 0.056060791015625, 0.0258331298828125, 0.003269195556640625, -0.01204681396484375, + 0.0181121826171875, 0.00540924072265625, -0.0034503936767578125, -0.003753662109375, + -0.020599365234375, -0.034332275390625, -0.0440673828125, 0.0340576171875, 0.0217742919921875, + 0.0213165283203125, -0.0034694671630859375, -0.004642486572265625, -0.0284271240234375, + -0.032958984375, -0.0278778076171875, -0.0078125, -0.016632080078125, -0.0139923095703125, + 0.007770538330078125, 5.930662155151367e-5, -0.038726806640625, -0.015869140625, + -0.03759765625, -0.005207061767578125, -0.00521087646484375, -0.0168304443359375, + -0.00010585784912109375, -0.027801513671875, -0.023193359375, 0.005023956298828125, + -0.016937255859375, 0.0291748046875, -0.01352691650390625, -0.041717529296875, + 0.01181793212890625, -0.0125732421875, 0.0137939453125, 0.01922607421875, + -0.0028133392333984375, -0.01194000244140625, 0.01415252685546875, 0.007457733154296875, + -0.0104217529296875, 0.01271820068359375, 0.027923583984375, 0.01959228515625, + 0.07171630859375, -0.0270843505859375, -0.01415252685546875, 0.051025390625, 0.03094482421875, + -0.016448974609375, 0.005939483642578125, 0.02813720703125, -0.0015077590942382812, + 0.004001617431640625, -0.02471923828125, -0.00019311904907226562, 0.011688232421875, + -0.00897979736328125, 0.025726318359375, 0.01448822021484375, -0.043701171875, + -0.017333984375, -0.0037937164306640625, -0.052978515625, 0.007755279541015625, + 0.045135498046875, 0.01513671875, -0.031890869140625, 0.01285552978515625, -0.0328369140625, + 0.0177001953125, -0.0009832382202148438, 0.030303955078125, -0.032073974609375, + 0.026885986328125, 0.0015878677368164062, 0.03271484375, 0.0026760101318359375, + -0.0272369384765625, -0.001132965087890625, 0.004547119140625, -0.039398193359375, + 0.027313232421875, -0.020782470703125, -0.021514892578125, -0.007457733154296875, + 0.0303955078125, -0.0198822021484375, 0.02252197265625, 0.0089874267578125, 0.03302001953125, + 0.00435638427734375, 0.00345611572265625, 0.0012073516845703125, -0.03094482421875, + 0.025909423828125, 0.003082275390625, -0.006500244140625, -0.019256591796875, + -0.044342041015625, -0.00946044921875, 0.0142364501953125, 0.0217132568359375, + -0.046722412109375, -0.00665283203125, -0.043975830078125, -0.0082855224609375, + -0.00310516357421875, 0.037384033203125, -0.003925323486328125, 0.0076446533203125, + 0.0011110305786132812, 0.024871826171875, 0.047027587890625, -0.01422882080078125, + -0.01241302490234375, 0.01019287109375, 0.0291290283203125, -0.016204833984375, + -0.004016876220703125, 0.0200347900390625, -0.0263519287109375, -0.007633209228515625, + -0.07000732421875, 0.0307464599609375, 0.03472900390625, -0.0186920166015625, + 0.019073486328125, -0.047637939453125, -0.0285797119140625, 0.0255584716796875, + 0.0114593505859375, 0.029571533203125, 0.033294677734375, -0.01033782958984375, + 0.0125885009765625, -0.0158843994140625, 0.006038665771484375, -0.01214599609375, + 0.00726318359375, 0.0010776519775390625, 0.00101470947265625, -0.01739501953125, + -0.02783203125, 0.0126800537109375, -0.03839111328125, -0.0227203369140625, + 0.007488250732421875, -0.0240020751953125, -0.02484130859375, 0.060760498046875, + -0.0247650146484375, -0.004009246826171875, 0.0014619827270507812, -0.01401519775390625, + 0.002410888671875, 0.01413726806640625, -0.0430908203125, -0.01039886474609375, + 0.02752685546875, 0.030853271484375, -0.01605224609375, -0.0128173828125, -0.017578125, + -0.01529693603515625, -0.0267791748046875, 0.0299835205078125, -0.00817108154296875, + 0.034576416015625, 0.027099609375, -0.01450347900390625, 0.0162506103515625, 0.06085205078125, + -0.006397247314453125, -0.00841522216796875, 0.038055419921875, 0.01044464111328125, + 0.012054443359375, -0.0020656585693359375, 0.001201629638671875, 0.0009870529174804688, + -0.024505615234375, 0.038360595703125, 0.034393310546875, -0.0699462890625, + -0.00536346435546875, 0.0135650634765625, 0.00118255615234375, -0.00353240966796875, + 0.006526947021484375, 0.009857177734375, -0.0006856918334960938, 0.007244110107421875, + -0.002155303955078125, 0.005397796630859375, 0.01108551025390625, -0.0071563720703125, + 0.049285888671875, 0.025909423828125, -0.001796722412109375, -0.015869140625, + -0.00460052490234375, -0.03338623046875, 0.033935546875, 0.001468658447265625, + 0.0007567405700683594, 0.0161285400390625, -0.0006003379821777344, -0.0142059326171875, + 0.00598907470703125, -0.006114959716796875, 0.03607177734375, 0.021820068359375, + 0.020172119140625, -0.020263671875, -0.032989501953125, -0.02093505859375, -0.053314208984375, + -0.0139617919921875, -0.00518798828125, -0.0135040283203125, -0.01629638671875, + 0.00627899169921875, -0.0065155029296875, -0.03521728515625, -0.004909515380859375, + -0.04052734375, 0.031646728515625, -0.0182647705078125, 0.00360107421875, 0.014068603515625, + -0.0234527587890625, 0.00806427001953125, -0.008331298828125, 0.038604736328125, + -0.01543426513671875, 0.0159149169921875, 0.040985107421875, 0.004886627197265625, + 0.0014781951904296875, 0.039306640625, -0.057098388671875, 0.01462554931640625, + -0.02459716796875, -0.003406524658203125, -0.0254364013671875, -0.03717041015625, + -0.0173492431640625, -0.002773284912109375, -0.01346588134765625, -0.01277923583984375, + 0.01239013671875, 0.007137298583984375, -0.04913330078125, 0.01139068603515625, + -0.00382232666015625, 0.0531005859375, 0.001461029052734375, -0.022430419921875, + 0.00067901611328125, -0.017578125, 0.009307861328125, -0.027313232421875, -0.0143280029296875, + -0.00799560546875, -0.022735595703125, -0.022613525390625, -0.04852294921875, + 0.011871337890625, -0.008514404296875, 0.025054931640625, -0.0080108642578125, + -0.0228424072265625, -0.0007948875427246094, -0.00876617431640625, 0.045196533203125, + -0.00616455078125, -0.031219482421875, -0.002422332763671875, 0.0156707763671875, + -0.0256805419921875, 0.009552001953125, -0.01084136962890625, 0.002506256103515625, + 0.0009870529174804688, 0.00792694091796875, -0.01849365234375, 0.0031108856201171875, + -0.005542755126953125, 0.0210113525390625, 0.010040283203125, -0.007793426513671875, + -0.01113128662109375, 0.005702972412109375, -0.022125244140625, -0.00791168212890625, + -0.02740478515625, -0.0266571044921875, -0.0233154296875, -0.004520416259765625, + -0.0233917236328125, -0.0210418701171875, -0.0008955001831054688, 0.00879669189453125, + 0.0179595947265625, 0.014801025390625, -0.0162811279296875, 0.012725830078125, + -0.035125732421875, 0.010223388671875, -0.0401611328125, 0.0057830810546875, + -0.01477813720703125, 0.0299072265625, -0.0035877227783203125, 0.04180908203125, + 0.0061492919921875, -0.033294677734375, -0.04052734375, 0.0017414093017578125, + 0.0265350341796875, -0.0289306640625, 0.029083251953125, 0.0055694580078125, + -0.01702880859375, 0.01407623291015625, -0.02783203125, 0.0182647705078125, + 0.004817962646484375, -0.0056304931640625, 0.0001232624053955078, 0.0083160400390625, + 0.01386260986328125, -0.01488494873046875, -0.0284271240234375, 0.0260009765625, + -0.056304931640625, -0.0248260498046875, 0.0213623046875, 0.0279541015625, + -0.0168609619140625, 0.01346588134765625, 0.055511474609375, 0.007476806640625, + 0.0226287841796875, -0.0289764404296875, 0.018310546875, 0.026458740234375, + -0.0007233619689941406, 0.0079345703125, -0.01049041748046875, -0.0013933181762695312, + -0.00463104248046875, 0.01221466064453125, -0.0206451416015625, -0.02301025390625, + -0.00557708740234375, 0.00872802734375, -0.020111083984375, 0.0192718505859375, + 0.026031494140625, -0.0087890625, -0.002468109130859375, -0.016754150390625, -0.0322265625, + 0.01605224609375, -0.0010652542114257812, -0.01236724853515625, 0.035430908203125, + -0.0225067138671875, -0.01435089111328125, -0.039520263671875, 0.042083740234375, + -0.0150604248046875, 0.00705718994140625, 0.006565093994140625, -0.0035762786865234375, + 0.0243682861328125, 0.046234130859375, -0.0049591064453125, 0.011688232421875, + -0.0029354095458984375, -0.0130767822265625, -0.01641845703125, 0.0166778564453125, + 0.033538818359375, -0.0094451904296875, -0.004276275634765625, 0.018524169921875, + 0.0236053466796875, -0.002864837646484375, 0.0190887451171875, -0.003932952880859375, + 0.0357666015625, -0.021209716796875, 0.0210418701171875, 0.0153656005859375, + 0.0224761962890625, -0.0222930908203125, -0.01399993896484375, 0.046173095703125, + 0.0179901123046875, -0.002246856689453125, 0.004974365234375, 0.016937255859375, + 0.005275726318359375, -0.015716552734375, 0.03643798828125, 0.0025997161865234375, + 0.05621337890625, -0.0288848876953125, 0.010711669921875, 0.03814697265625, 0.016510009765625, + -0.033966064453125, 0.01366424560546875, 0.046600341796875, -0.0004642009735107422, + -0.01090240478515625, -0.041900634765625, 0.0050201416015625, 0.01482391357421875, + 0.0109100341796875, -0.03814697265625, 0.0035686492919921875, -0.01168060302734375, + 0.0112152099609375, -0.00574493408203125, -0.0022430419921875, 0.01009368896484375, + -0.01229095458984375, 0.0159454345703125, 0.0081329345703125 + ] + }, + { + "tag": "speaker event", + "description": "an event featuring a guest lecturer, keynote address, panel discussion, visiting professor, or industry expert presenting their research, ideas, or lived experiences to an audience", + "embedding": [ + 0.0020236968994140625, -0.02294921875, -0.01200103759765625, 0.0055694580078125, + -0.03314208984375, -0.0173492431640625, -0.04278564453125, 0.034881591796875, + 0.00119781494140625, 0.01293182373046875, 0.050537109375, 0.02789306640625, + -0.0193023681640625, -0.0233917236328125, 0.0005087852478027344, 0.021148681640625, + -0.03076171875, 0.0234222412109375, 0.024322509765625, 0.02447509765625, 0.036956787109375, + 0.0279693603515625, 0.05548095703125, 0.056976318359375, -0.02008056640625, + -0.0098724365234375, -0.0276641845703125, 0.03948974609375, 0.04290771484375, + 0.0219879150390625, 0.08941650390625, -0.0275421142578125, -0.0084075927734375, + -0.028717041015625, -0.020263671875, 0.085205078125, 0.007965087890625, 0.00754547119140625, + -0.001087188720703125, -0.01291656494140625, -0.00951385498046875, -0.020751953125, + -0.026123046875, 0.052978515625, 0.01303863525390625, 0.01454925537109375, -0.0628662109375, + -0.039031982421875, 0.03521728515625, 0.09295654296875, -0.0309906005859375, + -0.037872314453125, 0.07183837890625, 0.0097198486328125, 0.0042724609375, + -0.0260467529296875, 0.020416259765625, 0.0029697418212890625, -0.01270294189453125, + 0.005062103271484375, 0.04986572265625, 0.0308380126953125, 0.043914794921875, + 0.030426025390625, -0.035125732421875, -0.0230865478515625, -0.00800323486328125, + 0.048065185546875, -0.041595458984375, 0.009765625, 0.0667724609375, 9.757280349731445e-5, + -0.072021484375, 0.02679443359375, -0.0076446533203125, 0.01558685302734375, + -0.0030918121337890625, -0.01169586181640625, -0.0276947021484375, 0.010040283203125, + 0.045562744140625, 0.01398468017578125, -0.0013341903686523438, -0.010986328125, + -0.00872039794921875, -0.019683837890625, -0.040802001953125, -0.0147705078125, + -0.040313720703125, 0.0054779052734375, -0.0149993896484375, -0.0281524658203125, + 0.016845703125, 0.049713134765625, 0.049560546875, 0.0523681640625, 0.02618408203125, + 0.00803375244140625, 0.06097412109375, 0.032318115234375, 0.01172637939453125, + -0.061309814453125, -0.0245513916015625, -0.0187530517578125, 0.0096893310546875, + 0.0257110595703125, -0.037628173828125, -0.0162506103515625, -0.0158233642578125, + -0.02886962890625, -0.08197021484375, 0.0014324188232421875, 0.00168609619140625, + 0.04754638671875, -0.0236358642578125, -0.02923583984375, 0.07916259765625, -0.0711669921875, + 0.0028057098388671875, 0.021728515625, -0.03961181640625, 0.0188140869140625, + -0.01441192626953125, 0.010162353515625, 0.01525115966796875, -0.0248565673828125, + -0.05419921875, -0.009857177734375, 0.0146636962890625, 0.000820159912109375, + 0.029022216796875, 0.0017242431640625, -0.043609619140625, -0.040496826171875, + -0.037689208984375, -0.0244140625, -0.034210205078125, 0.0101318359375, -0.031402587890625, + -0.031494140625, 0.0516357421875, 0.0218658447265625, -0.0079498291015625, 0.0162200927734375, + 0.054779052734375, -0.0002357959747314453, 0.01457977294921875, 0.0484619140625, + 0.028106689453125, 0.015411376953125, -0.01338958740234375, 0.01114654541015625, + -0.032440185546875, 0.0386962890625, 0.027008056640625, -0.014892578125, 0.01091766357421875, + -0.024993896484375, 0.02764892578125, -0.033843994140625, 0.0278778076171875, + 0.008514404296875, -0.049774169921875, 0.0178070068359375, -0.04052734375, -0.017791748046875, + -0.00827789306640625, -0.006114959716796875, -0.05084228515625, -0.01861572265625, + -0.086669921875, -0.032745361328125, -0.016693115234375, 0.06121826171875, 0.035919189453125, + -0.00399017333984375, 0.057830810546875, 0.024322509765625, -0.00913238525390625, + 0.0109100341796875, -0.01114654541015625, 0.021881103515625, -0.046478271484375, + 0.0010976791381835938, 0.0234375, 0.017486572265625, 0.052337646484375, -0.0169525146484375, + -0.0006475448608398438, -0.00768280029296875, 0.018096923828125, 0.021392822265625, + 0.002269744873046875, 0.067138671875, 0.0265960693359375, -0.0098876953125, + -0.003536224365234375, -0.0203704833984375, 0.028594970703125, -0.00997161865234375, + -0.011993408203125, 0.00036215782165527344, 0.02557373046875, -0.01346588134765625, + 0.02734375, -0.005886077880859375, 0.03668212890625, 0.018646240234375, 0.03668212890625, + -0.0018253326416015625, 0.02996826171875, -0.0030727386474609375, 0.0246124267578125, + -0.0129241943359375, -0.038055419921875, -0.036346435546875, 0.044586181640625, + -0.01898193359375, 0.00815582275390625, 0.0274200439453125, 0.0031070709228515625, + 0.008544921875, 0.0279541015625, 0.0185089111328125, 0.042694091796875, 0.04473876953125, + -0.02667236328125, 0.0076904296875, -0.0014514923095703125, -0.055145263671875, + -0.01067352294921875, -0.0177154541015625, -0.020751953125, 0.004093170166015625, + 0.00604248046875, -0.0066375732421875, -0.03387451171875, -0.0301055908203125, + -0.0013637542724609375, -0.01398468017578125, 0.053253173828125, -0.004657745361328125, + 0.035919189453125, -0.0103607177734375, -0.00200653076171875, 0.01800537109375, + 0.0164337158203125, -0.02239990234375, 0.047271728515625, 0.055938720703125, 0.0313720703125, + -0.012054443359375, 0.008209228515625, -0.01457977294921875, 0.0233917236328125, + -0.0279998779296875, 0.0244903564453125, -0.06707763671875, 0.004993438720703125, + -0.0311279296875, 0.045989990234375, 0.002017974853515625, -0.01320648193359375, + 0.044281005859375, -0.040618896484375, -0.07147216796875, -0.06634521484375, -0.01953125, + -0.01528167724609375, -0.00826263427734375, 0.0203094482421875, -0.0252838134765625, + -0.0496826171875, -0.0063323974609375, -0.0290069580078125, -0.0117950439453125, + 0.056671142578125, 0.06719970703125, 0.0023288726806640625, 0.011322021484375, + 0.004573822021484375, -0.00374603271484375, 0.01059722900390625, -0.0274200439453125, + -0.0263671875, 0.017822265625, -0.004528045654296875, -0.0028858184814453125, + -0.0191650390625, 0.02789306640625, -0.01085662841796875, -0.0159759521484375, + 0.02728271484375, 0.037994384765625, 0.014617919921875, 0.007568359375, 0.0183258056640625, + 0.00963592529296875, 0.038787841796875, -0.044219970703125, 0.0082855224609375, + -0.0291748046875, 0.030792236328125, -0.009521484375, -0.04144287109375, 0.04443359375, + -0.002796173095703125, -0.030029296875, 0.0225830078125, -0.037261962890625, + -0.01209259033203125, -0.0174102783203125, -0.0298919677734375, 0.06622314453125, + -0.01788330078125, 0.0123138427734375, 0.03955078125, 0.03271484375, -0.0008821487426757812, + -0.03082275390625, -0.0005702972412109375, -0.00750732421875, 0.0439453125, -0.038330078125, + 0.040557861328125, -0.0207672119140625, 0.0189056396484375, 0.026214599609375, + 0.000736236572265625, -0.0052490234375, 0.0009794235229492188, 0.00031566619873046875, + -0.0304107666015625, 0.04571533203125, 0.045074462890625, 0.03607177734375, + 0.0161590576171875, 0.01898193359375, 0.00774383544921875, -0.057373046875, -0.0672607421875, + 0.004520416259765625, -0.04742431640625, -0.00478363037109375, -0.0022735595703125, + 0.0212249755859375, 0.0257720947265625, -0.019134521484375, -0.00559234619140625, + 0.055328369140625, -0.0010328292846679688, 0.0098114013671875, -0.01184844970703125, + 0.007564544677734375, -0.0010633468627929688, -0.060150146484375, 0.0235748291015625, + -0.0108489990234375, 0.0062255859375, 0.0040283203125, -0.017730712890625, 0.0109710693359375, + 0.01480865478515625, 0.006618499755859375, -0.012603759765625, 0.05078125, -0.0721435546875, + -0.03985595703125, 0.0355224609375, -0.07440185546875, 0.00838470458984375, + -0.0109100341796875, 0.0206298828125, 0.01029205322265625, -0.01151275634765625, + 0.040924072265625, 0.01409149169921875, 0.0243682861328125, -0.0161895751953125, + -0.0011529922485351562, -0.0264739990234375, -0.04132080078125, -0.0293121337890625, + -0.0275726318359375, 0.005451202392578125, 0.052978515625, 0.0122528076171875, + -0.0209503173828125, 0.01058197021484375, -0.0085906982421875, 0.043365478515625, + -0.0015697479248046875, 0.004108428955078125, 0.0194854736328125, 0.032806396484375, + 0.01605224609375, -0.00904083251953125, 0.03033447265625, 0.07318115234375, + -0.01207733154296875, -0.041748046875, 0.0018110275268554688, 0.035186767578125, + -0.001430511474609375, 0.046173095703125, -0.004886627197265625, 0.00850677490234375, + -0.0030498504638671875, -0.0176239013671875, 0.0007681846618652344, 0.0269317626953125, + -0.041961669921875, 0.0029735565185546875, 0.024627685546875, -0.031219482421875, + 0.0273895263671875, 0.0033283233642578125, -0.024627685546875, 0.055694580078125, + 0.032623291015625, 0.07171630859375, -0.009857177734375, -0.03106689453125, 0.034027099609375, + -0.0006055831909179688, 0.0312042236328125, -0.0174407958984375, -0.0079498291015625, + 0.0194091796875, -0.025299072265625, -0.0233154296875, 0.016204833984375, 0.0155487060546875, + 0.0112152099609375, -0.0162200927734375, -0.025360107421875, 0.00838470458984375, + -0.0013456344604492188, -0.006694793701171875, -0.00909423828125, -0.03900146484375, + 0.051483154296875, -0.0007662773132324219, -0.01470184326171875, -0.030731201171875, + -0.01212310791015625, -0.0244598388671875, 0.00360870361328125, 0.05328369140625, + -0.0294036865234375, -0.0030422210693359375, -0.0249786376953125, -0.0019969940185546875, + -0.0252227783203125, -0.004444122314453125, -0.05499267578125, 0.0156707763671875, + 0.058197021484375, 0.0164947509765625, -0.0205078125, 0.0255279541015625, 0.003509521484375, + -0.0006351470947265625, 0.00315093994140625, -0.02789306640625, -0.019622802734375, + 0.00678253173828125, 0.0115814208984375, -0.0017709732055664062, 0.004749298095703125, + 0.03240966796875, -0.00901031494140625, 0.020477294921875, 0.01739501953125, -0.0645751953125, + -0.0257720947265625, 0.0003390312194824219, -0.0718994140625, -0.03076171875, 0.017333984375, + 0.00653076171875, 0.04620361328125, 0.047607421875, -0.018096923828125, 0.0207977294921875, + -0.005001068115234375, -0.0085906982421875, -0.033233642578125, 0.0106658935546875, + -0.001804351806640625, 0.0019178390502929688, 0.01517486572265625, -0.004398345947265625, + -0.0138702392578125, 0.009124755859375, -0.0196075439453125, -0.0298614501953125, + 0.0252685546875, 0.021514892578125, -0.0126953125, -0.01074981689453125, -0.01262664794921875, + -0.0596923828125, -0.00252532958984375, 0.0325927734375, 0.05908203125, -0.04718017578125, + 0.006072998046875, 0.0157623291015625, 0.046905517578125, -0.036376953125, -0.055999755859375, + 0.00479888916015625, 0.03289794921875, 0.023529052734375, -0.01178741455078125, + -0.032989501953125, -0.0131988525390625, 0.004161834716796875, 0.0236358642578125, + 0.008087158203125, 0.0055694580078125, -0.03326416015625, -0.0128936767578125, + 0.0109405517578125, 0.005794525146484375, 0.0013208389282226562, -0.06280517578125, + -0.0022144317626953125, -0.059478759765625, -0.006000518798828125, -0.037078857421875, + -0.020721435546875, 0.00865936279296875, -0.005634307861328125, 0.00380706787109375, -0.03125, + -0.0199127197265625, 0.0224609375, -0.0037441253662109375, 0.00527191162109375, + 0.023284912109375, -0.0018224716186523438, -0.00632476806640625, -0.00450897216796875, + 0.01312255859375, 0.037261962890625, -0.0086212158203125, -0.02557373046875, + 0.045684814453125, 0.0215606689453125, -0.050506591796875, 0.0060882568359375, + -0.03717041015625, -0.0020465850830078125, 0.043487548828125, 0.02301025390625, + -0.0306396484375, -0.0236053466796875, 0.045318603515625, 0.019378662109375, + -0.0224456787109375, -0.016448974609375, -0.0440673828125, -0.0124969482421875, + 0.01020050048828125, -0.0181121826171875, 0.02447509765625, 0.0172882080078125, + 0.0289459228515625, 0.0256805419921875, 0.006656646728515625, -0.0256195068359375, + -0.00690460205078125, 0.018402099609375, -0.0255279541015625, -0.00832366943359375, + -0.00943756103515625, 0.021270751953125, -0.012542724609375, 0.0170440673828125, + -0.01544952392578125, -0.03594970703125, -0.0081329345703125, -0.0280303955078125, + -0.0201568603515625, 0.007293701171875, -0.0080108642578125, -0.0300750732421875, + 0.017425537109375, -0.00690460205078125, 0.0226898193359375, 0.04010009765625, + 0.0284576416015625, 0.03485107421875, 8.678436279296875e-5, 0.0241851806640625, + -0.018585205078125, -0.037567138671875, -0.00513458251953125, -0.021881103515625, + 0.03271484375, -0.046630859375, 0.01068115234375, -0.00024235248565673828, 0.0225677490234375, + -0.0229644775390625, -0.007587432861328125, 0.0007338523864746094, -0.040008544921875, + 0.029083251953125, -0.0128021240234375, 0.0022106170654296875, -0.0158233642578125, + -0.02838134765625, -0.01605224609375, 0.0146026611328125, -0.0341796875, 0.01458740234375, + 0.0218658447265625, -0.004093170166015625, -0.00391387939453125, 0.007045745849609375, + 0.0139007568359375, 0.01806640625, 0.0180206298828125, -0.0239105224609375, + -0.024627685546875, 0.03509521484375, 0.03875732421875, -0.002628326416015625, + 0.0069427490234375, 0.017303466796875, -0.00800323486328125, 0.00531005859375, + 0.0300750732421875, -0.03125, 0.006298065185546875, -0.0305633544921875, -0.0278778076171875, + 0.035919189453125, 0.0034770965576171875, 0.0219268798828125, -0.0246429443359375, + 0.041534423828125, 0.017242431640625, 0.02825927734375, -0.0034618377685546875, + 0.0367431640625, 0.0182342529296875, 0.01090240478515625, 0.004489898681640625, 0.03857421875, + -0.021270751953125, 0.020294189453125, 0.0200653076171875, -0.0091400146484375, + 0.0017070770263671875, 0.019683837890625, 0.0031414031982421875, 0.0087127685546875, + -0.005435943603515625, 0.01007843017578125, -0.040802001953125, -0.00963592529296875, + 0.045196533203125, -0.0048675537109375, -0.0183258056640625, -0.007114410400390625, + 0.0188751220703125, -0.005558013916015625, 0.012725830078125, 0.040618896484375, + 0.00858306884765625, 0.0251312255859375, -0.031494140625, -0.017791748046875, + 0.01462554931640625, 0.01152801513671875, 0.021392822265625, -0.00882720947265625, + 0.005096435546875, -0.018035888671875, 0.026519775390625, -0.04107666015625, + 0.0021572113037109375, 0.031280517578125, -0.006500244140625, 0.0205230712890625, + -0.0187530517578125, -0.00379180908203125, 0.006267547607421875, -0.037200927734375, + 0.00032973289489746094, -0.0220489501953125, -0.0243988037109375, 0.0088958740234375, + -0.0227508544921875, -0.007236480712890625, -0.0908203125, -0.029022216796875, + 0.0029888153076171875, -0.0283355712890625, -0.01497650146484375, 0.039031982421875, + -0.018310546875, 0.003635406494140625, 0.0080718994140625, 0.0010728836059570312, + -0.00559234619140625, -0.03692626953125, 0.005298614501953125, 0.02459716796875, + 0.024322509765625, -0.0263671875, -0.004901885986328125, -0.004795074462890625, + 0.0106658935546875, -0.0014944076538085938, 0.0028095245361328125, -0.02716064453125, + 0.011993408203125, -7.18832015991211e-5, 0.00386810302734375, -0.0304107666015625, + 0.031341552734375, -0.0003466606140136719, 0.0312042236328125, -0.0269317626953125, + 0.00421142578125, -0.00960540771484375, 0.019683837890625, 0.0175628662109375, + -0.0240631103515625, -0.013671875, 0.00974273681640625, 0.0032291412353515625, + -0.0221405029296875, -0.0002110004425048828, -0.034027099609375, 0.024658203125, + -0.0306854248046875, 0.022003173828125, 0.0200958251953125, 0.0283050537109375, + -0.0200653076171875, -0.0019369125366210938, 0.0021190643310546875, -0.0001550912857055664, + 0.00925445556640625, -0.017120361328125, 0.01000213623046875, -0.00927734375, 0.015380859375, + 0.00345611572265625, 0.001491546630859375, 0.0177459716796875, -0.0212554931640625, + 0.0087432861328125, 0.007904052734375, 0.025054931640625, 0.0129852294921875, + 0.0280303955078125, 0.0193634033203125, -0.01184844970703125, -0.003192901611328125, + 0.040252685546875, -0.0239410400390625, 0.016510009765625, 0.005306243896484375, + 0.0343017578125, -0.00412750244140625, 0.00926971435546875, 0.0024852752685546875, + 0.00458526611328125, 0.007678985595703125, -0.0087432861328125, 0.0203704833984375, + -0.0053558349609375, -0.00804901123046875, 0.031951904296875, -0.0257720947265625, + -0.023712158203125, -0.020904541015625, 0.023773193359375, -0.035858154296875, + -0.0195770263671875, -0.01308441162109375, -0.033660888671875, -0.0289764404296875, + -0.002208709716796875, -0.0031795501708984375, -0.0036640167236328125, -0.0181427001953125, + 0.03179931640625, 0.007587432861328125, 0.00267791748046875, 0.005161285400390625, + 0.017242431640625, 0.035400390625, 0.0189056396484375, 0.0406494140625, 0.03106689453125, + 0.047210693359375, -0.01837158203125, 0.007129669189453125, -0.0206298828125, + 0.0016269683837890625, -0.0181884765625, -0.001445770263671875, 0.041839599609375, + -0.02825927734375, -0.03802490234375, -0.019927978515625, -0.0148468017578125, + -0.053863525390625, 0.0214996337890625, 0.0062408447265625, 0.00693511962890625, + -0.04266357421875, 0.008819580078125, -0.0189208984375, 0.0059814453125, -0.0235137939453125, + 0.0174560546875, 0.01424407958984375, 0.00994110107421875, 0.013824462890625, + -0.01369476318359375, -0.0205078125, 0.034515380859375, -0.00498199462890625, + -0.01085662841796875, -0.002185821533203125, 0.0302734375, -0.00347137451171875, + -0.03350830078125, 0.0177764892578125, 0.0006537437438964844, 0.0120697021484375, + -0.0083465576171875, 0.0096435546875, -0.016265869140625, 0.00830841064453125, + -0.02581787109375, -0.0028781890869140625, -0.006450653076171875, 0.0028171539306640625, + -0.045562744140625, -0.0063629150390625, -0.01445770263671875, -0.0111236572265625, + 0.0181732177734375, -0.01255035400390625, -0.055755615234375, 0.023406982421875, + -0.034393310546875, -0.0051422119140625, -0.0249176025390625, 0.003299713134765625, + -0.0114593505859375, -0.032806396484375, 0.007045745849609375, 0.01229095458984375, + -0.0027179718017578125, -0.0238037109375, 0.0080108642578125, 0.01155853271484375, + -0.032257080078125, -0.0171051025390625, -0.0043487548828125, 0.0196075439453125, + 0.001255035400390625, 0.00791168212890625, 0.0184783935546875, 0.01003265380859375, + -0.01552581787109375, 0.0146942138671875, 0.0275421142578125, -0.03546142578125, + 0.032867431640625, 0.0209808349609375, 0.0118560791015625, 0.039520263671875, + 0.004451751708984375, -0.0220489501953125, 0.01085662841796875, 0.014373779296875, + -0.0428466796875, -0.01074981689453125, 0.005283355712890625, -0.014678955078125, + -0.0031032562255859375, -0.08843994140625, 0.044158935546875, -0.0265655517578125, + -0.0240478515625, -0.0009908676147460938, 0.017364501953125, -0.046905517578125, + -0.0325927734375, -0.022216796875, -0.00849151611328125, -0.001979827880859375, + -0.0008792877197265625, 0.033416748046875, 0.02191162109375, 0.035186767578125, + -0.00937652587890625, -0.03631591796875, -0.022369384765625, 0.01122283935546875, + -0.02618408203125, 0.04644775390625, 0.051116943359375, 0.027496337890625, + -0.01558685302734375, -0.0096435546875, -0.00012362003326416016, -0.0092926025390625, + 0.028076171875, 0.048431396484375, 0.0143585205078125, -0.02264404296875, 0.006622314453125, + 0.01178741455078125, -0.01250457763671875, 0.0212860107421875, -0.0082855224609375, + -0.0036144256591796875, -0.022430419921875, 0.032440185546875, -0.01100921630859375, + -0.0011453628540039062, 0.047943115234375, 0.01806640625, 0.0205535888671875, + 0.00251007080078125, -0.00457763671875, -0.0079498291015625, -0.004451751708984375, + 0.01087188720703125, -0.01149749755859375, -0.0217437744140625, 0.011016845703125, + -0.0263671875, -0.0100555419921875, 0.0060882568359375, -0.0129241943359375, + 0.01457977294921875, -0.0310211181640625, -0.00482940673828125, 0.04779052734375, + 0.0498046875, 0.02392578125, 0.01377105712890625, 0.00899505615234375, 0.01363372802734375, + 0.0115203857421875, 0.044586181640625, 0.002422332763671875, -0.031524658203125, + 0.0007352828979492188, 0.0026912689208984375, -0.0111846923828125, 0.00690460205078125, + -0.003566741943359375, -0.006641387939453125, -0.02764892578125, 0.02215576171875, + 0.0031719207763671875, 0.0269775390625, 0.03106689453125, -0.021484375, 0.022796630859375, + -0.0296630859375, 0.023101806640625, -0.0010766983032226562, 0.0266265869140625, + -0.027435302734375, 0.04150390625, -0.00679779052734375, -0.0193328857421875, 0.023193359375, + -0.042999267578125, -0.0244293212890625, -0.016693115234375, -0.0063018798828125, + 0.0606689453125, 0.052642822265625, -0.00843048095703125, -0.0281524658203125, + 0.0085906982421875, 0.007053375244140625, 0.0020046234130859375, -0.0142059326171875, + 1.6808509826660156e-5, -0.0401611328125, -0.01751708984375, -0.013336181640625, + 0.0181121826171875, 0.019439697265625, -0.0101318359375, 0.021331787109375, + -0.007152557373046875, -0.0193634033203125, -0.0194549560546875, -0.0172271728515625, + 0.0270233154296875, -0.0066375732421875, 0.04522705078125, 0.033843994140625, + -0.058502197265625, -0.020172119140625, 0.008544921875, -0.0106353759765625, + 0.0133209228515625, -0.0066680908203125, -0.036529541015625, 0.00893402099609375, + 0.050872802734375, -0.0118408203125, 0.031280517578125, -0.004535675048828125, + -0.002410888671875, -0.066162109375, 0.008636474609375, 0.0321044921875, + 0.0015277862548828125, 0.004436492919921875, 0.00018680095672607422, -0.01102447509765625, + -0.0035858154296875, -0.0100250244140625, 0.0053253173828125, 0.004909515380859375, + -0.047454833984375, 0.0157012939453125, 0.0187530517578125, 0.0210418701171875, + -0.006809234619140625, -0.0158843994140625, -0.0158843994140625, -0.002655029296875, + 0.015899658203125, 0.0054168701171875, -0.007122039794921875, 0.007602691650390625, + 0.0235137939453125, 0.025299072265625, -0.01430511474609375, -0.025665283203125, + 0.01397705078125, 0.0184478759765625, 0.0016384124755859375, -0.0127716064453125, + -0.050079345703125, -0.0185546875, 0.0150909423828125, -0.001979827880859375, + -0.0225067138671875, 0.01209259033203125, 0.0016145706176757812, -0.027801513671875, + 0.01445770263671875, -0.0003771781921386719, -0.006809234619140625, -0.0264434814453125, + 0.009521484375, -0.00832366943359375, 0.0021839141845703125, 0.05010986328125, + 0.0101470947265625, 0.019256591796875, 0.0035858154296875, -0.02716064453125, + 0.02825927734375, -0.0170135498046875, 0.019439697265625, -0.004634857177734375, + 0.0113983154296875, -0.007198333740234375, 0.030975341796875, 0.00045990943908691406, + 0.011627197265625, -0.020538330078125, 0.01486968994140625, -0.026702880859375, + 0.02117919921875, 0.006191253662109375, -0.00971221923828125, -0.00887298583984375, + -0.0013456344604492188, -0.0261077880859375, -0.0202789306640625, -0.00038552284240722656, + 0.02825927734375, 0.0250396728515625, -0.038909912109375, -0.01812744140625, + -0.002513885498046875, -0.0023040771484375, 0.0210723876953125, -0.008697509765625, + -0.0007333755493164062, 0.0038127899169921875, -0.0002467632293701172, -0.043487548828125, + 0.0214385986328125, 0.0090789794921875, -8.231401443481445e-5, -0.006687164306640625, + 0.028411865234375, -0.00609588623046875, -0.0295867919921875, 0.0011301040649414062, + -0.007785797119140625, 0.0100860595703125, 0.0249176025390625, 0.01418304443359375, + -0.01293182373046875, 0.030029296875, -0.0218658447265625, 0.038421630859375, + -0.0145111083984375, -0.01232147216796875, -0.0016927719116210938, 0.0015172958374023438, + -0.013946533203125, -0.0171661376953125, 0.005344390869140625, 0.0038166046142578125, + 0.021697998046875, -0.034576416015625, -0.0019483566284179688, 0.035430908203125, + 0.043060302734375, -0.0296173095703125, -0.010711669921875, 0.0207366943359375, + -0.018585205078125, -0.03826904296875, -0.0211334228515625, 0.01181793212890625, + -0.054779052734375, 0.0106048583984375, 0.0013818740844726562, 0.06640625, + 0.005992889404296875, -0.005802154541015625, 0.02093505859375, 0.0225372314453125, + 0.037384033203125, -0.0030689239501953125, -0.005092620849609375, 0.00966644287109375, + -0.00978851318359375, 0.0070953369140625, 0.010833740234375, 0.0013723373413085938, + 0.0009469985961914062, -0.0189361572265625, 0.03173828125, 0.003391265869140625, + -0.040313720703125, 0.014129638671875, -0.033843994140625, 0.00910186767578125, + -0.002956390380859375, 0.00955963134765625, -0.0347900390625, -0.006069183349609375, + -0.0263214111328125, 0.0240325927734375, 0.0200347900390625, 0.0002682209014892578, + 0.008026123046875, 0.02679443359375, -0.019500732421875, -0.0063934326171875, + 0.056304931640625, -0.012115478515625, 0.00868988037109375, 0.0234222412109375, + -0.032989501953125, 0.041229248046875, -0.004741668701171875, -0.014984130859375, + -0.025970458984375, 0.0241851806640625, -0.004779815673828125, 0.0126953125, + 0.0113677978515625, 0.0016994476318359375, -0.00295257568359375, 0.0011997222900390625, + -0.0008063316345214844, -0.059906005859375, 0.020751953125, 0.01322174072265625, + 0.0093231201171875, -0.0164337158203125, -0.024505615234375, -0.0001938343048095703, + 0.0111541748046875, -0.0016384124755859375, 0.0092315673828125, -0.0135498046875, + 0.030975341796875, -0.005771636962890625, 0.0025577545166015625, 0.0199127197265625, + 0.0007290840148925781, -0.043792724609375, -0.0280609130859375, 0.0290069580078125, + -0.022613525390625, -0.0030384063720703125, 0.00408935546875, 0.0182952880859375, + 0.0019550323486328125, -0.01345062255859375, 0.017669677734375, 0.024658203125, + 0.0187225341796875, -0.0015888214111328125, -0.0418701171875, -0.01323699951171875, + 0.034332275390625, -0.016693115234375, 0.00960540771484375, -0.033447265625, + -0.007904052734375, -0.00550079345703125, -0.03955078125, -0.00948333740234375, + 0.016021728515625, 0.0021495819091796875, -0.007228851318359375, 0.0021820068359375, + 0.0214385986328125, -0.00646209716796875, 0.03369140625, 0.0018205642700195312, + -0.0013580322265625, -0.0139007568359375, 0.005237579345703125, 0.004581451416015625, + -0.00685882568359375, -0.0163421630859375, 0.00860595703125, 0.0199737548828125, + -0.031341552734375, -0.0445556640625, 0.00043845176696777344, -0.020660400390625, + -0.0140380859375, 0.00702667236328125, -0.005847930908203125, -0.0228118896484375, + -0.04852294921875, 0.0022029876708984375, -0.0045623779296875, -0.03924560546875, + -0.0016107559204101562, -0.0301055908203125, -0.0181884765625, 0.010101318359375, + 0.0185089111328125, -0.005184173583984375, 0.0213470458984375, 0.0263214111328125, + 0.032135009765625, 0.0193939208984375, 0.003387451171875, 0.026824951171875, + -0.0189971923828125, 0.0135498046875, 0.0071868896484375, -0.007625579833984375, + -0.01293182373046875, -0.003509521484375, 0.02679443359375, -0.00749969482421875, + -0.0182647705078125, 0.0206756591796875, 0.0290985107421875, -0.048797607421875, + 0.0144195556640625, 0.004642486572265625, -0.01526641845703125, 0.0197296142578125, + 0.005718231201171875, 0.0034656524658203125, -0.016815185546875, 0.0162506103515625, + -0.018218994140625, -0.0167236328125, 0.0031604766845703125, -0.035186767578125, + 0.025054931640625, 0.046966552734375, 0.01123809814453125, -0.045989990234375, + -0.00673675537109375, -0.0025806427001953125, 0.006603240966796875, 0.0022869110107421875, + -0.0195159912109375, -0.05548095703125, 0.00226593017578125, 0.0233917236328125, + -0.0289154052734375, -0.007129669189453125, 0.005123138427734375, 0.0200042724609375, + 0.015380859375, 0.00200653076171875, -0.01050567626953125, -0.01532745361328125, + -0.005535125732421875, -0.006473541259765625, -0.0290069580078125, 0.01593017578125, + -0.02618408203125, -0.006381988525390625, -0.00632476806640625, -0.042388916015625, + -0.0270843505859375, -0.0208587646484375, 0.002391815185546875, 0.01229095458984375, + -0.0015573501586914062, -0.003726959228515625, -0.0278472900390625, 9.810924530029297e-5, + -0.047088623046875, 0.047027587890625, -0.0119476318359375, 0.048370361328125, + 0.038787841796875, -0.0103912353515625, 0.03387451171875, -0.0090789794921875, + -0.022247314453125, 0.0081787109375, -0.0181121826171875, -0.0118865966796875, + -0.053436279296875, -0.00513458251953125, 0.01134490966796875, 0.03057861328125, + 0.0186767578125, -0.01375579833984375, -0.005710601806640625, -0.0256500244140625, + -0.0198974609375, 0.0098419189453125, -0.032257080078125, 0.0367431640625, + -0.0019588470458984375, -0.037567138671875, 0.049072265625, 0.0214996337890625, + 0.007549285888671875, -0.005390167236328125, 0.0118865966796875, 0.050445556640625, + -0.039031982421875, 0.003864288330078125, -0.0302276611328125, 0.00366973876953125, + 0.033233642578125, 0.044281005859375, -0.0007510185241699219, -0.028228759765625, + -0.05938720703125, 0.005290985107421875, 0.040924072265625, 0.01043701171875, + 0.004062652587890625, -0.03717041015625, 0.0095672607421875, 0.015899658203125, + 0.032745361328125, -0.0184326171875, 0.01287078857421875, 0.0159912109375, 0.0143585205078125, + 0.01235198974609375, -0.01528167724609375, -0.01316070556640625, 0.01007080078125, + 0.003017425537109375, 0.0162506103515625, -0.013275146484375, -0.009368896484375, + -0.0098724365234375, 0.0130767822265625, -0.0265655517578125, -0.0087127685546875, + 0.0038547515869140625, -0.002044677734375, 0.006069183349609375, -0.01174163818359375, + -0.0184783935546875, 0.023040771484375, 0.0088043212890625, 0.00579833984375, + -0.044708251953125, 0.003448486328125, 0.00971221923828125, -0.0045318603515625, + -0.01456451416015625, 0.0013980865478515625, -0.0114898681640625, -0.0036449432373046875, + 0.036712646484375, 0.03448486328125, -0.027099609375, -0.020599365234375, -0.025299072265625, + -0.0096588134765625, 0.0186920166015625, -0.0030956268310546875, 0.03485107421875, + 0.0042724609375, -0.01824951171875, -0.00360870361328125, -0.0173492431640625, + 0.013397216796875, 0.01235198974609375, -0.022705078125, 0.001194000244140625, + 0.023406982421875, 0.023681640625, -0.003566741943359375, -0.00791168212890625, + 0.0249786376953125, 0.00984954833984375, -0.040924072265625, 0.0142059326171875, + 0.03997802734375, -0.00334930419921875, -0.059478759765625, -0.00693511962890625, + -0.003940582275390625, -0.00957489013671875, -0.0178985595703125, 0.012451171875, + 0.006160736083984375, 0.01043701171875, 0.04486083984375, -0.004703521728515625, + -0.0179595947265625, -0.00666046142578125, -0.054412841796875, 0.0191650390625, + -0.01165008544921875, -0.026824951171875, 0.0033111572265625, 0.0297698974609375, + 0.021087646484375, 0.046783447265625, 0.032867431640625, -0.010894775390625, + 0.005222320556640625, -0.01247406005859375, 0.00612640380859375, -0.0013151168823242188, + 0.0018968582153320312, 0.0286712646484375, -0.0190582275390625, 0.00650787353515625, + -0.01322174072265625, 0.0321044921875, 0.0021457672119140625, 0.0011920928955078125, + 0.005535125732421875, 0.00016772747039794922, 0.0102386474609375, 0.0212860107421875, + 0.009765625, 0.01100921630859375, -0.007625579833984375, 0.0019407272338867188, + -0.0007681846618652344, -0.013427734375, 0.009002685546875, -0.0112457275390625, + 0.03192138671875, -0.01227569580078125, 0.0341796875, -0.0222015380859375, + 0.004627227783203125, -0.01161956787109375, 0.04132080078125, -0.0311737060546875, + 0.0154571533203125, -0.0297088623046875, -0.0005731582641601562, -0.054473876953125, + -0.012664794921875, 0.0242156982421875, -0.027435302734375, -0.0007343292236328125, + -0.0031452178955078125, 0.006237030029296875, -0.0121307373046875, -0.0079803466796875, + 0.0154571533203125, 0.01392364501953125, 0.01256561279296875, 0.02520751953125, + -0.04351806640625, 0.034515380859375, 0.029327392578125, -0.032684326171875, + -0.00850677490234375, 0.01067352294921875, -0.02825927734375, -0.0291595458984375, + -0.0119171142578125, -0.009246826171875, 0.01316070556640625, 0.01003265380859375, + -0.02166748046875, -0.00047707557678222656, -0.0491943359375, -0.0261077880859375, + 0.0206756591796875, 0.0237884521484375, -0.01401519775390625, -0.01313018798828125, + -0.020660400390625, -0.0183563232421875 + ] + }, + { + "tag": "social event", + "description": "a casual gathering, mixer, party, or meet-and-greet designed primarily for students to hang out, mingle, make friends, and socialize with each other in a relaxed environment", + "embedding": [ + 0.0009860992431640625, -0.006175994873046875, -0.0269622802734375, 0.0226593017578125, + 0.005218505859375, -0.019989013671875, 0.026885986328125, 0.034149169921875, + -0.02154541015625, 0.034210205078125, 0.01300048828125, -0.01250457763671875, + -0.02532958984375, 0.018707275390625, 0.021728515625, 0.025604248046875, -0.0311737060546875, + 0.015289306640625, 0.0003802776336669922, 0.004047393798828125, 0.00582122802734375, + 0.04119873046875, -0.0089569091796875, 0.020904541015625, -0.01151275634765625, + 0.004833221435546875, 0.0149688720703125, -0.0019931793212890625, -0.0025177001953125, + 0.0131072998046875, 0.04229736328125, -0.0289764404296875, -0.00487518310546875, + 0.0028781890869140625, -0.007526397705078125, 0.02471923828125, -0.03070068359375, + 0.000244140625, -0.0205230712890625, -0.005542755126953125, 0.01044464111328125, + -0.0146026611328125, 0.03424072265625, 0.00957489013671875, 0.0109710693359375, + -0.02825927734375, 0.0011692047119140625, -0.003429412841796875, 0.063232421875, + 0.050384521484375, -0.08392333984375, -0.041107177734375, 0.036163330078125, 0.06427001953125, + 0.01039886474609375, -0.0307769775390625, -0.0021800994873046875, -0.00962066650390625, + 0.0176849365234375, 0.0198516845703125, 0.062255859375, 0.050262451171875, 0.031341552734375, + 0.040679931640625, 0.03851318359375, 0.01259613037109375, 0.0284576416015625, + 0.0276641845703125, -0.010772705078125, 0.0826416015625, 0.030181884765625, + -0.0291290283203125, -0.0350341796875, -0.0411376953125, -0.0160675048828125, + 0.02972412109375, -0.01129913330078125, -0.0355224609375, -0.0001461505889892578, + 0.024658203125, 0.047698974609375, -0.005519866943359375, -0.004253387451171875, + 0.0264434814453125, 0.006046295166015625, -0.07257080078125, -0.02880859375, + 0.0231781005859375, -0.016845703125, 0.0158233642578125, -0.010101318359375, -0.0389404296875, + -0.052398681640625, 0.0460205078125, 0.026123046875, -0.036376953125, -0.029052734375, + -0.07720947265625, -0.0094451904296875, 0.00913238525390625, 0.015411376953125, + -0.0648193359375, -0.032135009765625, 0.0218505859375, -0.01554107666015625, -0.0633544921875, + -0.0657958984375, -0.0078125, -0.045135498046875, -0.017242431640625, -0.0772705078125, + -0.0011806488037109375, -0.00858306884765625, 0.04296875, -0.0311431884765625, + -0.002628326416015625, 0.073974609375, -0.07373046875, -0.037139892578125, + 0.007488250732421875, -0.032379150390625, 0.02581787109375, 0.037200927734375, + -0.027587890625, -0.01538848876953125, -0.006412506103515625, -0.021087646484375, + -0.012847900390625, -0.03619384765625, 0.006359100341796875, 0.019927978515625, + -0.047882080078125, 0.0081024169921875, -0.08056640625, -0.0162811279296875, + -0.05841064453125, -0.0343017578125, 0.010467529296875, -0.0226898193359375, -0.0513916015625, + 0.0279083251953125, -0.005859375, -0.0014820098876953125, 0.019561767578125, 0.02056884765625, + -0.0269927978515625, -0.0218505859375, 0.0360107421875, -0.023040771484375, -0.03082275390625, + -0.0164642333984375, 0.001773834228515625, -0.029876708984375, 0.0221710205078125, + -0.01052093505859375, -0.028106689453125, -0.040618896484375, 0.005916595458984375, + -0.00600433349609375, -0.00151824951171875, 0.01959228515625, -0.031829833984375, + 0.0125579833984375, 0.0020999908447265625, -0.0182342529296875, 0.0032672882080078125, + -0.030670166015625, 0.0200347900390625, -0.038665771484375, 0.052581787109375, + 0.003757476806640625, -0.0160675048828125, -0.050384521484375, 0.028778076171875, + -0.00506591796875, -0.016510009765625, -0.01389312744140625, -0.012451171875, + -0.0230712890625, -0.0024967193603515625, 0.048095703125, 0.040069580078125, + -0.018890380859375, -0.07012939453125, -0.02569580078125, -0.01004791259765625, + 0.002498626708984375, -0.003345489501953125, 0.035064697265625, -0.0299072265625, + -0.040191650390625, 0.03924560546875, -0.006504058837890625, 0.0079498291015625, + 0.02423095703125, -0.00504302978515625, 0.0252838134765625, -0.0012197494506835938, + 0.0121917724609375, -0.00237274169921875, -0.061065673828125, -0.055633544921875, + -0.0095672607421875, -0.053741455078125, 0.032928466796875, -0.007427215576171875, + -0.01134490966796875, 0.035888671875, 0.049285888671875, 0.01910400390625, + 0.01308441162109375, -0.0304107666015625, -0.0034027099609375, 0.0255279541015625, + -0.016571044921875, 0.00554656982421875, 0.02484130859375, 0.0280609130859375, + -0.0401611328125, 0.03326416015625, -0.0260467529296875, 0.03692626953125, 0.07550048828125, + 0.029510498046875, 0.0289154052734375, -0.005374908447265625, -0.029632568359375, + -0.035919189453125, 0.03497314453125, -0.03338623046875, -0.020904541015625, + -0.002361297607421875, -0.0830078125, -0.0216522216796875, 0.006000518798828125, + 0.02978515625, -0.0260467529296875, -0.0025787353515625, -0.0256195068359375, + 0.037322998046875, -0.0121307373046875, -0.015777587890625, -0.024505615234375, + 0.03985595703125, -0.004390716552734375, 0.0112762451171875, -0.0021114349365234375, + 0.00707244873046875, -0.005970001220703125, 0.04901123046875, 0.0276947021484375, + -0.0208282470703125, -0.049652099609375, -0.01094818115234375, -0.01491546630859375, + -0.01422119140625, 0.0300750732421875, -0.01013946533203125, -0.0011034011840820312, + 0.01201629638671875, 0.0214691162109375, 0.02276611328125, -0.0039005279541015625, + 0.037689208984375, -0.034820556640625, -0.0033550262451171875, -0.044219970703125, + -0.037750244140625, -0.01238250732421875, 0.026641845703125, 0.004852294921875, + -0.012725830078125, -0.04986572265625, -0.01410675048828125, -0.0024890899658203125, + -0.0042724609375, 0.02398681640625, 0.07501220703125, -0.01177215576171875, 0.031890869140625, + -0.06585693359375, -0.05633544921875, 0.055267333984375, 0.006099700927734375, + 0.00945281982421875, 0.040130615234375, 0.0239410400390625, 0.0188751220703125, + -0.0428466796875, 0.01412200927734375, -0.0172882080078125, 0.0060272216796875, + -0.0124664306640625, 0.01220703125, 0.0576171875, 0.020050048828125, 0.03680419921875, + 0.0021152496337890625, 0.006622314453125, -0.007793426513671875, 0.03045654296875, + -0.035308837890625, -0.033721923828125, -0.004245758056640625, 0.003936767578125, 0.01171875, + 0.001453399658203125, -0.010589599609375, 0.02142333984375, -0.004909515380859375, + -0.04400634765625, 0.006847381591796875, -0.00673675537109375, 0.05133056640625, + 0.006855010986328125, 0.01334381103515625, -0.0295562744140625, 0.06317138671875, + -0.00021266937255859375, 0.019989013671875, -0.0024890899658203125, -0.01248931884765625, + 0.050262451171875, -0.040679931640625, 0.0248565673828125, -0.00514984130859375, + -0.02349853515625, -0.0380859375, -0.0251312255859375, -0.018798828125, -0.005962371826171875, + -0.07611083984375, -0.01343536376953125, 0.0721435546875, 0.04974365234375, + 0.00646209716796875, 0.020599365234375, -0.006500244140625, -0.04461669921875, + 0.054534912109375, 0.004810333251953125, -0.04559326171875, -0.0533447265625, + 0.0088348388671875, 0.0264892578125, 0.0003581047058105469, 0.0018329620361328125, + 0.02392578125, 0.02655029296875, -0.0003304481506347656, 0.0228729248046875, + -0.041046142578125, 0.0021038055419921875, -0.0200653076171875, 0.03387451171875, + 0.0134735107421875, 0.0213470458984375, -0.0318603515625, 0.00971221923828125, + 0.0299835205078125, 0.026519775390625, 0.0168304443359375, 0.0231475830078125, + -0.047943115234375, 0.0183868408203125, 0.03851318359375, -0.024627685546875, + -0.029632568359375, 0.01459503173828125, -0.037017822265625, -0.00811767578125, + 0.032562255859375, 0.0209503173828125, -0.004276275634765625, 0.0099639892578125, + 0.0304718017578125, 0.0204010009765625, 0.032928466796875, 0.037078857421875, + 0.052093505859375, -0.01446533203125, -0.04443359375, -0.018035888671875, -0.0284423828125, + -0.0113067626953125, 0.01438140869140625, 0.006755828857421875, -0.01837158203125, + -0.0462646484375, -0.00470733642578125, -0.022552490234375, -0.00707244873046875, + -0.0182037353515625, -0.0135345458984375, 0.064208984375, -0.04266357421875, 0.02880859375, + -0.0240478515625, 0.0045623779296875, -0.0003943443298339844, 0.01007843017578125, + 0.0193023681640625, -0.0230255126953125, -0.0260009765625, -0.0279388427734375, + -0.00914764404296875, 0.012969970703125, -0.03900146484375, -0.0012235641479492188, + 0.0133056640625, 0.0003693103790283203, 0.002262115478515625, 0.01213836669921875, + 0.0276336669921875, -0.056060791015625, -0.0625, -0.0457763671875, -0.0270843505859375, + 0.029205322265625, 0.07049560546875, -0.014129638671875, -0.065185546875, -0.0105438232421875, + 0.04742431640625, 0.0141448974609375, 0.0244293212890625, 0.02801513671875, -0.02783203125, + -0.093017578125, -0.0051727294921875, -0.05462646484375, 0.0034732818603515625, + -0.0247955322265625, 0.039276123046875, 0.0211334228515625, -0.00396728515625, + 0.0213165283203125, -0.021881103515625, 0.0169525146484375, 0.0200347900390625, + -0.0369873046875, 0.06732177734375, 0.0106353759765625, -0.00531768798828125, + -0.0225677490234375, 0.028717041015625, -0.03814697265625, 0.004856109619140625, + 0.0079345703125, 0.0013132095336914062, -0.07025146484375, -0.0267181396484375, + 0.03363037109375, 0.035430908203125, 0.0267181396484375, -0.0013685226440429688, + 0.01383209228515625, -0.002960205078125, 0.043701171875, -0.0214691162109375, + -0.0018472671508789062, 0.0246124267578125, -0.00473785400390625, 0.00911712646484375, + 0.042572021484375, 0.003841400146484375, -0.0246429443359375, 0.0183868408203125, + 0.043731689453125, 0.0203094482421875, 0.0068359375, 0.00948333740234375, 0.053436279296875, + 0.04119873046875, -0.070556640625, -0.0305328369140625, 0.022735595703125, + 0.006008148193359375, 0.006954193115234375, -0.00019216537475585938, -0.0219573974609375, + -0.00884246826171875, -0.010711669921875, 0.02911376953125, 0.0254974365234375, + 0.01288604736328125, 0.029754638671875, -0.005405426025390625, -0.0032062530517578125, + -0.0292816162109375, -0.003772735595703125, 0.0179595947265625, 0.0121612548828125, + -0.012969970703125, 0.017547607421875, -0.01477813720703125, 0.00286865234375, + -0.044342041015625, 0.0238037109375, 0.0013189315795898438, -0.01361083984375, + -0.0080718994140625, -0.051300048828125, 0.01085662841796875, 0.015411376953125, + 0.034393310546875, -0.08135986328125, -0.03271484375, 0.004276275634765625, 0.023712158203125, + -0.0260009765625, -0.05218505859375, 0.013397216796875, 0.03338623046875, 0.0161285400390625, + -0.0002543926239013672, 0.0006890296936035156, 0.0181732177734375, 0.007396697998046875, + 0.00482940673828125, -0.0219573974609375, 0.0309295654296875, -0.014739990234375, + 0.00562286376953125, -0.01242828369140625, 0.01068878173828125, -0.0171051025390625, + -0.0662841796875, -0.00351715087890625, -0.047882080078125, -0.0103302001953125, + 0.002872467041015625, -0.0162506103515625, 0.022064208984375, 0.0293121337890625, + -0.035888671875, -0.0206451416015625, -0.0037689208984375, 0.0301361083984375, + -0.033538818359375, -0.01219940185546875, 0.00785064697265625, 0.00482940673828125, + -0.0264129638671875, -0.02880859375, 0.004795074462890625, 0.01120758056640625, + 0.0079498291015625, -0.0006561279296875, -0.005573272705078125, -0.0159149169921875, + -0.030029296875, 0.031585693359375, -0.047271728515625, 0.04376220703125, -0.010284423828125, + 0.02655029296875, -0.004795074462890625, -0.0087738037109375, -0.0156707763671875, + -0.01248931884765625, -0.0172119140625, -0.0195465087890625, -0.01149749755859375, + 0.003688812255859375, 0.045257568359375, -0.017486572265625, 0.047698974609375, + -0.00021731853485107422, -0.01029205322265625, -0.01436614990234375, 0.0175018310546875, + -0.0254058837890625, -0.037872314453125, -0.035675048828125, -0.01568603515625, + -0.0369873046875, 0.0013780593872070312, -0.004428863525390625, 0.006015777587890625, + -0.0021648406982421875, -0.05499267578125, -0.0263671875, -0.035491943359375, + -0.020599365234375, 0.0182952880859375, 0.01526641845703125, 0.0487060546875, + -0.016754150390625, -0.021728515625, -0.008880615234375, 0.033905029296875, 0.02825927734375, + -0.0278167724609375, 0.003353118896484375, 0.01068878173828125, 0.019378662109375, + -0.0240936279296875, -0.044036865234375, -0.0341796875, -0.037109375, 0.01171112060546875, + -0.043853759765625, 0.01181793212890625, 0.00911712646484375, -0.037567138671875, + -0.0191802978515625, -0.026214599609375, -0.039337158203125, -0.0005350112915039062, + 0.01418304443359375, 0.04437255859375, 0.04498291015625, -0.007762908935546875, + -0.035736083984375, -0.0004127025604248047, 0.0057220458984375, -0.017364501953125, + 0.0239715576171875, -0.0166168212890625, -0.040802001953125, 0.00934600830078125, + 0.0298004150390625, 0.024871826171875, 0.03948974609375, 0.058868408203125, + -0.016448974609375, -0.031341552734375, -0.01059722900390625, 0.00766754150390625, + 0.005702972412109375, 0.0352783203125, -0.006877899169921875, -0.004390716552734375, + -0.0166778564453125, -0.0163116455078125, -0.0274658203125, -0.005107879638671875, + -0.057708740234375, -0.020660400390625, 0.003448486328125, 0.01312255859375, + 0.0205841064453125, -0.0216827392578125, 0.047515869140625, 0.01404571533203125, + -0.020843505859375, 0.0025959014892578125, -0.000545501708984375, 0.02294921875, + -0.0152740478515625, -0.0133819580078125, -0.01125335693359375, -0.01873779296875, + 0.019622802734375, -0.0085906982421875, 0.001438140869140625, -0.0130615234375, + 0.00749969482421875, 0.01256561279296875, 0.047882080078125, 0.0207977294921875, + -0.004199981689453125, 0.0046234130859375, -0.0340576171875, 0.051483154296875, + -0.00559234619140625, -0.01013946533203125, -0.0196685791015625, -0.03143310546875, + 0.027435302734375, 0.04119873046875, 0.028289794921875, -0.0165863037109375, 0.040283203125, + -0.04437255859375, -0.01242828369140625, 0.0186309814453125, 0.00820159912109375, + -0.035064697265625, -0.01050567626953125, 0.0142059326171875, -0.005016326904296875, + 0.01593017578125, -0.010467529296875, -0.0005321502685546875, 0.038330078125, + -0.00992584228515625, -0.0233001708984375, -0.030548095703125, 0.0175628662109375, + -0.00972747802734375, 0.034637451171875, 0.0028972625732421875, 0.0105438232421875, + -0.0252685546875, -0.0072021484375, 0.0183563232421875, 0.0190887451171875, -0.0272216796875, + -0.0003218650817871094, 0.0195159912109375, 0.02978515625, -0.0236663818359375, + -0.004726409912109375, -0.0151519775390625, 0.03192138671875, 0.004604339599609375, + 0.033294677734375, -0.00916290283203125, -0.029754638671875, -0.0153045654296875, + -0.005947113037109375, 0.00836944580078125, 0.00923919677734375, 0.01032257080078125, + 0.01511383056640625, -0.04083251953125, 0.0256195068359375, 0.006076812744140625, + 0.01006317138671875, -0.007251739501953125, -0.005657196044921875, 0.01371002197265625, + -0.041229248046875, 0.006755828857421875, 0.012420654296875, -0.0219879150390625, + -0.061004638671875, -0.007160186767578125, 0.040802001953125, 0.0231781005859375, + 0.043060302734375, -0.0040130615234375, -0.0228424072265625, 0.052581787109375, + 0.0005311965942382812, -0.01442718505859375, -0.0216827392578125, -0.0299530029296875, + 0.0260009765625, 0.0226898193359375, -0.002033233642578125, 0.01434326171875, + -0.00252532958984375, 0.0263519287109375, 0.031524658203125, -0.001983642578125, + 0.010498046875, 0.004302978515625, -0.03240966796875, 0.00930023193359375, -0.0433349609375, + 0.052978515625, 0.01172637939453125, -0.016448974609375, 0.00946044921875, + -0.01013946533203125, -0.036376953125, 0.01203155517578125, 0.0264739990234375, + 0.037506103515625, 0.0174102783203125, 0.04571533203125, 0.0160980224609375, + 0.00789642333984375, -0.0032024383544921875, -0.033355712890625, -0.04302978515625, + 0.0007243156433105469, 0.050384521484375, 0.02392578125, -0.0197601318359375, + -0.007228851318359375, -0.0214080810546875, 0.0019989013671875, -0.0099945068359375, + -0.0134429931640625, -0.0244903564453125, 0.017822265625, 0.0165863037109375, + -8.344650268554688e-6, 0.005615234375, 0.01302337646484375, -0.0225067138671875, + -0.00601959228515625, 0.0014400482177734375, -0.01873779296875, -0.006000518798828125, + -0.01224517822265625, 4.869699478149414e-5, -0.00659942626953125, 0.0021991729736328125, + -0.0240478515625, -0.01117706298828125, -0.0160980224609375, 0.0080718994140625, + -0.0267181396484375, 0.0328369140625, -0.00302886962890625, -0.0027370452880859375, + -0.0244140625, 0.0079803466796875, 0.010101318359375, 0.017059326171875, 0.013916015625, + -0.035125732421875, -0.0316162109375, 0.01253509521484375, -0.029998779296875, + -0.00392913818359375, -0.016387939453125, -0.014556884765625, -0.0085296630859375, + 0.00151824951171875, 0.03045654296875, 0.00746917724609375, -0.012847900390625, + -0.005832672119140625, -0.02386474609375, 0.0012636184692382812, -0.030670166015625, + -0.0029010772705078125, 0.02099609375, 0.058258056640625, 0.0311737060546875, + 0.005458831787109375, 0.017059326171875, -0.00881195068359375, -0.0304107666015625, + 0.00118255615234375, 0.000583648681640625, 0.0009288787841796875, -0.0035419464111328125, + 0.037017822265625, 0.0029544830322265625, -0.0022106170654296875, 0.01099395751953125, + -0.0181121826171875, 0.012786865234375, 0.0137176513671875, 0.00887298583984375, + 0.0200042724609375, -0.0034580230712890625, 0.00946044921875, 0.0198516845703125, + 0.0095672607421875, -0.0284881591796875, -0.0265655517578125, 0.0038967132568359375, + -0.013946533203125, -0.004863739013671875, 0.04547119140625, 0.022216796875, + -0.023162841796875, 0.033203125, -0.0147552490234375, -0.005191802978515625, + 0.0026531219482421875, -0.00726318359375, -0.0080718994140625, -0.032928466796875, + 0.01134490966796875, 0.00789642333984375, 0.0207061767578125, 0.0021266937255859375, + 0.0161590576171875, 0.0137786865234375, 0.0258026123046875, -0.01177215576171875, + -0.01204681396484375, 0.04205322265625, -0.0027828216552734375, 0.002956390380859375, + 0.0287628173828125, 0.00485992431640625, 0.0093841552734375, 0.0176544189453125, + 0.020538330078125, -0.041290283203125, 0.027069091796875, 0.035736083984375, + 0.00530242919921875, 0.00255584716796875, -0.021270751953125, -0.0260009765625, + 0.0301055908203125, 0.0118560791015625, -0.007549285888671875, 0.00748443603515625, + -0.00923919677734375, 0.005290985107421875, -0.0036563873291015625, -0.08636474609375, + 0.004795074462890625, -0.01239776611328125, -0.013397216796875, -0.007350921630859375, + -0.028533935546875, 0.052154541015625, -0.0093536376953125, 0.020843505859375, + 0.0050811767578125, -0.01067352294921875, -0.0220184326171875, 0.0216827392578125, + -0.01088714599609375, 0.0124969482421875, -0.0247955322265625, -0.0560302734375, + -0.049285888671875, -0.00333404541015625, 0.001972198486328125, -0.01629638671875, + 0.0186767578125, 0.0208740234375, -0.0380859375, -0.034637451171875, 0.016021728515625, + 0.002285003662109375, -0.0013208389282226562, 0.01322174072265625, 0.003299713134765625, + 0.0189971923828125, 0.01181793212890625, 0.0216064453125, -0.006816864013671875, + 0.01383209228515625, 0.033905029296875, 0.01053619384765625, 0.04022216796875, + -0.0108795166015625, -0.039031982421875, -0.051605224609375, 0.04705810546875, 0.020751953125, + -0.0032958984375, -0.0005340576171875, -0.035614013671875, -0.016815185546875, + 0.017547607421875, 0.005950927734375, -0.01438140869140625, 0.01085662841796875, + 0.038909912109375, 0.01023101806640625, -0.0196533203125, -0.0174560546875, + -0.0294647216796875, 0.0235443115234375, -0.01398468017578125, -0.019439697265625, + 0.03619384765625, -0.01050567626953125, 0.03741455078125, -0.052154541015625, + -0.0066375732421875, 0.039764404296875, -0.00746917724609375, 0.0120086669921875, + -0.0374755859375, -0.0235748291015625, 0.0121307373046875, 0.00502777099609375, + 0.0367431640625, 0.031341552734375, 0.003070831298828125, -0.01371002197265625, + -0.0002269744873046875, 0.0300750732421875, -0.01424407958984375, 0.0264739990234375, + 0.01178741455078125, 0.00406646728515625, 0.00495147705078125, 0.003856658935546875, + 0.014556884765625, -0.0015811920166015625, 0.0196533203125, -0.03363037109375, + -0.01776123046875, 0.0494384765625, -0.00074005126953125, 0.0005908012390136719, + -0.0217742919921875, -0.01490020751953125, -0.035858154296875, -0.004100799560546875, + 0.031494140625, 0.0003829002380371094, -0.0183258056640625, -0.01043701171875, + -0.0054473876953125, -0.0261688232421875, -0.0072021484375, -0.0194854736328125, + 0.0081024169921875, -0.028533935546875, -0.0232391357421875, 0.0154876708984375, + 0.00121307373046875, 0.01024627685546875, -0.0274200439453125, 0.005657196044921875, + 0.00461578369140625, -0.01384735107421875, 0.00469207763671875, -0.0262451171875, + -0.0184783935546875, -0.00920867919921875, 0.0266876220703125, 0.034454345703125, + 0.03570556640625, -0.00611114501953125, 0.0037784576416015625, -0.05084228515625, + -0.00786590576171875, 0.01910400390625, -0.047454833984375, -0.01000213623046875, + 0.0157318115234375, -0.0119781494140625, 0.02142333984375, -0.0198822021484375, + -0.0053253173828125, -0.04498291015625, -0.00812530517578125, 0.00511932373046875, + 0.04052734375, 0.0035858154296875, -0.0289306640625, 0.03314208984375, -0.026214599609375, + 0.03271484375, 0.005817413330078125, 0.03192138671875, -0.0288543701171875, -0.015625, + 0.0208587646484375, -0.01096343994140625, -0.02142333984375, -0.01087188720703125, + -0.03741455078125, 0.002887725830078125, -0.0270843505859375, -0.01442718505859375, + 0.01303863525390625, 0.049591064453125, 0.03912353515625, 0.043853759765625, + 0.0159759521484375, -0.021575927734375, 0.017791748046875, -0.0245208740234375, + 0.0195770263671875, 0.00766754150390625, -0.01560211181640625, 0.0117950439453125, + 0.0095977783203125, 0.00830841064453125, -0.0020503997802734375, 0.01520538330078125, + 0.0308074951171875, -0.0162506103515625, 0.0244903564453125, -0.032470703125, + -0.0175323486328125, -0.02557373046875, 0.004154205322265625, 0.00746917724609375, + 0.0010251998901367188, -0.0016994476318359375, -0.0178375244140625, 0.0340576171875, + -0.005229949951171875, -0.0256195068359375, 0.0227508544921875, 0.01030731201171875, + 0.021331787109375, -0.01233673095703125, -0.01395416259765625, 0.052734375, + 0.0237884521484375, -0.012969970703125, -0.0137176513671875, -0.00685882568359375, + -0.007720947265625, -0.035186767578125, 0.045379638671875, -0.0214080810546875, + 0.0020160675048828125, -0.01239776611328125, -0.0019254684448242188, -0.0031871795654296875, + -0.0072021484375, -0.047332763671875, 0.019805908203125, 0.0236053466796875, + -0.0199127197265625, -0.0009174346923828125, -0.035797119140625, 0.01273345947265625, + 0.0163726806640625, -0.005588531494140625, 0.031463623046875, -0.031585693359375, + -0.0231475830078125, -0.0286865234375, 0.0023632049560546875, 0.0247955322265625, + -0.004638671875, -0.012115478515625, 0.0289306640625, -0.054718017578125, + -0.0007791519165039062, 0.01343536376953125, 0.0201873779296875, -0.0171051025390625, + -0.01509857177734375, 0.0123138427734375, -0.01375579833984375, -0.033660888671875, + -0.01016998291015625, 0.035797119140625, -0.00794219970703125, 0.0141448974609375, + -0.018707275390625, 0.0255279541015625, 0.0121002197265625, 0.00795745849609375, + 0.0204315185546875, -0.00351715087890625, 0.005184173583984375, -0.053192138671875, + -0.0253143310546875, -0.0158843994140625, 0.0096588134765625, -0.0190887451171875, + -0.0007638931274414062, -0.01055908203125, 0.02313232421875, -0.015655517578125, + -0.002597808837890625, 0.0040435791015625, -0.011871337890625, 0.0016450881958007812, + -0.0087738037109375, 0.06903076171875, -0.01317596435546875, 0.0020160675048828125, + 0.0144805908203125, 0.01995849609375, -0.002841949462890625, 0.006404876708984375, + 0.00405120849609375, 0.005657196044921875, -0.005023956298828125, 0.00562286376953125, + -0.00611114501953125, -0.0145416259765625, -0.0136566162109375, -0.0189056396484375, + -0.01154327392578125, -0.02130126953125, -0.0078277587890625, 0.0169219970703125, + -0.021759033203125, 0.01263427734375, -0.005329132080078125, 0.0092926025390625, + -0.006038665771484375, 0.0005240440368652344, -0.040557861328125, 0.0107879638671875, + -0.00408172607421875, 0.004009246826171875, 0.0123443603515625, 0.0251312255859375, + -0.00261688232421875, -0.0162811279296875, -0.01922607421875, -0.0231475830078125, + -0.020751953125, -0.06524658203125, -0.03863525390625, 0.037109375, -0.049591064453125, + -0.0164337158203125, -0.01329803466796875, 0.0189056396484375, -0.00555419921875, + 0.03411865234375, 0.022430419921875, 0.0229949951171875, -0.01239776611328125, + -0.02215576171875, 0.0157470703125, 0.00992584228515625, 0.04266357421875, 0.03887939453125, + 0.03900146484375, -0.00800323486328125, -0.0543212890625, 0.017822265625, + 0.0009012222290039062, -0.0018329620361328125, -0.0252227783203125, -0.00806427001953125, + 0.0087738037109375, -0.0245361328125, -0.0175933837890625, 0.0018939971923828125, + 0.01324462890625, -0.021820068359375, 0.004642486572265625, 0.0277862548828125, + -0.0027294158935546875, 0.0175933837890625, -0.01367950439453125, -0.007190704345703125, + 0.028167724609375, -0.01580810546875, -0.0021076202392578125, 0.02008056640625, + -0.007171630859375, -0.00920867919921875, -0.031890869140625, 0.00673675537109375, + 0.01361846923828125, 0.004291534423828125, 0.0224151611328125, -0.0269622802734375, + 0.0090179443359375, -0.0390625, 0.01462554931640625, 0.0126800537109375, 0.00801849365234375, + -0.007732391357421875, 0.00439453125, 0.0035266876220703125, 0.00547027587890625, + -0.0023784637451171875, 0.01776123046875, -0.00925445556640625, -0.008880615234375, + 0.004428863525390625, -0.0260009765625, 0.0013856887817382812, -0.015716552734375, + -0.01020050048828125, -0.01959228515625, -0.043060302734375, -0.007732391357421875, + -0.001590728759765625, 0.050140380859375, 0.032501220703125, 0.011993408203125, + 0.01959228515625, 0.00662994384765625, -0.018280029296875, -0.0183563232421875, -0.02734375, + -0.00928497314453125, -0.00476837158203125, -0.0185699462890625, 0.0007252693176269531, + -0.0208892822265625, 0.029083251953125, 0.0149383544921875, 0.028961181640625, + 0.0030117034912109375, 0.033416748046875, 0.005184173583984375, 0.004688262939453125, + 0.00765228271484375, 0.0355224609375, 0.0280914306640625, -0.036651611328125, + 0.00975799560546875, 0.00850677490234375, -0.0294342041015625, 0.01520538330078125, + -0.0032215118408203125, 0.00864410400390625, -0.00969696044921875, 0.017486572265625, + 0.028289794921875, -0.050079345703125, 0.0325927734375, 0.0274200439453125, + -0.0143585205078125, 0.0313720703125, -0.007465362548828125, -0.0076141357421875, + 0.0179443359375, -0.0138702392578125, 0.0117340087890625, -0.031005859375, 0.0305023193359375, + -0.01605224609375, 0.03448486328125, -0.020294189453125, 0.0037670135498046875, + -0.00750732421875, -0.0275421142578125, 0.00405120849609375, -0.007495880126953125, + 0.019561767578125, -0.0307769775390625, -0.007251739501953125, -0.0295257568359375, + 0.03851318359375, -0.007389068603515625, -0.0007333755493164062, 0.004638671875, + -0.015716552734375, 0.0119781494140625, 0.00420379638671875, -0.003688812255859375, + -0.03167724609375, -0.01134490966796875, -0.0291900634765625, -2.1517276763916016e-5, + -0.0091705322265625, 0.006320953369140625, -0.0078125, 0.004360198974609375, + -0.051605224609375, -0.002780914306640625, 0.0145263671875, 0.0247650146484375, + 0.0173797607421875, -0.01593017578125, 0.020721435546875, -0.02386474609375, + 0.01116180419921875, -0.042572021484375, -0.0154876708984375, 0.0011615753173828125, + 0.0285797119140625, -0.00334930419921875, -0.0030231475830078125, -0.009246826171875, + 9.709596633911133e-5, -0.049896240234375, 0.0144195556640625, 0.002964019775390625, + -0.0188751220703125, -0.0093841552734375, -0.004756927490234375, 0.047271728515625, + -0.00266265869140625, -0.0010652542114257812, -0.006927490234375, -0.01812744140625, + 0.0096588134765625, 0.005542755126953125, 0.032989501953125, 0.01348114013671875, + 0.00897979736328125, -0.01312255859375, 0.01062774658203125, 0.034149169921875, + 0.01287078857421875, 0.048248291015625, -0.0014190673828125, 0.040435791015625, + -0.006622314453125, -0.0227508544921875, -0.019866943359375, -0.05255126953125, + -0.00039196014404296875, 0.01499176025390625, 0.01544952392578125, -0.01520538330078125, + 0.00911712646484375, -0.01215362548828125, 0.006328582763671875, 0.052490234375, + 0.0013217926025390625, 0.016448974609375, 0.005344390869140625, 0.0010747909545898438, + -0.01245880126953125, 0.016815185546875, -0.019500732421875, 0.0131378173828125, + -0.0218048095703125, 0.01446533203125, -0.0015125274658203125, 0.046417236328125, + 0.0162811279296875, 0.0073394775390625, 0.0184326171875, 0.013519287109375, + -0.01184844970703125, -0.011444091796875, -0.0139923095703125, -0.0033016204833984375, + -0.020263671875, -0.031646728515625, 0.0273895263671875, 0.00323486328125, + 0.0036258697509765625, -0.01554107666015625, 0.0122528076171875, 0.00439453125, + 0.0169677734375, -0.0014944076538085938, -0.031463623046875, -0.01424407958984375, + 0.00638580322265625, -0.01371002197265625, -0.019805908203125, -0.011199951171875, + -0.0027599334716796875, 0.01026153564453125, 0.0196533203125, 0.04156494140625, + -0.0184783935546875, 0.014129638671875, -0.01678466796875, 0.00562286376953125, + -0.003185272216796875, 0.005115509033203125, 0.059967041015625, -0.0308990478515625, + 0.01195526123046875, -0.0006651878356933594, -0.0172271728515625, -0.00926971435546875, + 0.0202178955078125, -0.001071929931640625, -0.037017822265625, 0.0221099853515625, + 0.00859832763671875, 0.01678466796875, -0.0012807846069335938, 0.0197906494140625, + 0.007633209228515625, -0.01250457763671875, -0.020111083984375, 0.01071929931640625, + 0.01165008544921875, -0.059906005859375, 0.0008549690246582031, 0.0210418701171875, + 0.034423828125, 0.005283355712890625, 0.01141357421875, 0.0019664764404296875, + -0.013458251953125, 0.017486572265625, 0.0172882080078125, 0.00693511962890625, + 0.0305328369140625, 0.0229034423828125, 0.0308074951171875, -0.006412506103515625, + -0.01226043701171875, -0.0176544189453125, -0.01200103759765625, -0.033935546875, + 0.0264739990234375, 0.01885986328125, -0.0213165283203125, 0.046722412109375, + -0.006687164306640625, 0.020660400390625, -0.00945281982421875, 0.0009870529174804688, + -0.0093841552734375, 2.682209014892578e-6, 0.01617431640625, -0.0160980224609375, + 0.0017337799072265625, -0.0157470703125, 0.0016794204711914062, 0.018707275390625, + -0.01873779296875, 0.0002551078796386719, 0.0278167724609375, 0.02337646484375, + 0.000553131103515625, 0.022735595703125, -0.0084381103515625, -0.0308837890625, + -0.0184326171875, 0.00609588623046875, -0.0030078887939453125, 0.00623321533203125, + -0.031341552734375, 0.005115509033203125, -0.0109100341796875, 0.00669097900390625, + 0.036865234375, -0.01152801513671875, -0.0254974365234375, -0.0017709732055664062, + 0.005817413330078125, -0.02227783203125, -0.03155517578125, 0.009521484375, 0.031768798828125, + -0.01513671875, -0.0252685546875, 0.0229034423828125, 0.01473236083984375, 0.0246734619140625, + 0.0004096031188964844, -0.029327392578125, -0.01499176025390625, 0.051605224609375, + 0.0289306640625, -0.0216064453125, 0.03204345703125, 0.012725830078125, -0.0232391357421875, + -0.032470703125, 0.01151275634765625, -0.01151275634765625, 0.0182952880859375, + -0.0173492431640625, 0.006015777587890625, 0.004638671875, -0.031097412109375, -0.017578125, + -0.0250091552734375, -0.0150146484375, 0.0018987655639648438, 0.021728515625, + 0.001178741455078125, -0.029510498046875, -0.0227203369140625, -0.0196685791015625, + -0.0014944076538085938 + ] + }, + { + "tag": "stem", + "description": "an event focused on science, engineering, mathematics, biology, physics, astronomy, or medicine", + "embedding": [ + -0.00800323486328125, -0.0112152099609375, 0.00299072265625, 0.017547607421875, + -0.028228759765625, -0.000934600830078125, -0.022613525390625, 0.00396728515625, + -0.019378662109375, 0.03759765625, -0.0038928985595703125, 0.006805419921875, + -0.03778076171875, -0.0163421630859375, 0.05255126953125, 0.08056640625, -0.0237274169921875, + 0.0081329345703125, 2.682209014892578e-5, 0.0086212158203125, 0.044708251953125, + 0.004169464111328125, 0.0157318115234375, 0.0107574462890625, -0.01430511474609375, + -0.0243072509765625, -0.00614166259765625, 0.0280914306640625, 0.045196533203125, + 0.057159423828125, 0.06219482421875, -0.02972412109375, 0.004199981689453125, + -0.004764556884765625, -0.0233154296875, 0.053131103515625, 0.011016845703125, + 0.0022563934326171875, 0.01093292236328125, -0.01107025146484375, -0.0128936767578125, + -0.0291595458984375, -0.04193115234375, 0.015380859375, -0.050689697265625, + -0.0304412841796875, -0.020050048828125, -0.00611114501953125, 0.046173095703125, + 0.030609130859375, -0.0015573501586914062, -0.049285888671875, 0.038665771484375, 0.033203125, + 0.01153564453125, 0.01079559326171875, 0.0203704833984375, -0.00579833984375, + -0.01012420654296875, -0.003627777099609375, 0.01055145263671875, 0.01329803466796875, + 0.0149688720703125, 0.0308074951171875, -0.0237274169921875, 0.0168304443359375, + 0.040374755859375, 0.0521240234375, 0.015380859375, 0.01479339599609375, 0.013763427734375, + 0.0418701171875, -0.029388427734375, 0.0321044921875, 0.0777587890625, -0.0194854736328125, + -0.058258056640625, 0.00966644287109375, -0.0277252197265625, 0.0305328369140625, + 0.07061767578125, -0.0243682861328125, 0.026458740234375, -0.0196380615234375, + -0.018096923828125, -0.03741455078125, -0.0511474609375, -0.002376556396484375, + -0.0684814453125, -0.01168060302734375, -0.0146026611328125, -0.0255889892578125, + -0.006443023681640625, 0.050872802734375, 0.02484130859375, 0.020660400390625, + 0.042327880859375, -0.039306640625, 0.007228851318359375, 0.063720703125, -0.0053253173828125, + -0.07830810546875, -0.02557373046875, -0.04437255859375, 0.034393310546875, 0.03826904296875, + 0.0153656005859375, -0.033660888671875, 0.005008697509765625, -0.0024929046630859375, + -0.06549072265625, -0.042877197265625, -0.01174163818359375, 0.0552978515625, + -0.0240936279296875, -0.033843994140625, 0.02532958984375, -0.05218505859375, + -8.279085159301758e-5, -0.01113128662109375, -0.0335693359375, 0.056396484375, + -0.0040435791015625, -0.00333404541015625, 0.048736572265625, -0.0151214599609375, + 0.00939178466796875, -0.01139068603515625, 0.025054931640625, 0.0009336471557617188, + 0.0233612060546875, -0.023406982421875, 0.03192138671875, -0.0814208984375, + -0.0177154541015625, -0.038299560546875, -0.048828125, 0.0289459228515625, -0.07086181640625, + -0.0233001708984375, 0.0259552001953125, -0.00032138824462890625, 0.045257568359375, + 0.005786895751953125, 0.061553955078125, -0.047607421875, -0.0247039794921875, + 0.03656005859375, 0.0369873046875, 0.003170013427734375, -0.0361328125, -0.00661468505859375, + -0.027008056640625, 0.040283203125, 0.039093017578125, -0.027130126953125, + -0.0091094970703125, 0.01172637939453125, -0.004123687744140625, -0.0457763671875, + 0.004634857177734375, 4.887580871582031e-5, -0.03668212890625, 0.034698486328125, + 0.00928497314453125, -0.0024776458740234375, -0.0281219482421875, -0.039642333984375, + -0.03729248046875, -0.03265380859375, -0.04339599609375, -0.02734375, -0.03607177734375, + 0.043670654296875, 0.03948974609375, 0.032196044921875, 0.038299560546875, 0.03955078125, + -0.046112060546875, -0.030731201171875, 0.03564453125, 0.04193115234375, -0.0650634765625, + 0.0088653564453125, 0.0185089111328125, 0.047119140625, 0.0197296142578125, + 0.0017652511596679688, -0.0082855224609375, -0.052001953125, 0.0102081298828125, + 0.07623291015625, 0.036224365234375, -0.0014476776123046875, 0.026702880859375, + -0.0251922607421875, -0.0163726806640625, -0.0092010498046875, 0.0287628173828125, + -0.044708251953125, -0.00506591796875, -0.030426025390625, 0.0245819091796875, + -0.00506591796875, 0.0252227783203125, -0.018218994140625, 0.0109100341796875, + 0.024749755859375, 0.0142822265625, -0.047332763671875, 0.0172576904296875, 0.035369873046875, + 0.060546875, 0.011871337890625, -0.0198822021484375, -0.0167999267578125, 0.027191162109375, + 0.0098724365234375, -0.007747650146484375, -0.00563812255859375, -0.01910400390625, + 0.0155487060546875, 0.0826416015625, 0.04425048828125, 0.0013256072998046875, + -0.006336212158203125, -0.0238494873046875, 0.0208740234375, 0.019744873046875, + -0.024566650390625, -0.037353515625, 0.0224761962890625, -0.008087158203125, 0.02801513671875, + -0.021392822265625, 0.004261016845703125, -0.0206756591796875, -0.059600830078125, + -0.0069580078125, -0.02130126953125, 0.0290985107421875, 0.0180206298828125, + 0.015838623046875, -0.00553131103515625, -0.0009889602661132812, 0.0234832763671875, + 0.020355224609375, 0.030548095703125, 0.01593017578125, 0.040130615234375, 0.0625, + -0.0062255859375, -0.048736572265625, -0.05670166015625, 0.050018310546875, + -0.00832366943359375, -0.0035114288330078125, 0.0235443115234375, 0.00165557861328125, + -0.00388336181640625, -0.00012314319610595703, -0.000545501708984375, -0.01076507568359375, + -0.043670654296875, -0.03546142578125, 0.01128387451171875, 0.019256591796875, + -0.011138916015625, -0.0085906982421875, -0.03399658203125, 0.04132080078125, + 0.0265655517578125, -0.01403045654296875, -0.024200439453125, -0.007160186767578125, + 0.01513671875, 0.0250396728515625, 0.09576416015625, -0.01214599609375, -0.003421783447265625, + 0.00946044921875, -0.0076446533203125, 0.046234130859375, -0.0301055908203125, + -0.015838623046875, 0.050689697265625, -0.006641387939453125, -0.0038089752197265625, + -0.01129913330078125, -0.051422119140625, -0.0018558502197265625, 0.00290679931640625, + 0.01108551025390625, 0.01500701904296875, -0.0184173583984375, -0.033782958984375, + 0.026824951171875, 0.04107666015625, 0.0167388916015625, -0.0230560302734375, 0.02001953125, + -0.080322265625, -0.01136016845703125, -0.021026611328125, -0.0321044921875, 0.06964111328125, + -0.034942626953125, -0.0160675048828125, 0.034881591796875, -0.0035572052001953125, + 0.005779266357421875, -0.0179290771484375, -0.0196533203125, 0.02197265625, + 0.0256500244140625, -0.017791748046875, -0.0194091796875, 0.0767822265625, + 0.0029544830322265625, -0.035858154296875, 0.016632080078125, -0.00249481201171875, + 0.0186004638671875, -0.041046142578125, 0.04486083984375, 0.0257415771484375, + 0.007198333740234375, 0.049072265625, -0.00412750244140625, -0.004314422607421875, + -0.01898193359375, 0.022216796875, -0.02484130859375, 0.036834716796875, 0.0242919921875, + 0.046234130859375, 0.07501220703125, -0.0148773193359375, -0.029083251953125, + -0.00954437255859375, -0.05511474609375, -0.0224609375, -0.061767578125, 0.036285400390625, + -0.0088653564453125, 0.051971435546875, -0.0310211181640625, -0.00989532470703125, + 0.007282257080078125, 0.01284027099609375, -0.018951416015625, 0.007228851318359375, + 0.0030727386474609375, 0.0258941650390625, -0.033660888671875, -0.0321044921875, + -0.0157318115234375, 0.0233154296875, 0.00391387939453125, 0.0233917236328125, + 0.006866455078125, 0.021087646484375, 0.05328369140625, 0.0236663818359375, + 0.0166168212890625, 0.0309906005859375, -0.04168701171875, -0.01117706298828125, + 0.0019779205322265625, -0.07470703125, 0.003757476806640625, 0.0264739990234375, + 0.032989501953125, -0.034515380859375, -0.01702880859375, 0.05078125, -0.0123138427734375, + 0.03790283203125, -3.081560134887695e-5, 0.00962066650390625, -0.0142822265625, + -0.0019550323486328125, -0.00982666015625, -0.060791015625, -0.004085540771484375, + 0.053863525390625, 0.00662994384765625, 0.007442474365234375, -0.0418701171875, + -0.0009565353393554688, 0.03448486328125, -0.01369476318359375, 0.027008056640625, + -0.0272674560546875, 0.02215576171875, 0.009613037109375, -0.0015411376953125, + 0.0250091552734375, 0.03472900390625, 0.005496978759765625, -0.0284576416015625, + -0.029754638671875, 0.00640106201171875, -0.045166015625, 0.01220703125, -0.01140594482421875, + 0.03350830078125, -0.004215240478515625, -0.0020904541015625, -0.033905029296875, + -0.004024505615234375, -0.0546875, 0.03985595703125, 0.0302734375, -0.0457763671875, + -0.0014066696166992188, -0.03948974609375, -0.006809234619140625, -0.03436279296875, + 0.039306640625, 0.0019893646240234375, -0.00591278076171875, 0.01416015625, + -0.0005464553833007812, 0.01465606689453125, 0.055938720703125, 0.00655364990234375, + -0.0256195068359375, -0.0164794921875, -0.034210205078125, -0.025146484375, 0.015838623046875, + -0.0119781494140625, -0.00699615478515625, 0.00390625, -0.044403076171875, 0.0180816650390625, + 0.00969696044921875, -0.02557373046875, 0.01206207275390625, -0.04156494140625, + 0.04425048828125, -0.002742767333984375, -0.01416015625, -0.0021305084228515625, + -0.003143310546875, -0.0250091552734375, -0.0009136199951171875, -0.00934600830078125, + -0.06280517578125, 0.024871826171875, -0.0286865234375, -0.0016908645629882812, + -0.004276275634765625, -0.027374267578125, -0.0122833251953125, 0.0200653076171875, + -0.0177001953125, 0.042388916015625, 0.048187255859375, 0.05047607421875, 0.04296875, + -0.0067901611328125, -0.023345947265625, -0.00804901123046875, -0.0166473388671875, + -0.01000213623046875, 0.033172607421875, -0.031341552734375, 0.024322509765625, + 0.041107177734375, 0.0037097930908203125, 0.0297698974609375, 0.03607177734375, + -0.0144500732421875, -0.007068634033203125, 0.0176544189453125, -0.0034275054931640625, + 0.0166015625, 0.031280517578125, -0.0051116943359375, -0.0112457275390625, + 0.01454925537109375, 0.0309600830078125, -0.0234832763671875, -0.01253509521484375, + 0.027008056640625, -0.0131072998046875, -0.0020160675048828125, 0.02935791015625, + 0.002513885498046875, 0.00411224365234375, -0.0411376953125, -0.0147857666015625, + 0.030181884765625, -0.024932861328125, -0.04290771484375, 0.0265350341796875, + -0.01532745361328125, -0.0304412841796875, 0.0028839111328125, -0.03009033203125, + -0.032440185546875, 0.033843994140625, 0.01134490966796875, 0.051544189453125, + -0.054779052734375, 0.0238800048828125, 0.01364898681640625, 0.0322265625, + 0.01319122314453125, -0.06634521484375, 0.03179931640625, 0.056488037109375, 0.02789306640625, + -0.0162506103515625, -0.00977325439453125, 0.01230621337890625, 0.01043701171875, + -0.00199127197265625, -0.0224609375, -0.018768310546875, -0.025665283203125, 0.0323486328125, + -0.00974273681640625, -0.058319091796875, 0.0001983642578125, -0.042388916015625, + -0.0207366943359375, -0.049072265625, -0.0280914306640625, 0.007236480712890625, + -0.0108489990234375, 0.0357666015625, -0.012725830078125, -0.01284027099609375, + -0.0102081298828125, 0.0203094482421875, 0.016815185546875, -0.00986480712890625, + -0.02435302734375, 0.02142333984375, 0.0215606689453125, -0.0012769699096679688, + -0.0217437744140625, 0.056610107421875, -0.0291290283203125, -0.01169586181640625, + -0.01525115966796875, 0.022308349609375, 0.005767822265625, -0.039031982421875, + 0.0173187255859375, -0.02386474609375, 0.02667236328125, 0.0303192138671875, + 0.0008673667907714844, -0.0211334228515625, -0.01471710205078125, 0.00988006591796875, + 0.031646728515625, -0.01465606689453125, 0.0021381378173828125, -0.0147705078125, + -0.006046295166015625, 0.01348114013671875, -0.0030307769775390625, 0.001407623291015625, + 0.00795745849609375, 0.0190582275390625, -0.0111083984375, 0.006603240966796875, + -0.010894775390625, 0.005138397216796875, -0.0069580078125, -0.02459716796875, + -0.0374755859375, 0.017578125, -0.04730224609375, -0.0132598876953125, 0.01416015625, + -0.007335662841796875, -0.04248046875, -0.032745361328125, -0.049835205078125, + 0.0033702850341796875, 0.0242919921875, 0.01934814453125, -0.003696441650390625, + -0.027679443359375, -0.01276397705078125, -0.002361297607421875, 0.0176239013671875, + 0.013916015625, 0.0277862548828125, -0.005550384521484375, -0.0100860595703125, + 0.0097808837890625, -0.00933074951171875, -0.0206756591796875, 0.00856781005859375, + 0.01386260986328125, 0.006725311279296875, 0.036865234375, 0.0075225830078125, -0.0400390625, + 0.004962921142578125, -0.007965087890625, -0.00782012939453125, -0.007720947265625, + 0.0038166046142578125, 0.00959014892578125, -0.005107879638671875, 0.003627777099609375, + -0.00821685791015625, -0.0219573974609375, 0.01544189453125, -0.0210418701171875, + 0.0027027130126953125, 0.015625, -0.03302001953125, -0.0044403076171875, 0.02008056640625, + 0.0439453125, 0.04791259765625, 0.01308441162109375, -0.023101806640625, -0.0240936279296875, + 0.02264404296875, 0.024505615234375, -0.0031299591064453125, 0.003826141357421875, + 0.01611328125, -0.007541656494140625, -0.0308074951171875, 0.025787353515625, + -0.008148193359375, -0.00354766845703125, -0.03338623046875, -0.005748748779296875, + 0.00855255126953125, 0.00899505615234375, 0.009490966796875, -0.0022525787353515625, + 0.04522705078125, 0.00820159912109375, -0.0030193328857421875, -0.006778717041015625, + 0.0006103515625, 0.003940582275390625, 0.003940582275390625, 0.030609130859375, + 0.01177978515625, 0.003231048583984375, 0.0224761962890625, 0.0035400390625, + 0.01465606689453125, -0.035186767578125, 0.009124755859375, -0.0163421630859375, + 0.0027027130126953125, 0.01018524169921875, 0.00598907470703125, -0.039154052734375, + 0.003936767578125, 0.048309326171875, 0.01320648193359375, -0.0139923095703125, + -0.00914764404296875, 0.03363037109375, 9.441375732421875e-5, -0.002254486083984375, + 0.009063720703125, 0.015777587890625, 0.022064208984375, -0.03173828125, -0.017120361328125, + -0.0082550048828125, 0.00226593017578125, 0.01538848876953125, -0.00634002685546875, + -0.035400390625, -0.01230621337890625, -0.0015697479248046875, -0.01309967041015625, + -0.00608062744140625, 0.0032176971435546875, 0.01409912109375, 0.01666259765625, + -0.0156097412109375, 0.025604248046875, -0.018157958984375, 0.030426025390625, + 0.0144500732421875, 0.0158843994140625, -0.04638671875, 0.006824493408203125, + -0.00103759765625, -0.032318115234375, -0.05364990234375, -0.0033397674560546875, + 0.0160369873046875, 0.00574493408203125, -0.0298004150390625, -0.0110626220703125, + -0.0165252685546875, 0.01531219482421875, 0.02716064453125, 0.038421630859375, + -0.00931549072265625, 0.0025787353515625, 0.01464080810546875, -0.02093505859375, + 0.01346588134765625, -0.01490020751953125, -0.037811279296875, 0.04461669921875, + -0.0006017684936523438, 0.00870513916015625, -0.00794219970703125, -0.03070068359375, + 0.0223541259765625, -0.046356201171875, -0.0003952980041503906, -0.0308074951171875, + 0.0095977783203125, 0.03216552734375, 0.01947021484375, -0.0567626953125, -0.019805908203125, + -0.005130767822265625, 0.02337646484375, -0.04229736328125, -0.021728515625, + 0.0003705024719238281, -0.0005822181701660156, -0.00821685791015625, -0.032989501953125, + -0.0279083251953125, -0.0146026611328125, 0.020751953125, -0.0181427001953125, + 0.01312255859375, 0.02935791015625, -0.0130767822265625, -0.002620697021484375, + 0.0261688232421875, 0.004077911376953125, -0.0201568603515625, -0.002208709716796875, + -0.031585693359375, 0.0099945068359375, -0.0025806427001953125, 0.00873565673828125, + 0.0219879150390625, -0.019744873046875, -0.0214080810546875, -0.0038509368896484375, + 0.00296783447265625, -0.00885009765625, 0.0234375, 0.0294342041015625, 0.01233673095703125, + 0.017791748046875, -0.028839111328125, 0.0200958251953125, 0.0228271484375, + -0.024749755859375, 0.03912353515625, 0.0019683837890625, 0.034912109375, + -0.006862640380859375, -0.0225830078125, -0.01378631591796875, 0.01534271240234375, + 0.033721923828125, -0.007694244384765625, -0.01363372802734375, -0.003635406494140625, + 0.035858154296875, 0.031707763671875, -0.0160675048828125, -0.0005745887756347656, + 0.001781463623046875, 0.0086822509765625, -0.0230560302734375, 0.02679443359375, + -0.005657196044921875, -0.047576904296875, -0.04559326171875, -0.007633209228515625, + -0.042510986328125, -0.01551055908203125, -0.0285797119140625, 0.01371002197265625, + -0.05120849609375, 0.039459228515625, -0.026031494140625, 0.016326904296875, + 0.029937744140625, 0.0255584716796875, 0.00446319580078125, -0.01447296142578125, + 0.0111083984375, 0.048431396484375, 0.0246124267578125, -0.05816650390625, 0.0253448486328125, + 0.0084686279296875, -0.030426025390625, 0.022430419921875, -0.0037670135498046875, + -0.005710601806640625, 0.034759521484375, -0.00885772705078125, -0.0916748046875, + 0.0221710205078125, 0.01541900634765625, 0.023345947265625, -0.0254669189453125, 0.025390625, + -0.0259552001953125, 0.01186370849609375, -0.0179290771484375, 0.037322998046875, + 0.042572021484375, -0.0160064697265625, 0.02935791015625, 0.0255889892578125, + 0.0235137939453125, -0.005535125732421875, 0.0206451416015625, -0.0036792755126953125, + -0.0035076141357421875, 0.0386962890625, 0.0217132568359375, -0.025848388671875, + -0.00553131103515625, -0.050567626953125, 0.007904052734375, -0.040496826171875, + 0.024627685546875, 0.0333251953125, -0.0068359375, -0.012054443359375, 0.018218994140625, + -0.0104827880859375, -0.004375457763671875, -0.01297760009765625, -0.0054779052734375, + -0.0189208984375, -0.0253753662109375, -0.004405975341796875, -0.0274505615234375, + -0.04034423828125, -0.01381683349609375, -0.0007219314575195312, -0.008544921875, + 0.0196075439453125, -0.023223876953125, -0.0312042236328125, -0.01079559326171875, + 0.0017271041870117188, -0.053070068359375, 0.04058837890625, -0.01519775390625, + -0.01161956787109375, 0.0251007080078125, -0.0031414031982421875, -0.04156494140625, + 0.0157470703125, 0.0275726318359375, 0.0045318603515625, -0.0250396728515625, + 0.0247650146484375, 0.01186370849609375, -0.0276031494140625, 0.0269775390625, + 0.01027679443359375, -0.044464111328125, 0.05279541015625, -0.0024089813232421875, + -0.0184173583984375, 0.00453948974609375, 0.04144287109375, -0.024658203125, + -0.0234222412109375, -0.00335693359375, -0.032958984375, 0.0406494140625, + -0.01282501220703125, 0.02923583984375, 0.0104217529296875, -0.03125, 0.00270843505859375, + -0.035308837890625, -0.0223236083984375, 0.013916015625, 0.0085906982421875, + -0.0207366943359375, -0.01403045654296875, -0.006397247314453125, 0.01471710205078125, + -0.046630859375, -0.01222991943359375, 0.0200042724609375, 0.005657196044921875, + 0.05059814453125, 0.0003178119659423828, -0.0190582275390625, -0.01328277587890625, + -0.0036640167236328125, -0.03326416015625, -0.0177001953125, 0.037933349609375, + 0.013397216796875, 0.00047850608825683594, 0.005672454833984375, -0.0118560791015625, + -0.01522064208984375, 0.0184326171875, 0.054168701171875, 0.00476837158203125, + 0.0174102783203125, 0.0281524658203125, 0.015838623046875, 0.00658416748046875, + 0.01409912109375, 0.0016050338745117188, -0.0289154052734375, 0.015777587890625, + 0.0174713134765625, -0.02337646484375, -0.0148468017578125, 0.0401611328125, + 0.024871826171875, -0.004589080810546875, -0.00872802734375, -0.03887939453125, + -0.034637451171875, 0.0008826255798339844, 0.021881103515625, 0.004058837890625, + -0.0219268798828125, 0.03851318359375, -0.034210205078125, -0.01751708984375, + -0.0310211181640625, -0.006809234619140625, 0.005992889404296875, -0.01224517822265625, + -0.0294952392578125, 0.070556640625, 0.006824493408203125, -0.005889892578125, + -0.04388427734375, 0.0052642822265625, 0.0179595947265625, -0.0229034423828125, + 0.0036830902099609375, 0.032684326171875, -0.0185699462890625, 0.006763458251953125, + -0.006610870361328125, 0.011444091796875, -0.00460052490234375, 0.006526947021484375, + 0.01020050048828125, -0.04071044921875, 0.01551055908203125, -0.003570556640625, + -0.0186309814453125, -0.001064300537109375, 0.0233306884765625, 0.0099029541015625, + -0.0208587646484375, -0.0011720657348632812, -0.004299163818359375, -0.013580322265625, + -0.007328033447265625, 0.0102691650390625, 0.0094146728515625, 0.036224365234375, + -0.021240234375, -0.025238037109375, -0.00910186767578125, 0.03558349609375, + -0.0130157470703125, 0.0204315185546875, -0.00038933753967285156, -0.00951385498046875, + -0.011688232421875, 0.0200347900390625, -0.0202178955078125, 0.02423095703125, + -0.0106658935546875, 0.006725311279296875, -0.04107666015625, -0.006252288818359375, + 0.0003707408905029297, 0.001407623291015625, -0.020721435546875, -0.0159912109375, + 0.0341796875, -0.0082550048828125, -0.0234527587890625, 0.0196533203125, -0.01462554931640625, + 0.008697509765625, -0.00946807861328125, 0.00914764404296875, 0.05535888671875, + -0.05340576171875, -0.010589599609375, 0.006855010986328125, -0.032379150390625, + -0.0075225830078125, -0.005542755126953125, -0.04638671875, 0.01268768310546875, + 0.037017822265625, 0.01293182373046875, 0.059661865234375, 0.01093292236328125, + -0.0438232421875, -0.0225830078125, 0.00024330615997314453, -0.00679779052734375, + -0.0154571533203125, 0.007476806640625, -0.032196044921875, 0.021270751953125, + -0.0036029815673828125, -0.0101470947265625, -0.0163421630859375, 0.0017461776733398438, + -0.0094451904296875, -0.0164031982421875, 0.0208740234375, 0.005321502685546875, + 0.01081085205078125, 0.00257110595703125, -0.01424407958984375, 0.013671875, + 0.007396697998046875, 0.027008056640625, 0.021942138671875, 0.0183563232421875, + 0.0235137939453125, 0.00809478759765625, 0.0261993408203125, -0.031585693359375, + -0.0166168212890625, -0.003093719482421875, -0.01464080810546875, -0.005214691162109375, + -0.041534423828125, -0.0218658447265625, 0.006992340087890625, -0.007015228271484375, + 0.00888824462890625, 0.006519317626953125, 0.0193634033203125, -0.0106353759765625, + 0.0194549560546875, 0.03656005859375, -0.004978179931640625, -0.011383056640625, + -0.0186920166015625, -0.02386474609375, -0.02069091796875, -0.004451751708984375, + -0.0015201568603515625, -0.0105743408203125, -0.0182952880859375, -0.01309967041015625, + 0.0180511474609375, 0.004405975341796875, 0.01131439208984375, 0.0382080078125, + 0.01861572265625, -0.01428985595703125, 0.05401611328125, -0.016021728515625, + -0.0206298828125, -0.0179290771484375, 0.0197601318359375, -0.0197906494140625, + 0.031402587890625, 0.0019931793212890625, -0.03338623046875, -0.0028228759765625, + 0.00891876220703125, -0.0081634521484375, -0.01352691650390625, -0.0216217041015625, + 0.025543212890625, -0.0009136199951171875, -0.008514404296875, -0.032745361328125, + 1.4007091522216797e-5, 0.0126190185546875, -0.01557159423828125, -0.037353515625, + 0.0070953369140625, -0.003055572509765625, -0.01033782958984375, -0.03472900390625, + -0.01369476318359375, 0.0239105224609375, 0.0012950897216796875, -0.01538848876953125, + -0.01506805419921875, -0.0028438568115234375, -0.023284912109375, 0.01407623291015625, + 0.01239013671875, 0.0121917724609375, 0.0182952880859375, 0.0017185211181640625, + -0.0196533203125, -0.036590576171875, -0.017730712890625, 0.035491943359375, -0.0050048828125, + -0.002086639404296875, -0.00717926025390625, 0.0028514862060546875, -0.00650787353515625, + -0.0263671875, -0.0028018951416015625, 0.02630615234375, 0.042205810546875, + -0.0257720947265625, -0.0384521484375, -0.0013570785522460938, 0.0104217529296875, + -0.0293121337890625, -0.0234222412109375, -0.0272216796875, -0.01160430908203125, + 0.0032253265380859375, -0.022186279296875, 0.015380859375, -0.01788330078125, + -0.00920867919921875, -0.0092010498046875, 0.06298828125, 0.0066986083984375, + 0.0098114013671875, 0.0197296142578125, 0.0110321044921875, -0.0008835792541503906, + -0.0203704833984375, 0.02313232421875, 0.01488494873046875, -0.0156402587890625, + 0.01174163818359375, 0.03497314453125, 0.019866943359375, 0.0189971923828125, + -0.0115203857421875, 0.0152130126953125, -0.01396942138671875, -0.0279388427734375, + -0.0129241943359375, 0.0191497802734375, -0.0021419525146484375, 0.0223846435546875, + 0.0219573974609375, -0.0111541748046875, 0.033050537109375, -0.024932861328125, + 0.0174713134765625, 0.0164794921875, 0.0165252685546875, -0.00823211669921875, + 0.0086517333984375, -0.0054779052734375, -0.016357421875, 0.033111572265625, + 0.0311737060546875, 0.00946807861328125, -0.01488494873046875, -0.0277557373046875, + -0.0095062255859375, 0.007354736328125, -0.0293426513671875, -0.0156707763671875, + 0.0343017578125, -0.0164337158203125, 0.0226287841796875, -0.01157379150390625, + 0.0182037353515625, -0.0254974365234375, 0.004150390625, 0.019256591796875, + -0.0130157470703125, -0.0037708282470703125, 0.0190582275390625, 0.0013980865478515625, + -0.02716064453125, -0.0113525390625, -0.0008740425109863281, 0.057830810546875, + 0.0226593017578125, -0.0166168212890625, -0.007328033447265625, 0.007801055908203125, + -0.0164642333984375, 0.00839996337890625, -0.00872802734375, -0.0034122467041015625, + -0.055816650390625, -0.039154052734375, 0.00978851318359375, 0.0002703666687011719, + 0.0222930908203125, -0.0364990234375, 0.0222625732421875, 0.002880096435546875, + -0.0025768280029296875, -0.00260162353515625, 0.0345458984375, 0.01312255859375, + -0.018707275390625, -0.029876708984375, -0.0003452301025390625, 0.05035400390625, + -0.01068115234375, 0.025146484375, -0.0272216796875, -0.0087890625, -0.0228118896484375, + -0.01424407958984375, 0.00018870830535888672, -0.0185394287109375, -0.0018091201782226562, + 0.033050537109375, 0.003101348876953125, 0.0273895263671875, -0.01080322265625, + 0.00882720947265625, -0.0103607177734375, 0.0010633468627929688, 0.021942138671875, + -0.024749755859375, -0.0070037841796875, -0.0175933837890625, -0.049163818359375, + 0.01395416259765625, -0.033721923828125, -0.043853759765625, -0.03265380859375, + -0.0369873046875, 0.01465606689453125, -0.01004791259765625, 0.005359649658203125, + 0.0401611328125, -0.018951416015625, -0.039306640625, 0.0180511474609375, 0.0249176025390625, + -0.0294952392578125, -0.0276336669921875, -0.016693115234375, -0.0084381103515625, + -0.003223419189453125, -0.0141143798828125, 0.034942626953125, -0.0212554931640625, + 0.0018558502197265625, 0.015106201171875, -0.01271820068359375, -0.00287628173828125, + 0.01506805419921875, 0.009063720703125, 0.0101318359375, 0.05438232421875, + 0.00897979736328125, -0.0008473396301269531, 0.0343017578125, 0.00734710693359375, + 0.00830078125, -0.005046844482421875, -0.008026123046875, 0.014862060546875, + -0.040618896484375, -0.013824462890625, -0.0016832351684570312, -0.034515380859375, + -0.0007977485656738281, -0.0216522216796875, -0.0232696533203125, 0.021942138671875, + -0.034423828125, 0.00662994384765625, -0.0400390625, 0.01560211181640625, -0.022491455078125, + 0.036590576171875, 0.0132293701171875, 0.025421142578125, -0.033538818359375, + 0.007320404052734375, -0.02734375, 0.022796630859375, -0.0250091552734375, -0.01708984375, + -0.038421630859375, -0.0203857421875, 0.0303497314453125, 0.007228851318359375, + 0.006275177001953125, 0.031097412109375, 0.0124359130859375, 0.01136016845703125, + 0.02410888671875, -0.04266357421875, -0.005252838134765625, -0.021575927734375, + -0.04266357421875, -0.03778076171875, 0.02215576171875, -0.003917694091796875, + -0.00859832763671875, -0.0192413330078125, -0.036773681640625, -0.018890380859375, + -0.01335906982421875, 0.00835418701171875, 0.020477294921875, -0.007328033447265625, + -5.805492401123047e-5, -0.005336761474609375, 0.012969970703125, -0.033233642578125, + 0.0288238525390625, -0.0282745361328125, -0.014617919921875, 0.0146026611328125, + 0.0018835067749023438, 0.012603759765625, -0.0001519918441772461, -0.025482177734375, + 0.0267181396484375, -0.0261077880859375, 0.006572723388671875, -0.0115509033203125, + 0.02105712890625, 0.017791748046875, 0.0297698974609375, 0.0124053955078125, + -0.0095672607421875, 0.005779266357421875, -0.0262298583984375, -0.002277374267578125, + -0.000743865966796875, -0.029937744140625, 0.016754150390625, -0.009552001953125, + -0.0205535888671875, -0.0032367706298828125, -0.004390716552734375, 0.00848388671875, + -0.004093170166015625, -0.01708984375, 0.0240478515625, -0.009429931640625, + 0.00257110595703125, -0.0235595703125, 0.005435943603515625, 0.01337432861328125, + 0.0116119384765625, -0.010101318359375, -0.0207672119140625, 0.007198333740234375, + -0.018890380859375, 0.03778076171875, -0.0211944580078125, 0.004222869873046875, + 0.00046563148498535156, -0.031463623046875, -0.0010128021240234375, 0.033782958984375, + -0.005764007568359375, 0.01702880859375, 0.0227203369140625, 0.01428985595703125, + -0.022491455078125, 0.018951416015625, -0.0149688720703125, 0.05059814453125, + 0.0202178955078125, -0.0100860595703125, 0.002178192138671875, 0.0031528472900390625, + -0.01068115234375, 0.00830078125, -0.016265869140625, -0.007541656494140625, + 0.0205230712890625, 0.0251312255859375, 0.003017425537109375, -0.01544189453125, + -0.005970001220703125, -0.00717926025390625, 0.020416259765625, 0.038360595703125, + -0.0195770263671875, 0.02923583984375, -0.012176513671875, 0.0187835693359375, + 0.0057373046875, -0.00713348388671875, 0.0241546630859375, -0.012786865234375, + 0.00858306884765625, 0.0297698974609375, -0.0185546875, 0.004444122314453125, + 0.00627899169921875, 0.008026123046875, 0.037872314453125, -0.006725311279296875, + 0.04071044921875, -0.005275726318359375, -0.0180206298828125, -0.0161285400390625, + -0.031280517578125, 0.0276031494140625, 0.01306915283203125, -0.0215301513671875, + -0.00988006591796875, 0.0103912353515625, 0.01432037353515625, -0.0006866455078125, + -0.0169219970703125, 0.0191650390625, 0.0101165771484375, -0.0220794677734375, + 0.0010967254638671875, 0.0291290283203125, -0.0272369384765625, -0.01396942138671875, + 0.022796630859375, 0.00899505615234375, -0.0105133056640625, 0.00983428955078125, + -0.0009708404541015625, 0.004405975341796875, -0.0083160400390625, 0.00605010986328125, + 0.01050567626953125, -0.0229949951171875, 0.033447265625, 0.0038700103759765625, 0.04296875, + 0.00830841064453125, -0.03369140625, 0.021759033203125, -0.000858306884765625, 0.041748046875, + 0.0384521484375, 0.0113677978515625, -0.00714111328125, 0.034515380859375, + 0.00838470458984375, 0.0161285400390625, 0.01261138916015625, -0.012725830078125, + 0.07623291015625, -0.0034236907958984375, -0.0169525146484375, -0.01934814453125, + 0.01032257080078125, -0.0301666259765625, -0.010528564453125, 0.01450347900390625, + -0.00036835670471191406, 0.0164337158203125, -0.004604339599609375, 0.0207366943359375, + -0.0205078125, -0.01491546630859375, 0.005496978759765625, -0.0215301513671875, + -0.02484130859375, 0.008056640625, -0.002468109130859375, 0.01837158203125, -0.0142822265625, + 0.0164794921875, 0.050872802734375, 0.01751708984375, 0.004535675048828125, + 0.01328277587890625, -0.01934814453125, -0.0041656494140625, 0.0080718994140625, + -0.006862640380859375, -0.0193328857421875, -0.0304412841796875, -0.00243377685546875, + 0.035125732421875, 0.035919189453125, -0.005340576171875, 0.0196533203125, 0.0094451904296875, + 0.0233612060546875, 0.032196044921875, -0.035919189453125, -0.0058746337890625, + 0.007251739501953125, -0.0139312744140625, 0.028411865234375, 0.038665771484375, + -0.0258331298828125, -0.038177490234375, 0.0189971923828125, -0.024658203125, + -0.03302001953125, 0.0002524852752685547, 0.0187225341796875, 0.02789306640625, + -0.02215576171875, -0.0159149169921875, -0.003147125244140625, -0.069091796875, + 0.00576019287109375, 0.00919342041015625, 0.0006957054138183594, -0.016571044921875, + -0.0229644775390625, 0.004955291748046875, 0.025634765625 + ] + } +] diff --git a/apps/web/.env.local.example b/apps/web/.env.local.example index 0b79c83..b4438dc 100644 --- a/apps/web/.env.local.example +++ b/apps/web/.env.local.example @@ -7,17 +7,17 @@ DATABASE_URL=postgresql://forum:forum_password@localhost:5434/the_forum # ----- Auth.js (Microsoft Entra ID / Princeton login) ----- # Generate AUTH_SECRET yourself: openssl rand -base64 32 -AUTH_SECRET=your-auth-secret-here +AUTH_SECRET=YOUR_AUTH_SECRET_HERE # Ask Ibraheem for the client ID + secret -AUTH_AZURE_AD_CLIENT_ID=your-client-id -AUTH_AZURE_AD_CLIENT_SECRET=your-client-secret +AUTH_AZURE_AD_CLIENT_ID=YOUR_CLIENT_ID_HERE +AUTH_AZURE_AD_CLIENT_SECRET=YOUR_CLIENT_SECRET_HERE # Princeton tenant ID (not secret) AUTH_AZURE_AD_TENANT_ID=2ff60116-7431-425d-b5af-077d7791bda4 # ----- Mapbox (ask Ibraheem for these) ----- -NEXT_PUBLIC_MAPBOX_TOKEN=pk.your-mapbox-public-token -NEXT_PUBLIC_CAMPUS_MAP_TOKEN=pk.campus-map-public-token -NEXT_PUBLIC_CAMPUS_MAP_STYLE=mapbox://styles/account/style-id +NEXT_PUBLIC_MAPBOX_TOKEN=YOUR_MAPBOX_TOKEN_HERE +NEXT_PUBLIC_CAMPUS_MAP_TOKEN=YOUR_CAMPUS_MAP_TOKEN_HERE +NEXT_PUBLIC_CAMPUS_MAP_STYLE=YOUR_CAMPUS_MAP_STYLE_HERE # ----- Optional ----- NEXT_PUBLIC_API_URL=http://localhost:8000 diff --git a/backends/fastapi/.env.example b/backends/fastapi/.env.example index f956555..d08b970 100644 --- a/backends/fastapi/.env.example +++ b/backends/fastapi/.env.example @@ -10,7 +10,7 @@ DATABASE_URL=postgresql://forum:forum_password@localhost:5434/the_forum # GMAIL_TOKEN_PATH=./gmail_token.json # OpenRouter API key for LLM extraction (Gemini 3.1 Flash Lite) -# OPENROUTER_API_KEY=sk-or-... +OPENROUTER_API_KEY=your_openrouter_api_key_here # Admin API key for pipeline management endpoints # ADMIN_API_KEY=your-secret-admin-key diff --git a/backends/fastapi/app/pipeline/config.py b/backends/fastapi/app/pipeline/config.py index fcf3026..468cb7b 100644 --- a/backends/fastapi/app/pipeline/config.py +++ b/backends/fastapi/app/pipeline/config.py @@ -1,35 +1,58 @@ """Pipeline configuration and environment variables.""" import os - from pydantic_settings import BaseSettings class PipelineSettings(BaseSettings): """Settings for the listserv ingestion pipeline.""" + # ========================= # Gmail API + # ========================= gmail_credentials_json: str = "" gmail_token_path: str = os.path.join( os.path.dirname(__file__), "..", "..", "gmail_token.json" ) - # OpenRouter (Gemini via OpenAI-compatible API) - openrouter_api_key: str = "" - openrouter_model: str = "google/gemini-flash-lite-3.1" - openrouter_base_url: str = "https://openrouter.ai/api/v1" - + # ========================= # Database + # ========================= database_url: str = "" + # ========================= # Admin + # ========================= admin_api_key: str = "" + # ========================= # Dedup + # ========================= dedup_title_threshold: float = 0.75 dedup_time_window_hours: int = 24 - model_config = {"env_file": ".env", "extra": "ignore"} + # ========================= + # OpenRouter / Embeddings + # ========================= + # OPENROUTER_API_KEY is in .env + openrouter_api_key: str = "" + openrouter_base_url: str = "https://openrouter.ai/api/v1" + + embedding_model: str = "openai/text-embedding-3-small" + + # ========================= + # ML + Tagging + # ========================= + ml_model_path: str = "models/event_classifier_model.joblib" + tag_similarity_threshold: float = 0.35 + + # ========================= + # Pydantic config + # ========================= + model_config = { + "env_file": ".env", + "extra": "ignore" + } settings = PipelineSettings() diff --git a/backends/fastapi/app/pipeline/db.py b/backends/fastapi/app/pipeline/db.py index b9c2c99..465df3f 100644 --- a/backends/fastapi/app/pipeline/db.py +++ b/backends/fastapi/app/pipeline/db.py @@ -294,3 +294,21 @@ def get_pipeline_status() -> dict: "FROM pipeline_logs" ) return dict(cur.fetchone()) + +# YUBI ADD FUNCTION TO GET EMBEDDINGS OF CATEGORY TAGS FROM DATABASE +def get_tag_embeddings() -> list[dict]: + """ + Returns: + [ + {"tag": "music", "embedding": [...]}, + {"tag": "career", "embedding": [...]} + ] + """ + with get_conn() as conn: + with conn.cursor(cursor_factory=psycopg2.extras.RealDictCursor) as cur: + # Cast to float[] so psycopg2 parses the pgvector type into a Python list automatically + cur.execute( + "SELECT tag_name AS tag, embedding::real[] AS embedding " + "FROM event_tag_embeddings;" + ) + return [dict(r) for r in cur.fetchall()] \ No newline at end of file diff --git a/backends/fastapi/app/pipeline/extractor.py b/backends/fastapi/app/pipeline/extractor.py index 4d42ae1..5828f2e 100644 --- a/backends/fastapi/app/pipeline/extractor.py +++ b/backends/fastapi/app/pipeline/extractor.py @@ -1,45 +1,32 @@ -"""LLM-based event extraction using Gemini 3.1 Flash Lite via OpenRouter.""" +""" +Embedding-based event extraction pipeline. +Replaces LLM extraction with: +- cleaned text +- embeddings +- logistic regression classifier +- cosine similarity tagging +""" -import json import logging +import re from dataclasses import dataclass -from datetime import datetime +from pathlib import Path +import joblib +import numpy as np +from bs4 import BeautifulSoup from openai import OpenAI +from . import db # expected to load tag embeddings from DB from .config import settings from .parser import PreprocessedEmail logger = logging.getLogger(__name__) -VALID_TAGS = [ - "free-food", "workshop", "performance", "speaker", "social", "career", - "sports", "music", "art", "academic", "cultural", "community-service", - "religious", "political", "tech", "gaming", "outdoor", "wellness", -] - -EXTRACTION_PROMPT = """\ -You are an event extraction assistant for a Princeton University campus events platform. -Given an email sent to a Princeton listserv, determine if it describes a specific event -(with a time and place), and if so extract structured data. - -Emails that are NOT events: lost & found posts, general announcements without a specific -gathering time, job postings without an info session, surveys, newsletter digests. - -Return a JSON object with these fields: -- "is_event": boolean — true if this email describes a specific event -- "title": string — concise event name (max 100 chars) -- "description": string — brief event description (max 500 chars) -- "datetime": string — ISO 8601 datetime with timezone (e.g. "2026-04-15T19:00:00-04:00") -- "end_datetime": string | null — end time if mentioned, else null -- "location_name": string — the venue/location as mentioned in the email -- "tags": string[] — relevant tags from this list: {tags} - -If is_event is false, set all other fields to empty/null values. - -Current date for reference: {current_date} -""" +# ========================= +# Data Models +# ========================= @dataclass class ExtractedEvent: @@ -51,66 +38,218 @@ class ExtractedEvent: tags: list[str] -def _get_client() -> OpenAI: - return OpenAI( - api_key=settings.openrouter_api_key, - base_url=settings.openrouter_base_url, - ) +# ========================= +# Client + Model Loading +# ========================= +# Module-level singleton — reused across calls instead of constructing a new +# OpenAI client per email. +_client: OpenAI | None = None -def extract_event(email: PreprocessedEmail) -> ExtractedEvent | None: - """Call the LLM to extract event data from a preprocessed email. - Returns an ExtractedEvent if the email describes an event, or None if not. +def _get_client() -> OpenAI: + global _client + if _client is None: + _client = OpenAI( + api_key=settings.openrouter_api_key, + base_url=settings.openrouter_base_url, + ) + return _client + + +# Classifier is loaded lazily (on first use) rather than at import time, and +# resolved relative to this source file rather than the process's current +# working directory. A relative path like "models/logreg.pkl" resolved +# against cwd is fragile — it silently depends on how/where the process was +# started (Docker WORKDIR, systemd unit, pytest invoked from a different +# directory, etc.), and could load a *different* file of the same name +# without any error at all. Loading lazily also means a missing/bad model +# fails loudly the first time extract_event actually runs, instead of +# crashing on import (or on a completely unrelated code path importing this +# module). +_classifier = None + + +def _resolve_model_path() -> Path: + model_path = Path(settings.ml_model_path) + if not model_path.is_absolute(): + # Anchor relative paths to this package's directory rather than cwd. + model_path = Path(__file__).resolve().parent / model_path + return model_path + +def _resolve_model_path() -> Path: """ - client = _get_client() + Dynamically resolves the absolute path to the ML model from the repo root. + __file__ points to: .../backends/fastapi/app/pipeline/extractor.py + .parents[4] points to: .../ (the repo root) + """ + repo_root = Path(__file__).resolve().parents[4] + return repo_root / settings.ml_model_path + +def _get_classifier(): + global _classifier + if _classifier is None: + model_path = _resolve_model_path() + if not model_path.exists(): + raise FileNotFoundError( + f"ML classifier not found at {model_path} " + f"(settings.ml_model_path={settings.ml_model_path!r}). " + "Check the path is correct and the model file has been deployed." + ) + logger.info("Loading classifier from %s", model_path) + _classifier = joblib.load(model_path) + return _classifier + + +# ========================= +# CLEANING +# ========================= + +def clean_body_text(html_content: str) -> str: + if not html_content: + return "" + + soup = BeautifulSoup(html_content, "html.parser") + clean_text = soup.get_text(separator=" ", strip=True) + + boilerplate_marker = "This email was instantly sent" + if boilerplate_marker in clean_text: + clean_text = clean_text.split(boilerplate_marker)[0] + + clean_text = clean_text.replace("*", "").replace("-", "") + + keywords_to_remove = [ + "forwarded message", + "listservs", + "subscribe", + "unsubscribe", + "hoagie@princeton.edu", + ] + + parts = re.split(r'([.!?\n]+)', clean_text) + cleaned_parts = [] + + for i in range(0, len(parts), 2): + sentence = parts[i] + punctuation = parts[i + 1] if i + 1 < len(parts) else "" + + if not any(kw in sentence.lower() for kw in keywords_to_remove): + cleaned_parts.append(sentence + punctuation) + + clean_text = "".join(cleaned_parts) + clean_text = re.sub(r"\s+", " ", clean_text).strip() + + return clean_text - email_text = f"SUBJECT: {email.subject}\nFrom: {email.sender}\n\nBody:\n{email.body_text}" - if email.links: - email_text += "\n\nLinks:\n" + "\n".join(email.links[:10]) - - current_date = datetime.now().strftime("%Y-%m-%d %H:%M %Z") - - response = client.chat.completions.create( - model=settings.openrouter_model, - response_format={"type": "json_object"}, - messages=[ - { - "role": "system", - "content": EXTRACTION_PROMPT.format( - tags=", ".join(VALID_TAGS), - current_date=current_date, - ), - }, - {"role": "user", "content": email_text}, - ], - temperature=0.1, - max_tokens=1000, + +# ========================= +# EMBEDDING +# ========================= + +def generate_embedding(client: OpenAI, text: str) -> list[float]: + response = client.embeddings.create( + input=text, + model=settings.embedding_model ) + return response.data[0].embedding + + +# ========================= +# CLASSIFICATION +# ========================= + +def classify_event(embedding: list[float]) -> bool: + classifier = _get_classifier() + vec = np.array(embedding).reshape(1, -1) + prediction = classifier.predict(vec)[0] + return bool(prediction) + + +# ========================= +# COSINE SIMILARITY TAGGING +# ========================= + +def assign_tags(embedding: list[float], threshold: float) -> list[str]: + # Load tag embeddings from DB + tag_records = db.get_tag_embeddings() + # expected: [{ "tag": str, "embedding": list[float] }] + + if not tag_records: + return [] + + tag_names = [t["tag"] for t in tag_records] + tag_vectors = np.array([t["embedding"] for t in tag_records]) + + email_vec = np.array(embedding) + + # Normalize + email_norm = email_vec / np.linalg.norm(email_vec) + tag_norms = tag_vectors / np.linalg.norm(tag_vectors, axis=1, keepdims=True) + + # Cosine similarity + scores = np.dot(tag_norms, email_norm) - content = response.choices[0].message.content - if not content: - logger.warning("Empty LLM response for message %s", email.message_id) - return None + ranked = np.argsort(scores)[::-1] + + assigned = [] + + # Always take top + top_idx = ranked[0] + assigned.append(tag_names[top_idx]) + + # Add more if above threshold + for i in ranked[1:]: + if scores[i] >= threshold: + assigned.append(tag_names[i]) + else: + break + + return assigned + + +# ========================= +# MAIN PIPELINE +# ========================= + +def extract_event(email: PreprocessedEmail) -> ExtractedEvent | None: + """ + Full pipeline: + clean → embed → classify → tag (if event) + """ + + client = _get_client() try: - data = json.loads(content) - except json.JSONDecodeError: - logger.error("Invalid JSON from LLM for message %s: %s", email.message_id, content[:200]) - return None - - if not data.get("is_event"): - return None - - # Validate tags against allowed list - raw_tags = data.get("tags", []) - valid = [t for t in raw_tags if t in VALID_TAGS] - - return ExtractedEvent( - title=data.get("title", "")[:200], - description=data.get("description", "")[:2000], - datetime_str=data.get("datetime", ""), - end_datetime_str=data.get("end_datetime"), - location_name=data.get("location_name", ""), - tags=valid, - ) + # 1. CLEAN TEXT + cleaned_body = clean_body_text(email.body_text) + + combined_text = f"Subject: {email.subject} Body: {cleaned_body}" + + # 2. EMBEDDING + embedding = generate_embedding(client, combined_text) + + # 3. CLASSIFY + is_event = classify_event(embedding) + + if not is_event: + return None + + # 4. TAGGING + tags = assign_tags( + embedding, + threshold=settings.tag_similarity_threshold, + ) + + # 5. RETURN STRUCTURE + return ExtractedEvent( + title=email.subject[:200], + description=cleaned_body[:2000], + datetime_str="", # not extracted in ML version + end_datetime_str=None, + location_name="", + tags=tags, + ) + + except Exception: + logger.exception("Error in extract_event for %s", email.message_id) + return None \ No newline at end of file diff --git a/backends/fastapi/app/pipeline/orchestrator.py b/backends/fastapi/app/pipeline/orchestrator.py index f4f80d0..d13d817 100644 --- a/backends/fastapi/app/pipeline/orchestrator.py +++ b/backends/fastapi/app/pipeline/orchestrator.py @@ -1,6 +1,8 @@ """Pipeline orchestrator — ties together ingestion, extraction, dedup, and storage.""" +import json import logging +from pathlib import Path from dateutil import parser as dateparser @@ -41,7 +43,14 @@ def _resolve_creator(email: object, config: dict | None) -> tuple[str, str | Non def _empty_stats() -> dict: - return {"processed": 0, "created": 0, "skipped": 0, "duplicates": 0, "errors": 0} + return { + "processed": 0, + "created": 0, + "needs_review": 0, + "skipped": 0, + "duplicates": 0, + "errors": 0, + } def process_raw_emails(raw_emails: list[dict]) -> dict: @@ -87,15 +96,35 @@ def process_raw_emails(raw_emails: list[dict]) -> dict: ) continue - # Parse datetime - try: - event_dt = dateparser.parse(extracted.datetime_str) - if event_dt is None: - raise ValueError("Could not parse datetime") - except (ValueError, TypeError): + # Parse datetime. Some extractors (e.g. the ML classifier/tagger + # pipeline) don't produce a datetime_str at all — fall back to + # the email's own timestamp rather than treating that as an + # error. Fallback-timestamp events are flagged needs_review + # since "when the email was sent" isn't necessarily "when the + # event happens" — a human should confirm/correct the date. + needs_review = False + event_dt = None + if extracted.datetime_str: + try: + event_dt = dateparser.parse(extracted.datetime_str) + except (ValueError, TypeError): + event_dt = None + + if event_dt is None: + needs_review = True + try: + event_dt = dateparser.parse(email.timestamp) if email.timestamp else None + except (ValueError, TypeError): + event_dt = None + + if event_dt is None: + # Neither the extracted datetime nor the email's own + # timestamp could be parsed — genuinely nothing to anchor + # this event to, so this is still an error. logger.warning( - "Could not parse datetime '%s' for '%s'", + "Could not parse datetime '%s' or fallback timestamp '%s' for '%s'", extracted.datetime_str, + email.timestamp, extracted.title, ) stats["errors"] += 1 @@ -103,7 +132,10 @@ def process_raw_emails(raw_emails: list[dict]) -> dict: message_id=email.message_id, listserv_config_id=str(config["id"]) if config else None, status="error", - error_text=f"Unparseable datetime: {extracted.datetime_str}", + error_text=( + f"Unparseable datetime: {extracted.datetime_str!r} " + f"(fallback timestamp {email.timestamp!r} also unparseable)" + ), ) continue @@ -144,14 +176,28 @@ def process_raw_emails(raw_emails: list[dict]) -> dict: tags=extracted.tags, ) - stats["created"] += 1 - db.insert_log( - message_id=email.message_id, - listserv_config_id=str(config["id"]) if config else None, - status="success", - extracted_event_id=event_id, - ) - logger.info("Created event '%s' (id=%s)", extracted.title, event_id) + if needs_review: + stats["needs_review"] += 1 + db.insert_log( + message_id=email.message_id, + listserv_config_id=str(config["id"]) if config else None, + status="needs_review", + extracted_event_id=event_id, + ) + logger.info( + "Flagged event '%s' (id=%s) for review — used fallback timestamp", + extracted.title, + event_id, + ) + else: + stats["created"] += 1 + db.insert_log( + message_id=email.message_id, + listserv_config_id=str(config["id"]) if config else None, + status="success", + extracted_event_id=event_id, + ) + logger.info("Created event '%s' (id=%s)", extracted.title, event_id) except Exception: stats["errors"] += 1 @@ -187,3 +233,88 @@ def run_pipeline() -> dict: logger.info("Fetched %d unread emails", len(raw_emails)) return process_raw_emails(raw_emails) + + +# --------------------------------------------------------------------------- +# Local JSON testing entry point (e.g. apps/listserv-scraper/data/email_sample_200.json) +# --------------------------------------------------------------------------- + +def _json_message_to_raw(message: dict, listserv_name: str) -> dict: + """Adapt one scraped-archive message into the raw dict shape that + preprocess_email expects. + + preprocess_email reads these keys directly via raw.get(...): + message_id, subject, sender, to, body_html, body_text, date, gmail_id. + Everything else in the JSON (is_hoagiemail, hoagiemail_sender_email/name, + author_name, author_email, links, images, attachments, etc.) is extra + and simply ignored — preprocess_email derives hoagiemail_sender itself + from the body text via detect_hoagiemail(), it does not read the JSON's + is_hoagiemail/hoagiemail_sender_* fields at all. + + Two mappings needed: + - sender: preprocess_email wants a "sender" key; the JSON has + author_name/author_email instead, so we build one. + - to: preprocess_email wants a "to" key for listserv-config matching + (_match_config), but the scraper JSON has no per-message recipient + address — only a top-level `listserv` name like "WHITMANWIRE". We + synthesize a placeholder "to" so matching still runs, on the + assumption that a config's `address` field contains the listserv + name. If your config addresses don't contain the listserv name, + adjust this — it only affects org_id attribution, not extraction, + dedup, or event creation. + """ + raw = dict(message) # keep all original fields intact (harmless extras) + raw["gmail_id"] = message.get("message_id", "") + raw["sender"] = f"{message.get('author_name', '')} <{message.get('author_email', '')}>".strip() + raw.setdefault("to", f"{listserv_name.lower()}@princeton.edu") + return raw + + +def load_json_emails(json_path: str | Path) -> tuple[str, list[dict]]: + """Load a scraped listserv archive file (email_sample_200.json format). + + Returns (listserv_name, raw_email_dicts) ready for process_raw_emails. + """ + path = Path(json_path) + data = json.loads(path.read_text()) + listserv_name = data.get("listserv", "") + messages = data.get("messages", []) + logger.info( + "Loaded %d messages from %s (listserv=%s)", len(messages), path, listserv_name + ) + raw_emails = [_json_message_to_raw(m, listserv_name) for m in messages] + return listserv_name, raw_emails + + +def run_pipeline_from_json(json_path: str | Path, limit: int | None = None) -> dict: + """Run the extraction pipeline against a local scraped JSON file instead + of live Gmail. Useful for testing orchestrator.py end-to-end against + email_sample_200.json without needing Gmail API access. + + Args: + json_path: path to a scraper JSON file (email_sample_200.json format). + limit: optionally cap how many messages are processed. Recommended + while iterating, since extraction calls an LLM per message and + success/failure inserts still hit your real database. + """ + _listserv_name, raw_emails = load_json_emails(json_path) + if limit is not None: + raw_emails = raw_emails[:limit] + logger.info("Processing %d messages from JSON file", len(raw_emails)) + return process_raw_emails(raw_emails) + + +if __name__ == "__main__": + import sys + + logging.basicConfig(level=logging.INFO) + + json_file = ( + sys.argv[1] + if len(sys.argv) > 1 + else "apps/listserv-scraper/data/email_sample_200.json" + ) + limit = int(sys.argv[2]) if len(sys.argv) > 2 else 10 # small default while testing + + result = run_pipeline_from_json(json_file, limit=limit) + print(result) \ No newline at end of file diff --git a/backends/fastapi/requirements.txt b/backends/fastapi/requirements.txt new file mode 100644 index 0000000..21ac776 --- /dev/null +++ b/backends/fastapi/requirements.txt @@ -0,0 +1,17 @@ +fastapi>=0.115.0 +uvicorn[standard]>=0.34.0 +pydantic>=2.10.0 +pydantic-settings>=2.7.0 +python-dotenv>=1.0.1 +psycopg2-binary>=2.9.10 +sqlalchemy>=2.0.37 +google-api-python-client>=2.150.0 +google-auth-oauthlib>=1.2.0 +openai>=1.60.0 +beautifulsoup4>=4.12.0 +thefuzz[speedup]>=0.22.0 +python-dateutil>=2.9.0 +numpy +joblib +scikit-learn +pandas \ No newline at end of file diff --git a/bun.lock b/bun.lock index 1250d06..7c2d82c 100644 --- a/bun.lock +++ b/bun.lock @@ -6,6 +6,7 @@ "name": "the-forum", "devDependencies": { "@biomejs/biome": "^1.9.4", + "@types/bun": "^1.3.14", "husky": "^9.1.7", "lint-staged": "^15.3.0", "turbo": "^2.4.4", @@ -43,10 +44,6 @@ "typescript": "^5.7.3", }, }, - "apps/listserv-mcp-experimental": { - "name": "@the-forum/listserv-mcp-experimental", - "version": "0.0.1", - }, "apps/listserv-scraper": { "name": "@the-forum/listserv-scraper", "version": "0.0.1", @@ -793,8 +790,6 @@ "@the-forum/fastapi": ["@the-forum/fastapi@workspace:backends/fastapi"], - "@the-forum/listserv-mcp-experimental": ["@the-forum/listserv-mcp-experimental@workspace:apps/listserv-mcp-experimental"], - "@the-forum/listserv-scraper": ["@the-forum/listserv-scraper@workspace:apps/listserv-scraper"], "@the-forum/mpu-scraper": ["@the-forum/mpu-scraper@workspace:apps/mpu-scraper"], @@ -803,6 +798,8 @@ "@ts-morph/common": ["@ts-morph/common@0.27.0", "", { "dependencies": { "fast-glob": "^3.3.3", "minimatch": "^10.0.1", "path-browserify": "^1.0.1" } }, "sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ=="], + "@types/bun": ["@types/bun@1.3.14", "", { "dependencies": { "bun-types": "1.3.14" } }, "sha512-h1hFqFVcvAvD9j9K7ZW7vd82aSA+rTdznZa+5bwvCwqSB1jmmfLcbIWhOLx1/+boy/xmjgCs/OMUL8hRJSmnPw=="], + "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], "@types/geojson": ["@types/geojson@7946.0.16", "", {}, "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg=="], @@ -869,6 +866,8 @@ "buffer-from": ["buffer-from@1.1.2", "", {}, "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="], + "bun-types": ["bun-types@1.3.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-4N0ig0fEomHt5R0KCFWjovxow98rIoRwKolrYdCcknNwMekCXRnWEUvgu5soYV8QXtVsrUD8B95MBOZGPvr6KQ=="], + "bundle-name": ["bundle-name@4.1.0", "", { "dependencies": { "run-applescript": "^7.0.0" } }, "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q=="], "bytes": ["bytes@3.1.2", "", {}, "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="], diff --git a/docker-compose.yml b/docker-compose.yml index ae57805..4d2a0ae 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: postgres: - image: postgres:17-alpine + image: pgvector/pgvector:pg17 container_name: the-forum-db environment: POSTGRES_USER: ${POSTGRES_USER:-forum} diff --git a/models/event_classifier_model.joblib b/models/event_classifier_model.joblib new file mode 100644 index 0000000000000000000000000000000000000000..c20e14605f3b65f5c4ec9cf82bbc4894206659b8 GIT binary patch literal 13151 zcmZ{Lby!thx37SRbSR>vAP9AE9xR1Yj&#NpEN~KJ>S^aN@%vQE8Cbsr2mQEIy zjxMpmq3r*;F>$sqqljT0t4S5gWMOCK>}=w0X=`oc5*xbR+|16*-oo-mY$%hHnf(oi z+a}H~W-gYo+M(N=9qimJonk|2?aZyLohf~9n|YYnQW(UZU!n!LK)o6oc^Kdf7xOn>d-d*g8ElN*n^TV-^f`ejpW5qOSLaFY>YHMq2{H0v~{Ag}*i8T*pFtf9B za5uSq+su)ob)J7o`42A>iq@^|Z(G{Cn3#LISUSgQvbmZw{MYb*U0bN)bpG}Bwov5z zN3|xgHoX5@12zISLN@y}sRCkcL~Q77_S=YsQrjN=-_o4=e@J5^8EhlfB!NEN5*8DjUabKTKep{R#;`= zrC(BQgPhTLhE$C%F#Xb09H>p0^7c_FlL4`I3viqO5r`f3iT}W7%^C^>L{9v|EZk zeG;18J1!peh=$>i&A_3CT1d??c(mVV6clR}giNlr;S9~?ai-`TEN<#mvSDaP4QG)H zP9Y>{F!p*F6<-9u)jH1~;~c>*CxX8aZ#RfOW*zq^O~WF(5!%z8J!t#ek!sp#6nP^| z<#o39f`LavzTe<8Sl1G$IIb{)(-!$(vX1)0FUIu?>k~Q1aebS{zO!AZaJG&$tSKGT zugzFn)t6z*W?->)=s4a?ky@v}HHzzUdRzy77NTVNud1VplejDE*$Puu4TR4eVczng z9LxLo*@ol^ICTBMB7b-`_-F0&^z$~rm(e3Onx(VQ^Nyg<961bhS&e^sTE{?oPe`Y^ z;|S*34gOrDnWXS}n>RUE0%nSAS+aU$NXR041rq!4hMLCyyUe4&aINs?kV-!C62dh@ zo)fUF)uu+fY6_0Z(j`qnYkZh+<3J8@P{Ex^r^lW7T1rW`*%BaKb^!rYLejr z{{q-0;Jtc-*o(%qUD^%@hT(&iSn)aPZoDNh?D0h)8NR0LD-qhpp^YPc@7=aud_L89 zi$%T(9<$#`I6Fy($~}*|zg->1sPnMV%s;4u=a@bA4_@u&?(b3!8c zWqaWLj9F^l$uzvLY@!m_(2g8lxfP_*7I?FZ$N$#(E;!Z8p;Tx!j!zG%YiH|^0T!h< zEeh5l_gZ!^(}kyy^}Mcf@JIpJP(9(zHfVq)g_uFfZ~d?mzCC~;tpjgvTCf~gG=cRk z?BW;PDj}}4bWQeD7EDV!Hhj{W!jARIdxtjO34uxRm3sk#8+CZZ`N5jVW)+TiRey?{=?8u9jni(M z-5{LB+oz}$gvn=(WaOzwV9xpB?A;9_*m=B)yUQ>P*6Bfq2dT&qKQ)+J+ev~for?x% zVjf~uUDT$ebQ16@NS24Y4}$)Zu<_%}7*MW0ITBY&0M0Zu$pwx+SmZ@2CV?T)e!`;o z{aOX)^Qw_9u8_d}z@^m13(+Wj=}XTd4G|uAr}p-1WupE`_tE$DL>ObHm%A=d0TS(h zm(RR@1t*SYg~UhJfP{?fHr=`kurpYX&K?{>t_j^H#^yFmwru`ezOxCfS;TGAO()>V zm7i*|={cZt>i(th2U$4r+2oK@YX@9BYRbu$k_(oy4^%59o&md2n^L{f6y)8pYUVvM z40m^G%)UBN1=l&9Zk5R000*{tc~blsNOXuz#b@V(Vam={?(4ZA6J-AucecWElDEwJ z^-27!;PkO@R}tzT+ff{v9|6)0RNuKq+Hk!1>aLyTT{u9+M_?%lL>fg-FEx%TjLVj~ z%4OSxm8QXS0zWIEHTawdy;&wEu>3wol!=FN{esC{7=YT{uNH3Q4Pb1`xkWQAni0m9_`E1)TcGA9oG**<0R}>ED>9&l)?SW6+#YzYr z`qF9TJ>?MkXHw=bRXG;B%~PpeYy~yjsDn+Fqu@svlxJ=&2fy^Yx_Q|oP}zHYIWIg3 zg)Jit{)j&S@lN^RwfP~qpufNmoC-4M(~w@oUl64tt3O7;DC zhN2lBk{jl^SgtR8k8=+Z8=sz>Ue6?9=(t1{kQF%pW9a`dA~=(1NshpYuC(Z^rHqcShT)M-l)U0hRTOLKS{XqMN_C= zArsV#P9}f!E(Qy8uf=k;0$}yhfke*3ODb8J@N@H=*V5u3TJN2BBhga_MmwHF zRY*mnylJZH6RRvt`g(p=sbvUbw2@kZ?lHRbIq#nD&WB3xKM%}=M$zYDyzs!NA?{gf z^1B(^10%M=Umo9Z?{(W>uZUqRI7nM@a_SY{ zI&qMI@5~nWemp8ED4v!vh{sE1#Q5SXaNKF9 z({N-y4jun^PD`!{oHo;pmD>BjmDqK~)#DC&+n;VIJz9UeP&`*wH(849>V~_EWW(ZQ1!%P9+rc9`4%sdU~=hlz^&>T zEM>M7J*{5_w`M-QSp72%1pRvB?|l>CbbSBW&KJY5=)(E%sa6K8=ZLWA&*p%~Lz}_9 z5_PaPd%zsNc7ieEd~tEyFiO;Q4$PW$qq4C41OMT4^xyu>h4oJ>N{DO@FIktuR_#BR zGlIu4p!%n?SOx(uwWL*DJKqL(&($UxbF{+Yp=O#Td;ta7s#X~_KKS~}a*%~v1s)&d zp1FLg5boIDoHJ7FfOjX7_eGar{+1VV+rQMHE+m;cBoo0c)J*b-{WFRMMkgOLEp>?_^!SwOBvUo>`53%07hC zD5Fb?rr1&0V|N;~$yl(lE#S(~FueNK_9^{h7JzoOOFjn?Pi+@w^tTy-Uiy7rEJ>J-fvkK|8il+@Y`;s_2h@Qo1(;a>WX#A{$22GtLb(*XE9*+Vn?r2_pjC$G!eSHjB! z)O4|OHTddh?Z@5Ua`DEt0oUI00_c37C(ag{ivmAy*BmHmK)2-++k*?Mu`PUe!K3JM zc$FV%nszG;2E-!&vT2s!N#gSbx%FV2aK8VX(KZmdJPV^zowFfLwAo-!^*Ee8z(CjS zRs=`#-41m)^6)FZ8|;7&}o-Mgn&;VNXpb7>0C@u^;P#bvpHi zPo89CKSux9xR(T1&d$Fb&KU<5<9Yo;_6~^G3}sZUZiJnU?hD$YJ$QF7a&3es!@B%P z*7EoOaLNb@eOE5TOUxYIyQ{5mW-@4>B!3t52wIem^7f(XL_N)~`z=8KH*b@ne*&m% z2g7z66XBEo&E*rU0hs2^Ovnrx!nhpCl&L5Re(8UZ|C6@{661nCTG7>^;>L?xr~Z_~ zY2*7D1$WCqFGgv7rlbKFoSRlZZ12S}pSo9dN|hM>qEyv&tRC9O;-;tus*t`Z`p?^r zMob0`Dl4fjyecb}5*AAanb+PMI-@D*Yot;Bw=WHv1$nNEZA?J1^WQxY8trh`R-7+| zyB+>05%ypp!VOP42{o!lR2@R(LOCw6bDUPQy zE39(hvSxGmxwasP{9JG_#V(;q%!JwBt85TUb5gpcycJJm?tP$25${WqWi9P2JKq=^oqx&EEg*LcEVrT>(p z$I=jLvH9e9(q=(=Qedz;dkpRwFiHz{O@+gJ5rvu4L`*+$JG$CEAF{jz#Q7eUfrGj{ zSLMev@Mt?zC|sTgHmNUNGp5^N>+0^W3n$_*bytXJ@V;(%Jj>a@QWc8tY6e9t+mldT zSDBsa(Kwn-&-pX?lhORWVBt6kQDNgs@#`PinE3Y%XSP-!#CcUGRGPTqN5O1kX1Pw- z|DA~ZhP$HONd@#Ol{;H3MOkHW{= zao+{Ak4(Gk&~NF;>9Y)-s1L!-Ir7agvt$?lDK#Ii)!%pLFdBe63VlaKSq3n3gPUFZ zLmSZ3y|AFeVWhSpad`(gp&k%Iazkzes}ReZhMhK9)f7LfUWkw>4DrssN@ zsQ7)ydO%k>B$Swm$R(3d%IqOadw(AK3+3=WsOkrA{?kp~g%#NR)j2&pvJ?)9`+wle z8U>?}$#3&}yMc$hsOrb}CYUHGY92V)0#EJO_8U^pM*-WNUgeUpXj!u<9!Eoh?+OP# z24`h~ch{{<5t}|>+pEAg)!Yo~&mBJX#Ma<_u5!o5r&)04-t2TlYLbi^nHT*AlXT<}LMToA(%y$HTVO-EBp+4_UqYLpsp3 zky!TfDiP~D?^i~$cOlhn)0fs(xxg1KRxl}0i3=c9ER^M$a@#Oh8w?2zk zptst$;;1eXC^}zRT21YPxkq(ILx+c9zI!Qx<8cnYeH|j{mP7`Z@)Wc1O0a%QLK|1@q(}K=YLUOT@kyPi%VC_SKEi$ z;lx4N%jZNYuu3QCjx@OiKEJM-d79aWR!8!G*-&TWs^Q#7?j0hk|7hyi#~F<}`z8Y& zqzb`h*Xfl%NvZhZXyJshaRoR{AJw#b;RD})^wz{($VO%-5tn(t81Rayzkh{t?);&T zoNt*J#S;&DM7~x;Au(S>wBVx`h)U0R9A+DWscZW_UXUQ+YSF7~wUBbyzcOvlli!3M zAO2dGnAc+LwBQ9{xlz;-^DxR-Zin(9@xNu!4G_SyZ7ErbfZ_SvNyj-oKp;pmZu4>s zT%A+>@gcGb66>$lE;&|1#g8w)uZH{K6@!zCZ^NI!slnFY!e48^vP=Ehsfu=ZPYF}x zdHSJUp1*Ix_C^c}mrJL;-GJ+L??mWFlHg-d{p)LMga-_Ggm)c|faf+@v`ZAfFFB*`X6fD=XuV~mZfv>(eaG$Z5`BBXq4d%A zFo!&l*Q;%=J~PX;%p-6?p6mKu?^=}L64&^pn+@!(+oN<|)xw)cld^@U`yuKf z+qbpoMpPpaEL=6K;KR4z-<6z|NOPg+;@TzwCRRB%+X>|mKO<9;G+2z{qo&Iy7t5jW z(;0upJXj*h#uNh{AQ}RRp%SqPui$aE<~Q44u9v0McIRirCaQ!mpA}@8{`xSf_CP>6~gUyfcdGpZ%bS+)~^hzy9oi$t;G+ zlBQ13J(lFq>D`Q@;$QZLQ2eqcGRG6FI-4Qw;BV1u);+M}3N~9D=|H|fxg0NvYJ3wa zmUm_w<@+IhjJ@l8HeR4*wOwzi#|vXRH}A8N@TLCDIbBk3wS%h~@0Zy2ibs@z zj$W$rvz-KNx9$&!EE$FpruM|T-IbxB5hL zldpb!k4FMWzq|1S#ZLXjAa1fU1|9^FMZQHcOw2OVJo@PiGq%286{#CxwTN)^wrDj- z=OyQ`=~Vz*&VWy_Neg-jQooR{YR1SUDUE|6xmYh4^HPzX1jJpp(xt!FqwwXdBZ|&t zFx{Q;lDe}8W}8(!nau{^nnA)WyY{F{Gjvu0 z=k%52QkinReT=?9_zoGPFBK)ah>hYGUln$lxE%1QKdQmAl8vFS#rU;2J8*;IprQTT zkE7Ok4uURq*m;ks_w48p`rhSy%u?6^@4GX?&YqaYx!I!Wkg_%e=ECjv%vlg$c$=Wt zIsmc9;zYB!Ix*Vh$Fu&61U&d%Kz&W40tKiw!_V$4$7?O$9Q&tg@b~R`W7YeJ$0Ihi z%i{adyWx6$w`nn~bf}+yt(ODBN|NmyKU(pbG_ktf4}n&3YM9%$2j$nl?p%|t0GcFI z-bj%aFd^THxRKNbsRZF+({n{2J~P9j_M#j!wE2Td$rE^>rtnCi+b~==ldkUCSpij- z$JBlt%fP>G=hI06(|A%~#?H!~;-_qs@2_p}hGXiDVNahSaD=n5ECo^UG;3P>Lx&C= ziT?hJi)S46R98v4@J>Q{;PL9!+!)CC(ffPFOTb)Vu$fC({AD+MC!PmxwjDfTm;F3Z&9ByM%w zZ}LZH97=4taycH}!m0W7S>qRZAkwnqa+qi-=vkgQdtR4-`hRb9XQ@_0!-6(TCABB| zC$(B}6{N$m8twC3YRY+hu=l}oK@xWN$ntniR>2rI@w88NC>GmYWEGdL1%bS_)bg`_ za5igoL;WEUR%N4vs<9MJtcGMw1^cn<1zmydb0Va;zDWDZP>7FT?~B#ZXvKv%b}hry zI?%DEBGDyQK;Vz>$8Q`WBh#f_?N=Qr_SeS~m2X)G;9|(L=Nzr~1?saeP zZ+>zW1HbiICOPJVF8z36b!jaG7k{2%=I+91vmX5@kp_rb|8#+hrW5YAX9^wqOR-lH z&-R3r)PdTZnvzA&7|QdF3CFwD!L5&GNy+h#L9=yPTH{Y4-mQGAR6m-4GUtrAPV^$a zY!~Sh=Wc}1nhZw!`ASgt%(csG>!ie)-|W9ylLxn3)i1>F?8M>7%~*qD<&=0%18vi8 z5|+L1zM~S~1XCYI`Wk<=V5FSwuM@qKaP~Ljf%?s7pb=TR%Z{}fBF_D~&KFdKU31Tl z$G&KSNFyk+uWW~cGw*jfEi@rlq{oic&^pvQzI*C|T|ZpTf2sHDKqtO<>~=GHjR2c2 z#^MLdVnOZQjhDAai=g$wTcP)T{ZRSWRGMLO2wzm){qZKC74mdWm#(+;;Wib1C%Mb@ z_^#1>K6-Q#ln-fKTl3As(q&<_CYf&V*_SWf!%>Z0Ge1A=GS0!{zg9{DwKIWitbOq8 z#SBO}Cc#Z-5y6&}7P!?=U-B#ZE}YAnJotiQAE;*DT|aZE83^irslqeOIN4si zGg+etS6yCRzj<%~-5IBj>mAO-v%htDS9i2SPjGZJRdY408LRiE&^LmkrLL^rVjs>5 zu31VwuE%{P)yf+K9Y9@Eab0Jm5UMZiF59EngmRy$BZ_&3V9%^tSF~ImmKh4qo+KCI zwPN?|nn)6K(Udb=?V)@R#(s}`R-}NcfS+O;Q!=`t4K3e=5-7-1H|9&Mgi+Qa+Cwaj zcxI)&Hdn8WVmDr9Y)~nK;d%Y}9c>gpmYa zTZ*eEcCZR(b|PPy;!fp~0Zi#QO&-EVNN;vMBB9ofnuV7=zgPExE-75iBCiSx7{e}f z7H7eu!ia8q^?I~uWvpixB!k4F|5VUuA5OM5x?4O1GYL>|XI^-0S1I&Yoy%PK)P@_EIXbJpR^b=A<$`8n2t)`jN>2|GzyY7v+zxGl zy3IpN3kqGJRI%*U|Dzh+;w!86ZR8pORxJto2|YkpIaK39sur6$?q@ zw|ebc@XI%~Z`n#Mh>Sn1Ia#aFsP5{aU@H<>jg)aR^#|a!EPmhp9Yeso*WrlgNGe7C z(W1g?Q3LEFr*e7>w?mF_Q7B zfX;2pi4Qc%$m?v~Ui5%~!57z+o1eRb%x8DrxAUb)^!I)wcaH!jh968)j>O=+^d0WB zpY5onPV+FdI}dX%&F@d?Afu4s=9+YL5{zVzJ)I2X=zX>yw(Z_$pusuY!@+n!-}AHxCP35+MfMae8%Df?`4hx=?{EAG%LXMCX13j&ww{%TV2 zfOG42vKDO%%$RRVsBR(QpJ49Xr)%Y)n;h{-yfYp{Uwt#JZLfp^`igKm(^?1!Gyn2r z=MY+5nCli5CSjZIDI<5y7~DUeeoVT)0_<<-Qj;SRVcGM#4n3PA>I$1)_ei41>DVW6 ziZ2okwoRE>4_1Lf{*fazd*abJ;GVeIt9Hx_kR8o&>qdXmM>BOzIY?k?OEJDV34PD! zsv{q@z{5Y1FPmEe;QXA*u0Y|K(97H!5K~MM$ejIwJSEWtd2#tHX0$X5#e%jKlz7qw* zEM3d5HN#iWQPJYL2weFd7M%O865dy`zR+c_gQL_g;xW6gfo9tF=u82BV3>(-=Y28^ z)XxG1{m5|;aOTAW#(`3(*AxpS>&D;H z=tQUC_yOP6ZnSRyBoral0V}DVudAI>@zueUcP8Qu;HOEQ@lBl)2YR%k7J{KKWg=~M}Av`aiC@r~&9wU8vVm6G?;gQF&6pzE_Ac!ERTuQ;a{Z*$KTN08XzjP1v*~Ao_%Z_?u zJW0UR?NeEw=sPiS1-X+BI)jAHhs;Duz685qN?yowGQQo%oUP+l57ktEy*Yh`@i2>d zrRRJd>^P>t>^9X6JB4*={Euehmn*5Bu`9!1>86rW=Fo!IEoXgo9;9Q#^Cw+p;eBwd zKQ!cK=z1O0|b4^}xkv})VfxO$)It-TZA>=D3k7_3_))q5giR;GkLW%4dW3`M;5;;XYW8eI$H*J<~(?R?e%E9TQ5$W-m;+jvmJsDo$T95!TkYG8;dXP zrNs9{OipnybU~Qdr=lm6JiYQzJGnQuaZqn_^Vgi5D_joI)$qB}2?N?zXSqt+pl{l> zrJJQ1GugE64c?&G)5fPKdUd-|yS-W6kF^KJdu?7>l$B%ff=tEHJx$0O`dcQYv;aBo z#Hf1Ev;f`4!Rd`LB7B`c*lhW;70(NPGierT#a-hE8;sA^!n8;p0}ERSMBO^FHa%4Y z8Z~P>Z}t-){msD%a!(TIbJX})_>y6uH;64NqYUEX41dH8G~?8?Da*d zx!DL7ryc~Uu6AR(tfFdxUKpe%fAiLJsl}lU!8pcoGFYo@4^nq+fRgSU=L(7)Ot&cN zXZ9rlE0p(a(5W@T`eY|Ri`!EyNEV?BSZziA$_!`XzG&z^vzKaKvKK^)Cu{=Qn$bPg zhGRyn9=0d{3{_!lgNIWA{>tx*VDe?m`HbJO@Wk1uvYU{O5<4>gmN=2nw~N|DU9k?# z`FpJgPLW`9b*i;0wiR~wDQ$GVB}0+dv&}XEgoNYt{?A4tQB>%Vqe)>3XmOkj@yV-! z$SaY~S6mw4LrIwp>17QPO{^yZ3n+NV^6IBqN}M!ox%I3zE8RILg#Gc)?^E&X8R#TfS@9vXM8dt43r$s&SwVn+8 z)wjBqW3WR&Hr!FF1YLUGbhoiKWANGn7< zvyvEx78)R$(SlD>rWCDX``nluDEZ6-38OPXqaYdYSv2l{7w*3NInNWFh9lp+JjIHg zV1)efY7YMZniV&1IagPQy95ebjxKwn*Y1>Ezx640%WBA$($WD;9J^g0dwT}&+Ml`R z=UNT-yd1$$zY6~>{@}AZK*l)ff7cc;{7 Date: Sat, 25 Jul 2026 20:47:43 -0400 Subject: [PATCH 2/3] remove any possible secret --- .env.example | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.env.example b/.env.example index 677e7f2..f6f89ed 100644 --- a/.env.example +++ b/.env.example @@ -5,7 +5,7 @@ # ----- PostgreSQL (Docker) ----- POSTGRES_USER=forum -POSTGRES_PASSWORD=forum_password +POSTGRES_PASSWORD=YOUR_DB_PASSWORD_HERE POSTGRES_DB=the_forum POSTGRES_PORT=5434 @@ -16,7 +16,7 @@ DATABASE_URL=postgresql://forum:forum_password@localhost:5434/the_forum AUTH_SECRET=your-auth-secret-here AUTH_AZURE_AD_CLIENT_ID=your-client-id AUTH_AZURE_AD_CLIENT_SECRET=your-client-secret -AUTH_AZURE_AD_TENANT_ID=2ff60116-7431-425d-b5af-077d7791bda4 +AUTH_AZURE_AD_TENANT_ID=YOUR_TENANT_ID_HERE # ----- AWS S3 (image uploads) ----- # AWS_S3_BUCKET=the-forum-uploads @@ -24,9 +24,9 @@ AUTH_AZURE_AD_TENANT_ID=2ff60116-7431-425d-b5af-077d7791bda4 # ----- Next.js public vars (prefix with NEXT_PUBLIC_) ----- # NEXT_PUBLIC_API_URL=http://localhost:8000 -NEXT_PUBLIC_MAPBOX_TOKEN=pk.your-mapbox-public-token -NEXT_PUBLIC_CAMPUS_MAP_TOKEN=pk.campus-map-public-token -NEXT_PUBLIC_CAMPUS_MAP_STYLE=mapbox://styles/account/style-id +NEXT_PUBLIC_MAPBOX_TOKEN=YOUR_CAMPUS_MAPBOX_TOKEN_HERE +NEXT_PUBLIC_CAMPUS_MAP_TOKEN=YOUR_CAMPUS_MAP_TOKEN_HERE +NEXT_PUBLIC_CAMPUS_MAP_STYLE=YOUR_CAMPUS_MAP_STYLE_HERE # ----- FastAPI ----- # FASTAPI_SECRET_KEY=changeme @@ -44,4 +44,4 @@ NEXT_PUBLIC_CAMPUS_MAP_STYLE=mapbox://styles/account/style-id # ----- Listserv Scraper ----- LISTSERV_EMAIL=tigerapp@princeton.edu -LISTSERV_PASSWORD=your-listserv-password +LISTSERV_PASSWORD=YOUR_LISTSERV_PASSWORD_HERE From b2ec222d5806aff34429d94057ec3e94a777ea57 Mon Sep 17 00:00:00 2001 From: Yubi Mamiya Date: Tue, 4 Aug 2026 12:10:53 -0400 Subject: [PATCH 3/3] re-ran migration with USING cast and revert --force --- .gitignore | 2 +- .../drizzle/0000_setup_vector_extension.sql | 3 + apps/database/drizzle/0001_init_schema.sql | 215 +++ apps/database/drizzle/0002_update_enums.sql | 72 + apps/database/drizzle/0003_init_schema.sql | 15 + .../database/drizzle/0004_update_database.sql | 72 + apps/database/drizzle/meta/0000_snapshot.json | 18 + apps/database/drizzle/meta/0001_snapshot.json | 1539 ++++++++++++++++ apps/database/drizzle/meta/0002_snapshot.json | 1570 +++++++++++++++++ apps/database/drizzle/meta/0003_snapshot.json | 1539 ++++++++++++++++ apps/database/drizzle/meta/0004_snapshot.json | 1570 +++++++++++++++++ apps/database/drizzle/meta/_journal.json | 41 + apps/database/package.json | 2 +- 13 files changed, 6656 insertions(+), 2 deletions(-) create mode 100644 apps/database/drizzle/0000_setup_vector_extension.sql create mode 100644 apps/database/drizzle/0001_init_schema.sql create mode 100644 apps/database/drizzle/0002_update_enums.sql create mode 100644 apps/database/drizzle/0003_init_schema.sql create mode 100644 apps/database/drizzle/0004_update_database.sql create mode 100644 apps/database/drizzle/meta/0000_snapshot.json create mode 100644 apps/database/drizzle/meta/0001_snapshot.json create mode 100644 apps/database/drizzle/meta/0002_snapshot.json create mode 100644 apps/database/drizzle/meta/0003_snapshot.json create mode 100644 apps/database/drizzle/meta/0004_snapshot.json create mode 100644 apps/database/drizzle/meta/_journal.json diff --git a/.gitignore b/.gitignore index 26e060e..6399e95 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,7 @@ build/ .forum_venv/ # ---- Database ---- -drizzle/ +# drizzle/ # ---- Python ---- __pycache__/ diff --git a/apps/database/drizzle/0000_setup_vector_extension.sql b/apps/database/drizzle/0000_setup_vector_extension.sql new file mode 100644 index 0000000..15a66d6 --- /dev/null +++ b/apps/database/drizzle/0000_setup_vector_extension.sql @@ -0,0 +1,3 @@ +-- Custom SQL migration file, put your code below! -- + +CREATE EXTENSION IF NOT EXISTS vector; \ No newline at end of file diff --git a/apps/database/drizzle/0001_init_schema.sql b/apps/database/drizzle/0001_init_schema.sql new file mode 100644 index 0000000..57e4dd6 --- /dev/null +++ b/apps/database/drizzle/0001_init_schema.sql @@ -0,0 +1,215 @@ +CREATE TYPE "public"."campus_region" AS ENUM('central', 'east', 'west', 'south', 'north', 'off-campus');--> statement-breakpoint +CREATE TYPE "public"."event_status" AS ENUM('draft', 'published');--> statement-breakpoint +CREATE TYPE "public"."event_tag" AS ENUM('free-food', 'workshop', 'performance', 'speaker', 'social', 'career', 'sports', 'music', 'art', 'academic', 'cultural', 'community-service', 'religious', 'political', 'tech', 'gaming', 'outdoor', 'wellness');--> statement-breakpoint +CREATE TYPE "public"."friendship_status" AS ENUM('pending', 'accepted', 'declined');--> statement-breakpoint +CREATE TYPE "public"."interaction_type" AS ENUM('view', 'click', 'rsvp', 'save', 'share', 'hide');--> statement-breakpoint +CREATE TYPE "public"."item_type" AS ENUM('event', 'organization');--> statement-breakpoint +CREATE TYPE "public"."location_category" AS ENUM('academic', 'residential', 'athletic', 'social', 'administrative', 'library', 'dining', 'other');--> statement-breakpoint +CREATE TYPE "public"."notification_type" AS ENUM('friend_request', 'event_reminder', 'org_new_event');--> statement-breakpoint +CREATE TYPE "public"."org_category" AS ENUM('career', 'affinity', 'performance', 'academic', 'athletic', 'social', 'cultural', 'religious', 'political', 'service');--> statement-breakpoint +CREATE TYPE "public"."org_role" AS ENUM('owner', 'officer', 'member');--> statement-breakpoint +CREATE TYPE "public"."pipeline_log_status" AS ENUM('success', 'skipped_not_event', 'duplicate', 'error');--> statement-breakpoint +CREATE TABLE "campus_locations" ( + "id" varchar(100) PRIMARY KEY NOT NULL, + "name" varchar(255) NOT NULL, + "latitude" double precision NOT NULL, + "longitude" double precision NOT NULL, + "category" "location_category" NOT NULL +); +--> statement-breakpoint +CREATE TABLE "event_tags" ( + "event_id" uuid NOT NULL, + "tag" "event_tag" NOT NULL, + CONSTRAINT "event_tags_event_id_tag_pk" PRIMARY KEY("event_id","tag") +); +--> statement-breakpoint +CREATE TABLE "events" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "title" varchar(200) NOT NULL, + "description" text NOT NULL, + "datetime" timestamp NOT NULL, + "end_datetime" timestamp, + "location_id" varchar(100) NOT NULL, + "org_id" uuid, + "creator_id" uuid NOT NULL, + "flyer_url" text, + "cover_preset" varchar(50), + "external_link" text, + "is_public" boolean DEFAULT true NOT NULL, + "status" "event_status" DEFAULT 'published' NOT NULL, + "source" varchar(20) DEFAULT 'manual' NOT NULL, + "source_message_id" varchar(255), + "created_at" timestamp DEFAULT now() NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "events_source_message_id_unique" UNIQUE("source_message_id") +); +--> statement-breakpoint +CREATE TABLE "friendships" ( + "user_id" uuid NOT NULL, + "friend_id" uuid NOT NULL, + "status" "friendship_status" DEFAULT 'pending' NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "friendships_user_id_friend_id_pk" PRIMARY KEY("user_id","friend_id") +); +--> statement-breakpoint +CREATE TABLE "interactions" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "user_id" uuid NOT NULL, + "item_id" uuid NOT NULL, + "item_type" "item_type" DEFAULT 'event' NOT NULL, + "interaction_type" "interaction_type" NOT NULL, + "interaction_value" double precision NOT NULL, + "metadata" jsonb, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "listserv_configs" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "address" varchar(255) NOT NULL, + "label" varchar(255) NOT NULL, + "org_id" uuid, + "gmail_label" varchar(255), + "enabled" boolean DEFAULT true NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "listserv_configs_address_unique" UNIQUE("address") +); +--> statement-breakpoint +CREATE TABLE "listserv_emails" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "message_id" varchar(255) NOT NULL, + "listserv" varchar(100) NOT NULL, + "subject" text NOT NULL, + "author_name" varchar(255), + "author_email" varchar(255), + "date" timestamp with time zone, + "body_text" text, + "body_html" text, + "is_hoagiemail" boolean DEFAULT false NOT NULL, + "hoagiemail_sender_name" varchar(255), + "hoagiemail_sender_email" varchar(255), + "links" jsonb DEFAULT '[]'::jsonb, + "images" jsonb DEFAULT '[]'::jsonb, + "attachments" jsonb DEFAULT '[]'::jsonb, + "listserv_url" text, + "created_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "listserv_emails_message_id_unique" UNIQUE("message_id") +); +--> statement-breakpoint +CREATE TABLE "notifications" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "user_id" uuid NOT NULL, + "type" "notification_type" NOT NULL, + "payload" jsonb NOT NULL, + "read" boolean DEFAULT false NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "org_followers" ( + "org_id" uuid NOT NULL, + "user_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "org_followers_org_id_user_id_pk" PRIMARY KEY("org_id","user_id") +); +--> statement-breakpoint +CREATE TABLE "org_members" ( + "org_id" uuid NOT NULL, + "user_id" uuid NOT NULL, + "role" "org_role" NOT NULL, + CONSTRAINT "org_members_org_id_user_id_pk" PRIMARY KEY("org_id","user_id") +); +--> statement-breakpoint +CREATE TABLE "organizations" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "name" varchar(255) NOT NULL, + "description" text, + "logo_url" text, + "category" "org_category" NOT NULL, + "creator_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "organizations_name_unique" UNIQUE("name") +); +--> statement-breakpoint +CREATE TABLE "pipeline_logs" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "message_id" varchar(255) NOT NULL, + "listserv_config_id" uuid, + "status" "pipeline_log_status" NOT NULL, + "error_text" text, + "extracted_event_id" uuid, + "created_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "rsvps" ( + "user_id" uuid NOT NULL, + "event_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "rsvps_user_id_event_id_pk" PRIMARY KEY("user_id","event_id") +); +--> statement-breakpoint +CREATE TABLE "saved_events" ( + "user_id" uuid NOT NULL, + "event_id" uuid NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "saved_events_user_id_event_id_pk" PRIMARY KEY("user_id","event_id") +); +--> statement-breakpoint +CREATE TABLE "user_interests" ( + "user_id" uuid NOT NULL, + "tag" "event_tag" NOT NULL, + CONSTRAINT "user_interests_user_id_tag_pk" PRIMARY KEY("user_id","tag") +); +--> statement-breakpoint +CREATE TABLE "user_preference_vectors" ( + "user_id" uuid PRIMARY KEY NOT NULL, + "tag_weights" jsonb DEFAULT '{}'::jsonb NOT NULL, + "latent_vector" double precision[], + "interaction_count" double precision DEFAULT 0 NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL +); +--> statement-breakpoint +CREATE TABLE "user_regions" ( + "user_id" uuid NOT NULL, + "region" "campus_region" NOT NULL, + CONSTRAINT "user_regions_user_id_region_pk" PRIMARY KEY("user_id","region") +); +--> statement-breakpoint +CREATE TABLE "users" ( + "id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL, + "net_id" varchar(50) NOT NULL, + "email" varchar(255) NOT NULL, + "display_name" varchar(255) NOT NULL, + "class_year" varchar(10), + "major" varchar(255), + "avatar_url" text, + "is_org_leader" boolean DEFAULT false NOT NULL, + "onboarded" boolean DEFAULT false NOT NULL, + "created_at" timestamp DEFAULT now() NOT NULL, + "updated_at" timestamp DEFAULT now() NOT NULL, + CONSTRAINT "users_net_id_unique" UNIQUE("net_id"), + CONSTRAINT "users_email_unique" UNIQUE("email") +); +--> statement-breakpoint +ALTER TABLE "event_tags" ADD CONSTRAINT "event_tags_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "events" ADD CONSTRAINT "events_location_id_campus_locations_id_fk" FOREIGN KEY ("location_id") REFERENCES "public"."campus_locations"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "events" ADD CONSTRAINT "events_org_id_organizations_id_fk" FOREIGN KEY ("org_id") REFERENCES "public"."organizations"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "events" ADD CONSTRAINT "events_creator_id_users_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "friendships" ADD CONSTRAINT "friendships_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "friendships" ADD CONSTRAINT "friendships_friend_id_users_id_fk" FOREIGN KEY ("friend_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "interactions" ADD CONSTRAINT "interactions_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "listserv_configs" ADD CONSTRAINT "listserv_configs_org_id_organizations_id_fk" FOREIGN KEY ("org_id") REFERENCES "public"."organizations"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "notifications" ADD CONSTRAINT "notifications_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "org_followers" ADD CONSTRAINT "org_followers_org_id_organizations_id_fk" FOREIGN KEY ("org_id") REFERENCES "public"."organizations"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "org_followers" ADD CONSTRAINT "org_followers_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "org_members" ADD CONSTRAINT "org_members_org_id_organizations_id_fk" FOREIGN KEY ("org_id") REFERENCES "public"."organizations"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "org_members" ADD CONSTRAINT "org_members_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "organizations" ADD CONSTRAINT "organizations_creator_id_users_id_fk" FOREIGN KEY ("creator_id") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "pipeline_logs" ADD CONSTRAINT "pipeline_logs_listserv_config_id_listserv_configs_id_fk" FOREIGN KEY ("listserv_config_id") REFERENCES "public"."listserv_configs"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "pipeline_logs" ADD CONSTRAINT "pipeline_logs_extracted_event_id_events_id_fk" FOREIGN KEY ("extracted_event_id") REFERENCES "public"."events"("id") ON DELETE set null ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "rsvps" ADD CONSTRAINT "rsvps_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "rsvps" ADD CONSTRAINT "rsvps_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "saved_events" ADD CONSTRAINT "saved_events_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "saved_events" ADD CONSTRAINT "saved_events_event_id_events_id_fk" FOREIGN KEY ("event_id") REFERENCES "public"."events"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "user_interests" ADD CONSTRAINT "user_interests_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "user_preference_vectors" ADD CONSTRAINT "user_preference_vectors_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint +ALTER TABLE "user_regions" ADD CONSTRAINT "user_regions_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action; \ No newline at end of file diff --git a/apps/database/drizzle/0002_update_enums.sql b/apps/database/drizzle/0002_update_enums.sql new file mode 100644 index 0000000..1bffe70 --- /dev/null +++ b/apps/database/drizzle/0002_update_enums.sql @@ -0,0 +1,72 @@ +ALTER TYPE "public"."pipeline_log_status" ADD VALUE 'needs_review';--> statement-breakpoint + +CREATE TABLE "event_tag_embeddings" ( + "tag_name" "event_tag" PRIMARY KEY NOT NULL, + "embedding" vector(1536) NOT NULL +); +--> statement-breakpoint + +ALTER TABLE "event_tag_embeddings" ALTER COLUMN "tag_name" SET DATA TYPE text;--> statement-breakpoint +ALTER TABLE "event_tags" ALTER COLUMN "tag" SET DATA TYPE text;--> statement-breakpoint +ALTER TABLE "user_interests" ALTER COLUMN "tag" SET DATA TYPE text;--> statement-breakpoint + +DROP TYPE "public"."event_tag";--> statement-breakpoint +CREATE TYPE "public"."event_tag" AS ENUM('free food', 'career', 'research', 'academics', 'tech', 'entrepreneurship', 'politics', 'visual arts', 'performing arts', 'literature', 'culture', 'music', 'gaming', 'athletics', 'religion', 'sustainability', 'outdoors', 'wellness', 'community service', 'speaker event', 'social event', 'stem');--> statement-breakpoint + +-- event_tag_embeddings is a new table, so a direct cast is safe here +ALTER TABLE "event_tag_embeddings" ALTER COLUMN "tag_name" SET DATA TYPE "public"."event_tag" USING "tag_name"::"public"."event_tag";--> statement-breakpoint + +-- Explicit mapping for event_tags +ALTER TABLE "event_tags" ALTER COLUMN "tag" SET DATA TYPE "public"."event_tag" USING ( + CASE "tag" + WHEN 'free-food' THEN 'free food' + WHEN 'workshop' THEN 'academics' + WHEN 'performance' THEN 'performing arts' + WHEN 'speaker' THEN 'speaker event' + WHEN 'social' THEN 'social event' + WHEN 'sports' THEN 'athletics' + WHEN 'art' THEN 'visual arts' + WHEN 'academic' THEN 'academics' + WHEN 'cultural' THEN 'culture' + WHEN 'community-service' THEN 'community service' + WHEN 'religious' THEN 'religion' + WHEN 'political' THEN 'politics' + WHEN 'outdoor' THEN 'outdoors' + ELSE "tag" + END +)::"public"."event_tag";--> statement-breakpoint + +-- Explicit mapping for user_interests +ALTER TABLE "user_interests" ALTER COLUMN "tag" SET DATA TYPE "public"."event_tag" USING ( + CASE "tag" + WHEN 'free-food' THEN 'free food' + WHEN 'workshop' THEN 'academics' + WHEN 'performance' THEN 'performing arts' + WHEN 'speaker' THEN 'speaker event' + WHEN 'social' THEN 'social event' + WHEN 'sports' THEN 'athletics' + WHEN 'art' THEN 'visual arts' + WHEN 'academic' THEN 'academics' + WHEN 'cultural' THEN 'culture' + WHEN 'community-service' THEN 'community service' + WHEN 'religious' THEN 'religion' + WHEN 'political' THEN 'politics' + WHEN 'outdoor' THEN 'outdoors' + ELSE "tag" + END +)::"public"."event_tag";--> statement-breakpoint + +ALTER TABLE "organizations" ALTER COLUMN "category" SET DATA TYPE text;--> statement-breakpoint +DROP TYPE "public"."org_category";--> statement-breakpoint +CREATE TYPE "public"."org_category" AS ENUM('career', 'affinity', 'performing arts', 'academics', 'athletics', 'social event', 'culture', 'religion', 'politics', 'community service');--> statement-breakpoint + +-- Explicit mapping for organizations +ALTER TABLE "organizations" ALTER COLUMN "category" SET DATA TYPE "public"."org_category" USING ( + CASE "category" + WHEN 'academic' THEN 'academics' + WHEN 'performance' THEN 'performing arts' + WHEN 'cultural' THEN 'culture' + WHEN 'athletic' THEN 'athletics' + ELSE "category" + END +)::"public"."org_category"; \ No newline at end of file diff --git a/apps/database/drizzle/0003_init_schema.sql b/apps/database/drizzle/0003_init_schema.sql new file mode 100644 index 0000000..297ba09 --- /dev/null +++ b/apps/database/drizzle/0003_init_schema.sql @@ -0,0 +1,15 @@ +DROP TABLE "event_tag_embeddings" CASCADE;--> statement-breakpoint +ALTER TABLE "event_tags" ALTER COLUMN "tag" SET DATA TYPE text;--> statement-breakpoint +ALTER TABLE "user_interests" ALTER COLUMN "tag" SET DATA TYPE text;--> statement-breakpoint +DROP TYPE "public"."event_tag";--> statement-breakpoint +CREATE TYPE "public"."event_tag" AS ENUM('free-food', 'workshop', 'performance', 'speaker', 'social', 'career', 'sports', 'music', 'art', 'academic', 'cultural', 'community-service', 'religious', 'political', 'tech', 'gaming', 'outdoor', 'wellness');--> statement-breakpoint +ALTER TABLE "event_tags" ALTER COLUMN "tag" SET DATA TYPE "public"."event_tag" USING "tag"::"public"."event_tag";--> statement-breakpoint +ALTER TABLE "user_interests" ALTER COLUMN "tag" SET DATA TYPE "public"."event_tag" USING "tag"::"public"."event_tag";--> statement-breakpoint +ALTER TABLE "organizations" ALTER COLUMN "category" SET DATA TYPE text;--> statement-breakpoint +DROP TYPE "public"."org_category";--> statement-breakpoint +CREATE TYPE "public"."org_category" AS ENUM('career', 'affinity', 'performance', 'academic', 'athletic', 'social', 'cultural', 'religious', 'political', 'service');--> statement-breakpoint +ALTER TABLE "organizations" ALTER COLUMN "category" SET DATA TYPE "public"."org_category" USING "category"::"public"."org_category";--> statement-breakpoint +ALTER TABLE "pipeline_logs" ALTER COLUMN "status" SET DATA TYPE text;--> statement-breakpoint +DROP TYPE "public"."pipeline_log_status";--> statement-breakpoint +CREATE TYPE "public"."pipeline_log_status" AS ENUM('success', 'skipped_not_event', 'duplicate', 'error');--> statement-breakpoint +ALTER TABLE "pipeline_logs" ALTER COLUMN "status" SET DATA TYPE "public"."pipeline_log_status" USING "status"::"public"."pipeline_log_status"; \ No newline at end of file diff --git a/apps/database/drizzle/0004_update_database.sql b/apps/database/drizzle/0004_update_database.sql new file mode 100644 index 0000000..1bffe70 --- /dev/null +++ b/apps/database/drizzle/0004_update_database.sql @@ -0,0 +1,72 @@ +ALTER TYPE "public"."pipeline_log_status" ADD VALUE 'needs_review';--> statement-breakpoint + +CREATE TABLE "event_tag_embeddings" ( + "tag_name" "event_tag" PRIMARY KEY NOT NULL, + "embedding" vector(1536) NOT NULL +); +--> statement-breakpoint + +ALTER TABLE "event_tag_embeddings" ALTER COLUMN "tag_name" SET DATA TYPE text;--> statement-breakpoint +ALTER TABLE "event_tags" ALTER COLUMN "tag" SET DATA TYPE text;--> statement-breakpoint +ALTER TABLE "user_interests" ALTER COLUMN "tag" SET DATA TYPE text;--> statement-breakpoint + +DROP TYPE "public"."event_tag";--> statement-breakpoint +CREATE TYPE "public"."event_tag" AS ENUM('free food', 'career', 'research', 'academics', 'tech', 'entrepreneurship', 'politics', 'visual arts', 'performing arts', 'literature', 'culture', 'music', 'gaming', 'athletics', 'religion', 'sustainability', 'outdoors', 'wellness', 'community service', 'speaker event', 'social event', 'stem');--> statement-breakpoint + +-- event_tag_embeddings is a new table, so a direct cast is safe here +ALTER TABLE "event_tag_embeddings" ALTER COLUMN "tag_name" SET DATA TYPE "public"."event_tag" USING "tag_name"::"public"."event_tag";--> statement-breakpoint + +-- Explicit mapping for event_tags +ALTER TABLE "event_tags" ALTER COLUMN "tag" SET DATA TYPE "public"."event_tag" USING ( + CASE "tag" + WHEN 'free-food' THEN 'free food' + WHEN 'workshop' THEN 'academics' + WHEN 'performance' THEN 'performing arts' + WHEN 'speaker' THEN 'speaker event' + WHEN 'social' THEN 'social event' + WHEN 'sports' THEN 'athletics' + WHEN 'art' THEN 'visual arts' + WHEN 'academic' THEN 'academics' + WHEN 'cultural' THEN 'culture' + WHEN 'community-service' THEN 'community service' + WHEN 'religious' THEN 'religion' + WHEN 'political' THEN 'politics' + WHEN 'outdoor' THEN 'outdoors' + ELSE "tag" + END +)::"public"."event_tag";--> statement-breakpoint + +-- Explicit mapping for user_interests +ALTER TABLE "user_interests" ALTER COLUMN "tag" SET DATA TYPE "public"."event_tag" USING ( + CASE "tag" + WHEN 'free-food' THEN 'free food' + WHEN 'workshop' THEN 'academics' + WHEN 'performance' THEN 'performing arts' + WHEN 'speaker' THEN 'speaker event' + WHEN 'social' THEN 'social event' + WHEN 'sports' THEN 'athletics' + WHEN 'art' THEN 'visual arts' + WHEN 'academic' THEN 'academics' + WHEN 'cultural' THEN 'culture' + WHEN 'community-service' THEN 'community service' + WHEN 'religious' THEN 'religion' + WHEN 'political' THEN 'politics' + WHEN 'outdoor' THEN 'outdoors' + ELSE "tag" + END +)::"public"."event_tag";--> statement-breakpoint + +ALTER TABLE "organizations" ALTER COLUMN "category" SET DATA TYPE text;--> statement-breakpoint +DROP TYPE "public"."org_category";--> statement-breakpoint +CREATE TYPE "public"."org_category" AS ENUM('career', 'affinity', 'performing arts', 'academics', 'athletics', 'social event', 'culture', 'religion', 'politics', 'community service');--> statement-breakpoint + +-- Explicit mapping for organizations +ALTER TABLE "organizations" ALTER COLUMN "category" SET DATA TYPE "public"."org_category" USING ( + CASE "category" + WHEN 'academic' THEN 'academics' + WHEN 'performance' THEN 'performing arts' + WHEN 'cultural' THEN 'culture' + WHEN 'athletic' THEN 'athletics' + ELSE "category" + END +)::"public"."org_category"; \ No newline at end of file diff --git a/apps/database/drizzle/meta/0000_snapshot.json b/apps/database/drizzle/meta/0000_snapshot.json new file mode 100644 index 0000000..e394d30 --- /dev/null +++ b/apps/database/drizzle/meta/0000_snapshot.json @@ -0,0 +1,18 @@ +{ + "id": "09ea1b9b-ce4c-4ece-8633-8d73f5e6be2b", + "prevId": "00000000-0000-0000-0000-000000000000", + "version": "7", + "dialect": "postgresql", + "tables": {}, + "enums": {}, + "schemas": {}, + "views": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/apps/database/drizzle/meta/0001_snapshot.json b/apps/database/drizzle/meta/0001_snapshot.json new file mode 100644 index 0000000..bc1c181 --- /dev/null +++ b/apps/database/drizzle/meta/0001_snapshot.json @@ -0,0 +1,1539 @@ +{ + "id": "c7cf07a3-f6fe-4a4d-983f-7150b4ddffbe", + "prevId": "09ea1b9b-ce4c-4ece-8633-8d73f5e6be2b", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.campus_locations": { + "name": "campus_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "varchar(100)", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "category": { + "name": "category", + "type": "location_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_tags": { + "name": "event_tags", + "schema": "", + "columns": { + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "event_tags_event_id_events_id_fk": { + "name": "event_tags_event_id_events_id_fk", + "tableFrom": "event_tags", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "event_tags_event_id_tag_pk": { + "name": "event_tags_event_id_tag_pk", + "columns": [ + "event_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.events": { + "name": "events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar(200)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "datetime": { + "name": "datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_datetime": { + "name": "end_datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "location_id": { + "name": "location_id", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "flyer_url": { + "name": "flyer_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "cover_preset": { + "name": "cover_preset", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "external_link": { + "name": "external_link", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_public": { + "name": "is_public", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "status": { + "name": "status", + "type": "event_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'published'" + }, + "source": { + "name": "source", + "type": "varchar(20)", + "primaryKey": false, + "notNull": true, + "default": "'manual'" + }, + "source_message_id": { + "name": "source_message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "events_location_id_campus_locations_id_fk": { + "name": "events_location_id_campus_locations_id_fk", + "tableFrom": "events", + "tableTo": "campus_locations", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_org_id_organizations_id_fk": { + "name": "events_org_id_organizations_id_fk", + "tableFrom": "events", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_creator_id_users_id_fk": { + "name": "events_creator_id_users_id_fk", + "tableFrom": "events", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "events_source_message_id_unique": { + "name": "events_source_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "source_message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.friendships": { + "name": "friendships", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "friend_id": { + "name": "friend_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "friendship_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'pending'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "friendships_user_id_users_id_fk": { + "name": "friendships_user_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "friendships_friend_id_users_id_fk": { + "name": "friendships_friend_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "friend_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "friendships_user_id_friend_id_pk": { + "name": "friendships_user_id_friend_id_pk", + "columns": [ + "user_id", + "friend_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.interactions": { + "name": "interactions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_type": { + "name": "item_type", + "type": "item_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'event'" + }, + "interaction_type": { + "name": "interaction_type", + "type": "interaction_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "interaction_value": { + "name": "interaction_value", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "interactions_user_id_users_id_fk": { + "name": "interactions_user_id_users_id_fk", + "tableFrom": "interactions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_configs": { + "name": "listserv_configs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "address": { + "name": "address", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "label": { + "name": "label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "gmail_label": { + "name": "gmail_label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "listserv_configs_org_id_organizations_id_fk": { + "name": "listserv_configs_org_id_organizations_id_fk", + "tableFrom": "listserv_configs", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_configs_address_unique": { + "name": "listserv_configs_address_unique", + "nullsNotDistinct": false, + "columns": [ + "address" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_emails": { + "name": "listserv_emails", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv": { + "name": "listserv", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "subject": { + "name": "subject", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "author_name": { + "name": "author_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "author_email": { + "name": "author_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "date": { + "name": "date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "body_text": { + "name": "body_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "body_html": { + "name": "body_html", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_hoagiemail": { + "name": "is_hoagiemail", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "hoagiemail_sender_name": { + "name": "hoagiemail_sender_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "hoagiemail_sender_email": { + "name": "hoagiemail_sender_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "links": { + "name": "links", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "images": { + "name": "images", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "attachments": { + "name": "attachments", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "listserv_url": { + "name": "listserv_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_emails_message_id_unique": { + "name": "listserv_emails_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notifications": { + "name": "notifications", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "notification_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "payload": { + "name": "payload", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "read": { + "name": "read", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "notifications_user_id_users_id_fk": { + "name": "notifications_user_id_users_id_fk", + "tableFrom": "notifications", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_followers": { + "name": "org_followers", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "org_followers_org_id_organizations_id_fk": { + "name": "org_followers_org_id_organizations_id_fk", + "tableFrom": "org_followers", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_followers_user_id_users_id_fk": { + "name": "org_followers_user_id_users_id_fk", + "tableFrom": "org_followers", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_followers_org_id_user_id_pk": { + "name": "org_followers_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_members": { + "name": "org_members", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "org_role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "org_members_org_id_organizations_id_fk": { + "name": "org_members_org_id_organizations_id_fk", + "tableFrom": "org_members", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_members_user_id_users_id_fk": { + "name": "org_members_user_id_users_id_fk", + "tableFrom": "org_members", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_members_org_id_user_id_pk": { + "name": "org_members_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.organizations": { + "name": "organizations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "logo_url": { + "name": "logo_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "category": { + "name": "category", + "type": "org_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "organizations_creator_id_users_id_fk": { + "name": "organizations_creator_id_users_id_fk", + "tableFrom": "organizations", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organizations_name_unique": { + "name": "organizations_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pipeline_logs": { + "name": "pipeline_logs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv_config_id": { + "name": "listserv_config_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "pipeline_log_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "error_text": { + "name": "error_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "extracted_event_id": { + "name": "extracted_event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "pipeline_logs_listserv_config_id_listserv_configs_id_fk": { + "name": "pipeline_logs_listserv_config_id_listserv_configs_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "listserv_configs", + "columnsFrom": [ + "listserv_config_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pipeline_logs_extracted_event_id_events_id_fk": { + "name": "pipeline_logs_extracted_event_id_events_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "events", + "columnsFrom": [ + "extracted_event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.rsvps": { + "name": "rsvps", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "rsvps_user_id_users_id_fk": { + "name": "rsvps_user_id_users_id_fk", + "tableFrom": "rsvps", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "rsvps_event_id_events_id_fk": { + "name": "rsvps_event_id_events_id_fk", + "tableFrom": "rsvps", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "rsvps_user_id_event_id_pk": { + "name": "rsvps_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.saved_events": { + "name": "saved_events", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "saved_events_user_id_users_id_fk": { + "name": "saved_events_user_id_users_id_fk", + "tableFrom": "saved_events", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "saved_events_event_id_events_id_fk": { + "name": "saved_events_event_id_events_id_fk", + "tableFrom": "saved_events", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "saved_events_user_id_event_id_pk": { + "name": "saved_events_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_interests": { + "name": "user_interests", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_interests_user_id_users_id_fk": { + "name": "user_interests_user_id_users_id_fk", + "tableFrom": "user_interests", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_interests_user_id_tag_pk": { + "name": "user_interests_user_id_tag_pk", + "columns": [ + "user_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_preference_vectors": { + "name": "user_preference_vectors", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": true, + "notNull": true + }, + "tag_weights": { + "name": "tag_weights", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'{}'::jsonb" + }, + "latent_vector": { + "name": "latent_vector", + "type": "double precision[]", + "primaryKey": false, + "notNull": false + }, + "interaction_count": { + "name": "interaction_count", + "type": "double precision", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "user_preference_vectors_user_id_users_id_fk": { + "name": "user_preference_vectors_user_id_users_id_fk", + "tableFrom": "user_preference_vectors", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_regions": { + "name": "user_regions", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "region": { + "name": "region", + "type": "campus_region", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_regions_user_id_users_id_fk": { + "name": "user_regions_user_id_users_id_fk", + "tableFrom": "user_regions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_regions_user_id_region_pk": { + "name": "user_regions_user_id_region_pk", + "columns": [ + "user_id", + "region" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users": { + "name": "users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "net_id": { + "name": "net_id", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "display_name": { + "name": "display_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "class_year": { + "name": "class_year", + "type": "varchar(10)", + "primaryKey": false, + "notNull": false + }, + "major": { + "name": "major", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "avatar_url": { + "name": "avatar_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_org_leader": { + "name": "is_org_leader", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "onboarded": { + "name": "onboarded", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "users_net_id_unique": { + "name": "users_net_id_unique", + "nullsNotDistinct": false, + "columns": [ + "net_id" + ] + }, + "users_email_unique": { + "name": "users_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.campus_region": { + "name": "campus_region", + "schema": "public", + "values": [ + "central", + "east", + "west", + "south", + "north", + "off-campus" + ] + }, + "public.event_status": { + "name": "event_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.event_tag": { + "name": "event_tag", + "schema": "public", + "values": [ + "free-food", + "workshop", + "performance", + "speaker", + "social", + "career", + "sports", + "music", + "art", + "academic", + "cultural", + "community-service", + "religious", + "political", + "tech", + "gaming", + "outdoor", + "wellness" + ] + }, + "public.friendship_status": { + "name": "friendship_status", + "schema": "public", + "values": [ + "pending", + "accepted", + "declined" + ] + }, + "public.interaction_type": { + "name": "interaction_type", + "schema": "public", + "values": [ + "view", + "click", + "rsvp", + "save", + "share", + "hide" + ] + }, + "public.item_type": { + "name": "item_type", + "schema": "public", + "values": [ + "event", + "organization" + ] + }, + "public.location_category": { + "name": "location_category", + "schema": "public", + "values": [ + "academic", + "residential", + "athletic", + "social", + "administrative", + "library", + "dining", + "other" + ] + }, + "public.notification_type": { + "name": "notification_type", + "schema": "public", + "values": [ + "friend_request", + "event_reminder", + "org_new_event" + ] + }, + "public.org_category": { + "name": "org_category", + "schema": "public", + "values": [ + "career", + "affinity", + "performance", + "academic", + "athletic", + "social", + "cultural", + "religious", + "political", + "service" + ] + }, + "public.org_role": { + "name": "org_role", + "schema": "public", + "values": [ + "owner", + "officer", + "member" + ] + }, + "public.pipeline_log_status": { + "name": "pipeline_log_status", + "schema": "public", + "values": [ + "success", + "skipped_not_event", + "duplicate", + "error" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/apps/database/drizzle/meta/0002_snapshot.json b/apps/database/drizzle/meta/0002_snapshot.json new file mode 100644 index 0000000..343f66a --- /dev/null +++ b/apps/database/drizzle/meta/0002_snapshot.json @@ -0,0 +1,1570 @@ +{ + "id": "5bee482d-9232-416e-9059-145490932658", + "prevId": "c7cf07a3-f6fe-4a4d-983f-7150b4ddffbe", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.campus_locations": { + "name": "campus_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "varchar(100)", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "category": { + "name": "category", + "type": "location_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_tag_embeddings": { + "name": "event_tag_embeddings", + "schema": "", + "columns": { + "tag_name": { + "name": "tag_name", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": true, + "notNull": true + }, + "embedding": { + "name": "embedding", + "type": "vector(1536)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_tags": { + "name": "event_tags", + "schema": "", + "columns": { + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "event_tags_event_id_events_id_fk": { + "name": "event_tags_event_id_events_id_fk", + "tableFrom": "event_tags", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "event_tags_event_id_tag_pk": { + "name": "event_tags_event_id_tag_pk", + "columns": [ + "event_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.events": { + "name": "events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar(200)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "datetime": { + "name": "datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_datetime": { + "name": "end_datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "location_id": { + "name": "location_id", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "flyer_url": { + "name": "flyer_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "cover_preset": { + "name": "cover_preset", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "external_link": { + "name": "external_link", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_public": { + "name": "is_public", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "status": { + "name": "status", + "type": "event_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'published'" + }, + "source": { + "name": "source", + "type": "varchar(20)", + "primaryKey": false, + "notNull": true, + "default": "'manual'" + }, + "source_message_id": { + "name": "source_message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "events_location_id_campus_locations_id_fk": { + "name": "events_location_id_campus_locations_id_fk", + "tableFrom": "events", + "tableTo": "campus_locations", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_org_id_organizations_id_fk": { + "name": "events_org_id_organizations_id_fk", + "tableFrom": "events", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_creator_id_users_id_fk": { + "name": "events_creator_id_users_id_fk", + "tableFrom": "events", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "events_source_message_id_unique": { + "name": "events_source_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "source_message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.friendships": { + "name": "friendships", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "friend_id": { + "name": "friend_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "friendship_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'pending'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "friendships_user_id_users_id_fk": { + "name": "friendships_user_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "friendships_friend_id_users_id_fk": { + "name": "friendships_friend_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "friend_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "friendships_user_id_friend_id_pk": { + "name": "friendships_user_id_friend_id_pk", + "columns": [ + "user_id", + "friend_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.interactions": { + "name": "interactions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_type": { + "name": "item_type", + "type": "item_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'event'" + }, + "interaction_type": { + "name": "interaction_type", + "type": "interaction_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "interaction_value": { + "name": "interaction_value", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "interactions_user_id_users_id_fk": { + "name": "interactions_user_id_users_id_fk", + "tableFrom": "interactions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_configs": { + "name": "listserv_configs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "address": { + "name": "address", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "label": { + "name": "label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "gmail_label": { + "name": "gmail_label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "listserv_configs_org_id_organizations_id_fk": { + "name": "listserv_configs_org_id_organizations_id_fk", + "tableFrom": "listserv_configs", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_configs_address_unique": { + "name": "listserv_configs_address_unique", + "nullsNotDistinct": false, + "columns": [ + "address" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_emails": { + "name": "listserv_emails", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv": { + "name": "listserv", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "subject": { + "name": "subject", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "author_name": { + "name": "author_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "author_email": { + "name": "author_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "date": { + "name": "date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "body_text": { + "name": "body_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "body_html": { + "name": "body_html", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_hoagiemail": { + "name": "is_hoagiemail", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "hoagiemail_sender_name": { + "name": "hoagiemail_sender_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "hoagiemail_sender_email": { + "name": "hoagiemail_sender_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "links": { + "name": "links", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "images": { + "name": "images", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "attachments": { + "name": "attachments", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "listserv_url": { + "name": "listserv_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_emails_message_id_unique": { + "name": "listserv_emails_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notifications": { + "name": "notifications", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "notification_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "payload": { + "name": "payload", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "read": { + "name": "read", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "notifications_user_id_users_id_fk": { + "name": "notifications_user_id_users_id_fk", + "tableFrom": "notifications", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_followers": { + "name": "org_followers", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "org_followers_org_id_organizations_id_fk": { + "name": "org_followers_org_id_organizations_id_fk", + "tableFrom": "org_followers", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_followers_user_id_users_id_fk": { + "name": "org_followers_user_id_users_id_fk", + "tableFrom": "org_followers", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_followers_org_id_user_id_pk": { + "name": "org_followers_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_members": { + "name": "org_members", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "org_role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "org_members_org_id_organizations_id_fk": { + "name": "org_members_org_id_organizations_id_fk", + "tableFrom": "org_members", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_members_user_id_users_id_fk": { + "name": "org_members_user_id_users_id_fk", + "tableFrom": "org_members", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_members_org_id_user_id_pk": { + "name": "org_members_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.organizations": { + "name": "organizations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "logo_url": { + "name": "logo_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "category": { + "name": "category", + "type": "org_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "organizations_creator_id_users_id_fk": { + "name": "organizations_creator_id_users_id_fk", + "tableFrom": "organizations", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organizations_name_unique": { + "name": "organizations_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pipeline_logs": { + "name": "pipeline_logs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv_config_id": { + "name": "listserv_config_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "pipeline_log_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "error_text": { + "name": "error_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "extracted_event_id": { + "name": "extracted_event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "pipeline_logs_listserv_config_id_listserv_configs_id_fk": { + "name": "pipeline_logs_listserv_config_id_listserv_configs_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "listserv_configs", + "columnsFrom": [ + "listserv_config_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pipeline_logs_extracted_event_id_events_id_fk": { + "name": "pipeline_logs_extracted_event_id_events_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "events", + "columnsFrom": [ + "extracted_event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.rsvps": { + "name": "rsvps", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "rsvps_user_id_users_id_fk": { + "name": "rsvps_user_id_users_id_fk", + "tableFrom": "rsvps", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "rsvps_event_id_events_id_fk": { + "name": "rsvps_event_id_events_id_fk", + "tableFrom": "rsvps", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "rsvps_user_id_event_id_pk": { + "name": "rsvps_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.saved_events": { + "name": "saved_events", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "saved_events_user_id_users_id_fk": { + "name": "saved_events_user_id_users_id_fk", + "tableFrom": "saved_events", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "saved_events_event_id_events_id_fk": { + "name": "saved_events_event_id_events_id_fk", + "tableFrom": "saved_events", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "saved_events_user_id_event_id_pk": { + "name": "saved_events_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_interests": { + "name": "user_interests", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_interests_user_id_users_id_fk": { + "name": "user_interests_user_id_users_id_fk", + "tableFrom": "user_interests", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_interests_user_id_tag_pk": { + "name": "user_interests_user_id_tag_pk", + "columns": [ + "user_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_preference_vectors": { + "name": "user_preference_vectors", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": true, + "notNull": true + }, + "tag_weights": { + "name": "tag_weights", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'{}'::jsonb" + }, + "latent_vector": { + "name": "latent_vector", + "type": "double precision[]", + "primaryKey": false, + "notNull": false + }, + "interaction_count": { + "name": "interaction_count", + "type": "double precision", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "user_preference_vectors_user_id_users_id_fk": { + "name": "user_preference_vectors_user_id_users_id_fk", + "tableFrom": "user_preference_vectors", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_regions": { + "name": "user_regions", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "region": { + "name": "region", + "type": "campus_region", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_regions_user_id_users_id_fk": { + "name": "user_regions_user_id_users_id_fk", + "tableFrom": "user_regions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_regions_user_id_region_pk": { + "name": "user_regions_user_id_region_pk", + "columns": [ + "user_id", + "region" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users": { + "name": "users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "net_id": { + "name": "net_id", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "display_name": { + "name": "display_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "class_year": { + "name": "class_year", + "type": "varchar(10)", + "primaryKey": false, + "notNull": false + }, + "major": { + "name": "major", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "avatar_url": { + "name": "avatar_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_org_leader": { + "name": "is_org_leader", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "onboarded": { + "name": "onboarded", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "users_net_id_unique": { + "name": "users_net_id_unique", + "nullsNotDistinct": false, + "columns": [ + "net_id" + ] + }, + "users_email_unique": { + "name": "users_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.campus_region": { + "name": "campus_region", + "schema": "public", + "values": [ + "central", + "east", + "west", + "south", + "north", + "off-campus" + ] + }, + "public.event_status": { + "name": "event_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.event_tag": { + "name": "event_tag", + "schema": "public", + "values": [ + "free food", + "career", + "research", + "academics", + "tech", + "entrepreneurship", + "politics", + "visual arts", + "performing arts", + "literature", + "culture", + "music", + "gaming", + "athletics", + "religion", + "sustainability", + "outdoors", + "wellness", + "community service", + "speaker event", + "social event", + "stem" + ] + }, + "public.friendship_status": { + "name": "friendship_status", + "schema": "public", + "values": [ + "pending", + "accepted", + "declined" + ] + }, + "public.interaction_type": { + "name": "interaction_type", + "schema": "public", + "values": [ + "view", + "click", + "rsvp", + "save", + "share", + "hide" + ] + }, + "public.item_type": { + "name": "item_type", + "schema": "public", + "values": [ + "event", + "organization" + ] + }, + "public.location_category": { + "name": "location_category", + "schema": "public", + "values": [ + "academic", + "residential", + "athletic", + "social", + "administrative", + "library", + "dining", + "other" + ] + }, + "public.notification_type": { + "name": "notification_type", + "schema": "public", + "values": [ + "friend_request", + "event_reminder", + "org_new_event" + ] + }, + "public.org_category": { + "name": "org_category", + "schema": "public", + "values": [ + "career", + "affinity", + "performing arts", + "academics", + "athletics", + "social event", + "culture", + "religion", + "politics", + "community service" + ] + }, + "public.org_role": { + "name": "org_role", + "schema": "public", + "values": [ + "owner", + "officer", + "member" + ] + }, + "public.pipeline_log_status": { + "name": "pipeline_log_status", + "schema": "public", + "values": [ + "success", + "skipped_not_event", + "duplicate", + "error", + "needs_review" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/apps/database/drizzle/meta/0003_snapshot.json b/apps/database/drizzle/meta/0003_snapshot.json new file mode 100644 index 0000000..3d09175 --- /dev/null +++ b/apps/database/drizzle/meta/0003_snapshot.json @@ -0,0 +1,1539 @@ +{ + "id": "9dc3b983-d03d-445c-8796-e46e37b7566c", + "prevId": "5bee482d-9232-416e-9059-145490932658", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.campus_locations": { + "name": "campus_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "varchar(100)", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "category": { + "name": "category", + "type": "location_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_tags": { + "name": "event_tags", + "schema": "", + "columns": { + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "event_tags_event_id_events_id_fk": { + "name": "event_tags_event_id_events_id_fk", + "tableFrom": "event_tags", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "event_tags_event_id_tag_pk": { + "name": "event_tags_event_id_tag_pk", + "columns": [ + "event_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.events": { + "name": "events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar(200)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "datetime": { + "name": "datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_datetime": { + "name": "end_datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "location_id": { + "name": "location_id", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "flyer_url": { + "name": "flyer_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "cover_preset": { + "name": "cover_preset", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "external_link": { + "name": "external_link", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_public": { + "name": "is_public", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "status": { + "name": "status", + "type": "event_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'published'" + }, + "source": { + "name": "source", + "type": "varchar(20)", + "primaryKey": false, + "notNull": true, + "default": "'manual'" + }, + "source_message_id": { + "name": "source_message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "events_location_id_campus_locations_id_fk": { + "name": "events_location_id_campus_locations_id_fk", + "tableFrom": "events", + "tableTo": "campus_locations", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_org_id_organizations_id_fk": { + "name": "events_org_id_organizations_id_fk", + "tableFrom": "events", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_creator_id_users_id_fk": { + "name": "events_creator_id_users_id_fk", + "tableFrom": "events", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "events_source_message_id_unique": { + "name": "events_source_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "source_message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.friendships": { + "name": "friendships", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "friend_id": { + "name": "friend_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "friendship_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'pending'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "friendships_user_id_users_id_fk": { + "name": "friendships_user_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "friendships_friend_id_users_id_fk": { + "name": "friendships_friend_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "friend_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "friendships_user_id_friend_id_pk": { + "name": "friendships_user_id_friend_id_pk", + "columns": [ + "user_id", + "friend_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.interactions": { + "name": "interactions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_type": { + "name": "item_type", + "type": "item_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'event'" + }, + "interaction_type": { + "name": "interaction_type", + "type": "interaction_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "interaction_value": { + "name": "interaction_value", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "interactions_user_id_users_id_fk": { + "name": "interactions_user_id_users_id_fk", + "tableFrom": "interactions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_configs": { + "name": "listserv_configs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "address": { + "name": "address", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "label": { + "name": "label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "gmail_label": { + "name": "gmail_label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "listserv_configs_org_id_organizations_id_fk": { + "name": "listserv_configs_org_id_organizations_id_fk", + "tableFrom": "listserv_configs", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_configs_address_unique": { + "name": "listserv_configs_address_unique", + "nullsNotDistinct": false, + "columns": [ + "address" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_emails": { + "name": "listserv_emails", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv": { + "name": "listserv", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "subject": { + "name": "subject", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "author_name": { + "name": "author_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "author_email": { + "name": "author_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "date": { + "name": "date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "body_text": { + "name": "body_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "body_html": { + "name": "body_html", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_hoagiemail": { + "name": "is_hoagiemail", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "hoagiemail_sender_name": { + "name": "hoagiemail_sender_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "hoagiemail_sender_email": { + "name": "hoagiemail_sender_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "links": { + "name": "links", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "images": { + "name": "images", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "attachments": { + "name": "attachments", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "listserv_url": { + "name": "listserv_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_emails_message_id_unique": { + "name": "listserv_emails_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notifications": { + "name": "notifications", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "notification_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "payload": { + "name": "payload", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "read": { + "name": "read", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "notifications_user_id_users_id_fk": { + "name": "notifications_user_id_users_id_fk", + "tableFrom": "notifications", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_followers": { + "name": "org_followers", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "org_followers_org_id_organizations_id_fk": { + "name": "org_followers_org_id_organizations_id_fk", + "tableFrom": "org_followers", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_followers_user_id_users_id_fk": { + "name": "org_followers_user_id_users_id_fk", + "tableFrom": "org_followers", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_followers_org_id_user_id_pk": { + "name": "org_followers_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_members": { + "name": "org_members", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "org_role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "org_members_org_id_organizations_id_fk": { + "name": "org_members_org_id_organizations_id_fk", + "tableFrom": "org_members", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_members_user_id_users_id_fk": { + "name": "org_members_user_id_users_id_fk", + "tableFrom": "org_members", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_members_org_id_user_id_pk": { + "name": "org_members_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.organizations": { + "name": "organizations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "logo_url": { + "name": "logo_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "category": { + "name": "category", + "type": "org_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "organizations_creator_id_users_id_fk": { + "name": "organizations_creator_id_users_id_fk", + "tableFrom": "organizations", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organizations_name_unique": { + "name": "organizations_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pipeline_logs": { + "name": "pipeline_logs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv_config_id": { + "name": "listserv_config_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "pipeline_log_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "error_text": { + "name": "error_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "extracted_event_id": { + "name": "extracted_event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "pipeline_logs_listserv_config_id_listserv_configs_id_fk": { + "name": "pipeline_logs_listserv_config_id_listserv_configs_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "listserv_configs", + "columnsFrom": [ + "listserv_config_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pipeline_logs_extracted_event_id_events_id_fk": { + "name": "pipeline_logs_extracted_event_id_events_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "events", + "columnsFrom": [ + "extracted_event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.rsvps": { + "name": "rsvps", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "rsvps_user_id_users_id_fk": { + "name": "rsvps_user_id_users_id_fk", + "tableFrom": "rsvps", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "rsvps_event_id_events_id_fk": { + "name": "rsvps_event_id_events_id_fk", + "tableFrom": "rsvps", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "rsvps_user_id_event_id_pk": { + "name": "rsvps_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.saved_events": { + "name": "saved_events", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "saved_events_user_id_users_id_fk": { + "name": "saved_events_user_id_users_id_fk", + "tableFrom": "saved_events", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "saved_events_event_id_events_id_fk": { + "name": "saved_events_event_id_events_id_fk", + "tableFrom": "saved_events", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "saved_events_user_id_event_id_pk": { + "name": "saved_events_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_interests": { + "name": "user_interests", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_interests_user_id_users_id_fk": { + "name": "user_interests_user_id_users_id_fk", + "tableFrom": "user_interests", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_interests_user_id_tag_pk": { + "name": "user_interests_user_id_tag_pk", + "columns": [ + "user_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_preference_vectors": { + "name": "user_preference_vectors", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": true, + "notNull": true + }, + "tag_weights": { + "name": "tag_weights", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'{}'::jsonb" + }, + "latent_vector": { + "name": "latent_vector", + "type": "double precision[]", + "primaryKey": false, + "notNull": false + }, + "interaction_count": { + "name": "interaction_count", + "type": "double precision", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "user_preference_vectors_user_id_users_id_fk": { + "name": "user_preference_vectors_user_id_users_id_fk", + "tableFrom": "user_preference_vectors", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_regions": { + "name": "user_regions", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "region": { + "name": "region", + "type": "campus_region", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_regions_user_id_users_id_fk": { + "name": "user_regions_user_id_users_id_fk", + "tableFrom": "user_regions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_regions_user_id_region_pk": { + "name": "user_regions_user_id_region_pk", + "columns": [ + "user_id", + "region" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users": { + "name": "users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "net_id": { + "name": "net_id", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "display_name": { + "name": "display_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "class_year": { + "name": "class_year", + "type": "varchar(10)", + "primaryKey": false, + "notNull": false + }, + "major": { + "name": "major", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "avatar_url": { + "name": "avatar_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_org_leader": { + "name": "is_org_leader", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "onboarded": { + "name": "onboarded", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "users_net_id_unique": { + "name": "users_net_id_unique", + "nullsNotDistinct": false, + "columns": [ + "net_id" + ] + }, + "users_email_unique": { + "name": "users_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.campus_region": { + "name": "campus_region", + "schema": "public", + "values": [ + "central", + "east", + "west", + "south", + "north", + "off-campus" + ] + }, + "public.event_status": { + "name": "event_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.event_tag": { + "name": "event_tag", + "schema": "public", + "values": [ + "free-food", + "workshop", + "performance", + "speaker", + "social", + "career", + "sports", + "music", + "art", + "academic", + "cultural", + "community-service", + "religious", + "political", + "tech", + "gaming", + "outdoor", + "wellness" + ] + }, + "public.friendship_status": { + "name": "friendship_status", + "schema": "public", + "values": [ + "pending", + "accepted", + "declined" + ] + }, + "public.interaction_type": { + "name": "interaction_type", + "schema": "public", + "values": [ + "view", + "click", + "rsvp", + "save", + "share", + "hide" + ] + }, + "public.item_type": { + "name": "item_type", + "schema": "public", + "values": [ + "event", + "organization" + ] + }, + "public.location_category": { + "name": "location_category", + "schema": "public", + "values": [ + "academic", + "residential", + "athletic", + "social", + "administrative", + "library", + "dining", + "other" + ] + }, + "public.notification_type": { + "name": "notification_type", + "schema": "public", + "values": [ + "friend_request", + "event_reminder", + "org_new_event" + ] + }, + "public.org_category": { + "name": "org_category", + "schema": "public", + "values": [ + "career", + "affinity", + "performance", + "academic", + "athletic", + "social", + "cultural", + "religious", + "political", + "service" + ] + }, + "public.org_role": { + "name": "org_role", + "schema": "public", + "values": [ + "owner", + "officer", + "member" + ] + }, + "public.pipeline_log_status": { + "name": "pipeline_log_status", + "schema": "public", + "values": [ + "success", + "skipped_not_event", + "duplicate", + "error" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/apps/database/drizzle/meta/0004_snapshot.json b/apps/database/drizzle/meta/0004_snapshot.json new file mode 100644 index 0000000..460dc93 --- /dev/null +++ b/apps/database/drizzle/meta/0004_snapshot.json @@ -0,0 +1,1570 @@ +{ + "id": "89505645-de91-40b6-9c5e-de9449fe7285", + "prevId": "9dc3b983-d03d-445c-8796-e46e37b7566c", + "version": "7", + "dialect": "postgresql", + "tables": { + "public.campus_locations": { + "name": "campus_locations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "varchar(100)", + "primaryKey": true, + "notNull": true + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "latitude": { + "name": "latitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "longitude": { + "name": "longitude", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "category": { + "name": "category", + "type": "location_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_tag_embeddings": { + "name": "event_tag_embeddings", + "schema": "", + "columns": { + "tag_name": { + "name": "tag_name", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": true, + "notNull": true + }, + "embedding": { + "name": "embedding", + "type": "vector(1536)", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.event_tags": { + "name": "event_tags", + "schema": "", + "columns": { + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "event_tags_event_id_events_id_fk": { + "name": "event_tags_event_id_events_id_fk", + "tableFrom": "event_tags", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "event_tags_event_id_tag_pk": { + "name": "event_tags_event_id_tag_pk", + "columns": [ + "event_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.events": { + "name": "events", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "title": { + "name": "title", + "type": "varchar(200)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "datetime": { + "name": "datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": true + }, + "end_datetime": { + "name": "end_datetime", + "type": "timestamp", + "primaryKey": false, + "notNull": false + }, + "location_id": { + "name": "location_id", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "flyer_url": { + "name": "flyer_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "cover_preset": { + "name": "cover_preset", + "type": "varchar(50)", + "primaryKey": false, + "notNull": false + }, + "external_link": { + "name": "external_link", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_public": { + "name": "is_public", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "status": { + "name": "status", + "type": "event_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'published'" + }, + "source": { + "name": "source", + "type": "varchar(20)", + "primaryKey": false, + "notNull": true, + "default": "'manual'" + }, + "source_message_id": { + "name": "source_message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "events_location_id_campus_locations_id_fk": { + "name": "events_location_id_campus_locations_id_fk", + "tableFrom": "events", + "tableTo": "campus_locations", + "columnsFrom": [ + "location_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + }, + "events_org_id_organizations_id_fk": { + "name": "events_org_id_organizations_id_fk", + "tableFrom": "events", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "events_creator_id_users_id_fk": { + "name": "events_creator_id_users_id_fk", + "tableFrom": "events", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "events_source_message_id_unique": { + "name": "events_source_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "source_message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.friendships": { + "name": "friendships", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "friend_id": { + "name": "friend_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "status": { + "name": "status", + "type": "friendship_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'pending'" + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "friendships_user_id_users_id_fk": { + "name": "friendships_user_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "friendships_friend_id_users_id_fk": { + "name": "friendships_friend_id_users_id_fk", + "tableFrom": "friendships", + "tableTo": "users", + "columnsFrom": [ + "friend_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "friendships_user_id_friend_id_pk": { + "name": "friendships_user_id_friend_id_pk", + "columns": [ + "user_id", + "friend_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.interactions": { + "name": "interactions", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_id": { + "name": "item_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "item_type": { + "name": "item_type", + "type": "item_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true, + "default": "'event'" + }, + "interaction_type": { + "name": "interaction_type", + "type": "interaction_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "interaction_value": { + "name": "interaction_value", + "type": "double precision", + "primaryKey": false, + "notNull": true + }, + "metadata": { + "name": "metadata", + "type": "jsonb", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "interactions_user_id_users_id_fk": { + "name": "interactions_user_id_users_id_fk", + "tableFrom": "interactions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_configs": { + "name": "listserv_configs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "address": { + "name": "address", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "label": { + "name": "label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "gmail_label": { + "name": "gmail_label", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "enabled": { + "name": "enabled", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "listserv_configs_org_id_organizations_id_fk": { + "name": "listserv_configs_org_id_organizations_id_fk", + "tableFrom": "listserv_configs", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_configs_address_unique": { + "name": "listserv_configs_address_unique", + "nullsNotDistinct": false, + "columns": [ + "address" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.listserv_emails": { + "name": "listserv_emails", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv": { + "name": "listserv", + "type": "varchar(100)", + "primaryKey": false, + "notNull": true + }, + "subject": { + "name": "subject", + "type": "text", + "primaryKey": false, + "notNull": true + }, + "author_name": { + "name": "author_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "author_email": { + "name": "author_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "date": { + "name": "date", + "type": "timestamp with time zone", + "primaryKey": false, + "notNull": false + }, + "body_text": { + "name": "body_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "body_html": { + "name": "body_html", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_hoagiemail": { + "name": "is_hoagiemail", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "hoagiemail_sender_name": { + "name": "hoagiemail_sender_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "hoagiemail_sender_email": { + "name": "hoagiemail_sender_email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "links": { + "name": "links", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "images": { + "name": "images", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "attachments": { + "name": "attachments", + "type": "jsonb", + "primaryKey": false, + "notNull": false, + "default": "'[]'::jsonb" + }, + "listserv_url": { + "name": "listserv_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "listserv_emails_message_id_unique": { + "name": "listserv_emails_message_id_unique", + "nullsNotDistinct": false, + "columns": [ + "message_id" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.notifications": { + "name": "notifications", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "type": { + "name": "type", + "type": "notification_type", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "payload": { + "name": "payload", + "type": "jsonb", + "primaryKey": false, + "notNull": true + }, + "read": { + "name": "read", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "notifications_user_id_users_id_fk": { + "name": "notifications_user_id_users_id_fk", + "tableFrom": "notifications", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_followers": { + "name": "org_followers", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "org_followers_org_id_organizations_id_fk": { + "name": "org_followers_org_id_organizations_id_fk", + "tableFrom": "org_followers", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_followers_user_id_users_id_fk": { + "name": "org_followers_user_id_users_id_fk", + "tableFrom": "org_followers", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_followers_org_id_user_id_pk": { + "name": "org_followers_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.org_members": { + "name": "org_members", + "schema": "", + "columns": { + "org_id": { + "name": "org_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "role": { + "name": "role", + "type": "org_role", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "org_members_org_id_organizations_id_fk": { + "name": "org_members_org_id_organizations_id_fk", + "tableFrom": "org_members", + "tableTo": "organizations", + "columnsFrom": [ + "org_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "org_members_user_id_users_id_fk": { + "name": "org_members_user_id_users_id_fk", + "tableFrom": "org_members", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "org_members_org_id_user_id_pk": { + "name": "org_members_org_id_user_id_pk", + "columns": [ + "org_id", + "user_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.organizations": { + "name": "organizations", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "name": { + "name": "name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "description": { + "name": "description", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "logo_url": { + "name": "logo_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "category": { + "name": "category", + "type": "org_category", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "creator_id": { + "name": "creator_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "organizations_creator_id_users_id_fk": { + "name": "organizations_creator_id_users_id_fk", + "tableFrom": "organizations", + "tableTo": "users", + "columnsFrom": [ + "creator_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "no action", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "organizations_name_unique": { + "name": "organizations_name_unique", + "nullsNotDistinct": false, + "columns": [ + "name" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.pipeline_logs": { + "name": "pipeline_logs", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "message_id": { + "name": "message_id", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "listserv_config_id": { + "name": "listserv_config_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "status": { + "name": "status", + "type": "pipeline_log_status", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + }, + "error_text": { + "name": "error_text", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "extracted_event_id": { + "name": "extracted_event_id", + "type": "uuid", + "primaryKey": false, + "notNull": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "pipeline_logs_listserv_config_id_listserv_configs_id_fk": { + "name": "pipeline_logs_listserv_config_id_listserv_configs_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "listserv_configs", + "columnsFrom": [ + "listserv_config_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + }, + "pipeline_logs_extracted_event_id_events_id_fk": { + "name": "pipeline_logs_extracted_event_id_events_id_fk", + "tableFrom": "pipeline_logs", + "tableTo": "events", + "columnsFrom": [ + "extracted_event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "set null", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.rsvps": { + "name": "rsvps", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "rsvps_user_id_users_id_fk": { + "name": "rsvps_user_id_users_id_fk", + "tableFrom": "rsvps", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "rsvps_event_id_events_id_fk": { + "name": "rsvps_event_id_events_id_fk", + "tableFrom": "rsvps", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "rsvps_user_id_event_id_pk": { + "name": "rsvps_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.saved_events": { + "name": "saved_events", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "event_id": { + "name": "event_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "saved_events_user_id_users_id_fk": { + "name": "saved_events_user_id_users_id_fk", + "tableFrom": "saved_events", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + }, + "saved_events_event_id_events_id_fk": { + "name": "saved_events_event_id_events_id_fk", + "tableFrom": "saved_events", + "tableTo": "events", + "columnsFrom": [ + "event_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "saved_events_user_id_event_id_pk": { + "name": "saved_events_user_id_event_id_pk", + "columns": [ + "user_id", + "event_id" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_interests": { + "name": "user_interests", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "tag": { + "name": "tag", + "type": "event_tag", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_interests_user_id_users_id_fk": { + "name": "user_interests_user_id_users_id_fk", + "tableFrom": "user_interests", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_interests_user_id_tag_pk": { + "name": "user_interests_user_id_tag_pk", + "columns": [ + "user_id", + "tag" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_preference_vectors": { + "name": "user_preference_vectors", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": true, + "notNull": true + }, + "tag_weights": { + "name": "tag_weights", + "type": "jsonb", + "primaryKey": false, + "notNull": true, + "default": "'{}'::jsonb" + }, + "latent_vector": { + "name": "latent_vector", + "type": "double precision[]", + "primaryKey": false, + "notNull": false + }, + "interaction_count": { + "name": "interaction_count", + "type": "double precision", + "primaryKey": false, + "notNull": true, + "default": 0 + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": { + "user_preference_vectors_user_id_users_id_fk": { + "name": "user_preference_vectors_user_id_users_id_fk", + "tableFrom": "user_preference_vectors", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": {}, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.user_regions": { + "name": "user_regions", + "schema": "", + "columns": { + "user_id": { + "name": "user_id", + "type": "uuid", + "primaryKey": false, + "notNull": true + }, + "region": { + "name": "region", + "type": "campus_region", + "typeSchema": "public", + "primaryKey": false, + "notNull": true + } + }, + "indexes": {}, + "foreignKeys": { + "user_regions_user_id_users_id_fk": { + "name": "user_regions_user_id_users_id_fk", + "tableFrom": "user_regions", + "tableTo": "users", + "columnsFrom": [ + "user_id" + ], + "columnsTo": [ + "id" + ], + "onDelete": "cascade", + "onUpdate": "no action" + } + }, + "compositePrimaryKeys": { + "user_regions_user_id_region_pk": { + "name": "user_regions_user_id_region_pk", + "columns": [ + "user_id", + "region" + ] + } + }, + "uniqueConstraints": {}, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + }, + "public.users": { + "name": "users", + "schema": "", + "columns": { + "id": { + "name": "id", + "type": "uuid", + "primaryKey": true, + "notNull": true, + "default": "gen_random_uuid()" + }, + "net_id": { + "name": "net_id", + "type": "varchar(50)", + "primaryKey": false, + "notNull": true + }, + "email": { + "name": "email", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "display_name": { + "name": "display_name", + "type": "varchar(255)", + "primaryKey": false, + "notNull": true + }, + "class_year": { + "name": "class_year", + "type": "varchar(10)", + "primaryKey": false, + "notNull": false + }, + "major": { + "name": "major", + "type": "varchar(255)", + "primaryKey": false, + "notNull": false + }, + "avatar_url": { + "name": "avatar_url", + "type": "text", + "primaryKey": false, + "notNull": false + }, + "is_org_leader": { + "name": "is_org_leader", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "onboarded": { + "name": "onboarded", + "type": "boolean", + "primaryKey": false, + "notNull": true, + "default": false + }, + "created_at": { + "name": "created_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + }, + "updated_at": { + "name": "updated_at", + "type": "timestamp", + "primaryKey": false, + "notNull": true, + "default": "now()" + } + }, + "indexes": {}, + "foreignKeys": {}, + "compositePrimaryKeys": {}, + "uniqueConstraints": { + "users_net_id_unique": { + "name": "users_net_id_unique", + "nullsNotDistinct": false, + "columns": [ + "net_id" + ] + }, + "users_email_unique": { + "name": "users_email_unique", + "nullsNotDistinct": false, + "columns": [ + "email" + ] + } + }, + "policies": {}, + "checkConstraints": {}, + "isRLSEnabled": false + } + }, + "enums": { + "public.campus_region": { + "name": "campus_region", + "schema": "public", + "values": [ + "central", + "east", + "west", + "south", + "north", + "off-campus" + ] + }, + "public.event_status": { + "name": "event_status", + "schema": "public", + "values": [ + "draft", + "published" + ] + }, + "public.event_tag": { + "name": "event_tag", + "schema": "public", + "values": [ + "free food", + "career", + "research", + "academics", + "tech", + "entrepreneurship", + "politics", + "visual arts", + "performing arts", + "literature", + "culture", + "music", + "gaming", + "athletics", + "religion", + "sustainability", + "outdoors", + "wellness", + "community service", + "speaker event", + "social event", + "stem" + ] + }, + "public.friendship_status": { + "name": "friendship_status", + "schema": "public", + "values": [ + "pending", + "accepted", + "declined" + ] + }, + "public.interaction_type": { + "name": "interaction_type", + "schema": "public", + "values": [ + "view", + "click", + "rsvp", + "save", + "share", + "hide" + ] + }, + "public.item_type": { + "name": "item_type", + "schema": "public", + "values": [ + "event", + "organization" + ] + }, + "public.location_category": { + "name": "location_category", + "schema": "public", + "values": [ + "academic", + "residential", + "athletic", + "social", + "administrative", + "library", + "dining", + "other" + ] + }, + "public.notification_type": { + "name": "notification_type", + "schema": "public", + "values": [ + "friend_request", + "event_reminder", + "org_new_event" + ] + }, + "public.org_category": { + "name": "org_category", + "schema": "public", + "values": [ + "career", + "affinity", + "performing arts", + "academics", + "athletics", + "social event", + "culture", + "religion", + "politics", + "community service" + ] + }, + "public.org_role": { + "name": "org_role", + "schema": "public", + "values": [ + "owner", + "officer", + "member" + ] + }, + "public.pipeline_log_status": { + "name": "pipeline_log_status", + "schema": "public", + "values": [ + "success", + "skipped_not_event", + "duplicate", + "error", + "needs_review" + ] + } + }, + "schemas": {}, + "sequences": {}, + "roles": {}, + "policies": {}, + "views": {}, + "_meta": { + "columns": {}, + "schemas": {}, + "tables": {} + } +} \ No newline at end of file diff --git a/apps/database/drizzle/meta/_journal.json b/apps/database/drizzle/meta/_journal.json new file mode 100644 index 0000000..e250378 --- /dev/null +++ b/apps/database/drizzle/meta/_journal.json @@ -0,0 +1,41 @@ +{ + "version": "7", + "dialect": "postgresql", + "entries": [ + { + "idx": 0, + "version": "7", + "when": 1783268661051, + "tag": "0000_setup_vector_extension", + "breakpoints": true + }, + { + "idx": 1, + "version": "7", + "when": 1785720373000, + "tag": "0001_init_schema", + "breakpoints": true + }, + { + "idx": 2, + "version": "7", + "when": 1785720843992, + "tag": "0002_update_enums", + "breakpoints": true + }, + { + "idx": 3, + "version": "7", + "when": 1785858138809, + "tag": "0003_init_schema", + "breakpoints": true + }, + { + "idx": 4, + "version": "7", + "when": 1785858455846, + "tag": "0004_update_database", + "breakpoints": true + } + ] +} \ No newline at end of file diff --git a/apps/database/package.json b/apps/database/package.json index 9d1bf8f..fe5e459 100644 --- a/apps/database/package.json +++ b/apps/database/package.json @@ -8,7 +8,7 @@ "scripts": { "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", - "db:push": "drizzle-kit push --force", + "db:push": "drizzle-kit push", "db:studio": "drizzle-kit studio", "db:seed": "bun run src/seed.ts", "lint": "biome check .",